In Three.js, there are various Controls, such as TrackballControls, that let the user control the camera. This is great, but I want the user to be able to rotate a part of the scene (e.g. a molecule) without rotating the rest of the scene (e.g. a different molecule, or a light source).

Any suggestions on how to do that?

I wonder, if I supplied a different object to the TrackballControls() constructor instead of the camera... would it just rotate that object?? Seems unlikely...

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

To rotate an object you should set its rotation coordinates, so once it's rendered its visual will be updated accordingly. To rotate just one object a time, bind the user input to that particular object rotation parameters.

Check this example, where you can rotate one cube with mouse or touch inputs: http://mrdoob.github.com/three.js/examples/canvas_geometry_cube.html

And this one, which shows how to select objects using the mouse: http://mrdoob.github.com/three.js/examples/canvas_interactive_cubes_tween.html

link|improve this answer
So basically, I need to implement it at a lower level (mouseDown / mouseMove events), rather than being able to use a package like trackballControls... or else maybe extend TrackballControls to be able to control another object instead of a camera. – LarsH Nov 20 '11 at 1:48
I had a look at the source code for the various controls here github.com/mrdoob/three.js/tree/master/src/extras/controls and they are made for general purpose perspective, so I guess there's nothing which stops you from binding them to an object instead of to a camera, have you tried? – Gixo Nov 20 '11 at 11:45
No I haven't... I guess I will give it a try. :-) – LarsH Nov 20 '11 at 12:39
feedback

Your Answer

 
or
required, but never shown

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