Three.js - Creating Mesh From .obj File Using Geometry.vertices And Geometry.faces
I am trying to create a mesh from an .obj file. I am doing this rather than using the obj loader because I meed to morph the shape using different sliders, select specific faces/ve
Solution 1:
You can use two OBJLoaders
for loading each frame geometry. Then create a third Geometry
and create the lines using as reference the vertices from the frame geometries.
Post a Comment for "Three.js - Creating Mesh From .obj File Using Geometry.vertices And Geometry.faces"