Where can find spring mesh lib?

where can find spring mesh lib?

What’s spring mesh lib ?

1 Like

com.jme3.scene.shape;
like box .Sphere Torus …

I don’t understand the question. How did you find JME at all if you did not find these?!?

https://javadoc.jmonkeyengine.org/v3.3.2-stable/com/jme3/scene/shape/package-frame.html

Seems the op wants a mesh that is Spring or spiral shaped, check CustomMeshes because there’s no stock spiral meshes or geometries :

1 Like


yes ! i need this mesh! i need jar lib

1 Like

You will need to create it using custom meshes tutorial…

1 Like

Or pop open a 3D editor like Blender, create one, export it.

1 Like

Hi, i thought this would be an interesting use case for my project, the jBMesh mesh processing library.
I started implementing the functionality to extrude faces along a path.
In this case the path would be a helix. I’ve made an example here:
jBMesh/ExtrudeHelix.java at master · FennelFetish/jBMesh · GitHub.

The ExtrudePath operator can use any shape as a base. A cross-shape is used in the second image.
The example uses the NormalGenerator to make smooth or flat shading where appropriate.
The BMesh to JME-Mesh Exporter then duplicates vertices where needed.

It’s not completely finished and needs some code to make the Mesh, and there are no premade JARs at the moment. But if you want to use it, you could download and build the project with Gradle:

5 Likes