I've built this piece of code...(javascript)

Now we have a red sphere on the screen...the question is how to make it spinning around?

var camera, scene, renderer, mouseX = 0, mouseY = 0;

var geometry,material,mesh;

init();

function init() {

// Camera params : 
// field of view, aspect ratio for render output, near and far clipping plane. 
    camera = new THREE.Camera( 75, window.innerWidth / window.innerHeight, 1, 1000 );

// move the camera backwards so we can see stuff! 
// default position is 0,0,0.
camera.position.z = 300;

// the scene contains all the 3D object data
    scene = new THREE.Scene();

// and the CanvasRenderer figures out what the 
// stuff in the scene looks like and draws it!  
    renderer = new THREE.CanvasRenderer();
    renderer.setSize( window.innerWidth, window.innerHeight );

// the renderer's canvas domElement is added to the body
    document.body.appendChild( renderer.domElement );

    // creating shapes
makeShapes(); 

// add the mouse move listener
document.addEventListener( 'mousemove', onMouseMove, false );

// render 30 times a second (should also look 
// at requestAnimationFrame) 
setInterval(update,1000/30); 

}

function update(){

updateParticles();

// and render the scene from the perspective of the camera
renderer.render( scene, camera );

}

function makeShapes() { 

    // create a sphere shape        
    geometry = new THREE.SphereGeometry( 50, 16, 16 );

    // give a shape red color
    material = new THREE.MeshLambertMaterial({color: 0xFF1111});    

    // create an object
    mesh = new THREE.Mesh( geometry, material );

    mesh.position.x = 0;

    // add it to the scene
    scene.addObject( mesh );
}



function updateParticles(){

}

// called when the mouse moves
function onMouseMove( event ) {

// store the mouseX and mouseY position 
mouseX = event.clientX;
mouseY = event.clientY;
}
link|improve this question

58% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Try this :

var halfWidth = window.innerWidth/2, halfHeight = window.innerHeight/2;

function update(){
   camera.position.x += ( mouseX - camera.position.x ) * 0.05;
   camera.position.y += ( - mouseY - camera.position.y ) * 0.05;
   camera.lookAt( scene.position );

   mesh.rotation.y -= 0.005;

   renderer.render( scene, camera );
}

function onMouseMove( event ) {
  mouseX = event.clientX - halfWidth;
  mouseY = event.clientY - halfHeight;
}
link|improve this answer
Thanks mate!!! It helped me a lot! I have another tricky question for you...Now I have set 5 spheres on my scene...Do you have any idea how can I make them draggable??? And is there any documentation about three.js except for threejs.org/io/s ? – BorisD Nov 24 '11 at 14:01
The official reference is here : github.com/mrdoob/three.js/wiki/API-Reference – pradeek Nov 24 '11 at 14:44
1  
As for dragging objects, check out this example : mrdoob.github.com/three.js/examples/… . The source code is pretty easy to read. – pradeek Nov 24 '11 at 14:45
Thanks again dude...the documantation as the same as the link I posted above...About the dragging...it's such a shame...my computer,somehow refuses to run webGL...so I can't see the example. So far I'm using CanvasRender and not the webGL one :-) – BorisD Nov 24 '11 at 14:52
feedback

Your Answer

 
or
required, but never shown

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