Hi thanks in advance for any help. I have two images of a coin say a head and tail of some coin. I want to create 3D coin from it using three.js. I tried a lot but could not get to the actual shape of a coin. My code is following.

mesh = new THREE.Mesh(
   new THREE.CylinderGeometry(20, 20, 0, 20, 1, false),
   new THREE.MeshBasicMaterial( { map: THREE.ImageUtils.loadTexture('coin1.png'),
                                  overdraw: true } ) );
scene.add(mesh);

Please help how can i add second image so that it is shown like a real 3D coin.

Regards

link|improve this question
If you are satisfied with answer (I assume you are, depending on your comment), please mark answer as accepted (green tick). – NightElfik Mar 25 at 14:28
feedback

1 Answer

I am not expert on three.js, but I assume it is the same like in others engines.

You have to create one texture containing top, edge and bottom of the coin. Then you have to map the texture on triangles of your cilinder. So you have to create your own cylinder and mappings. You can find details in Texturing a Cylinder in Three.js question.

link|improve this answer
Sorry for long delay but you are absolutely right as this is the way to achieve cylinder. Thanks for answering – user1217183 Mar 23 at 19:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.