Traditionally, in 3D projections, the Y-axis is the axis that represents "up and down". I learned to think of it, with other engines, as that axis being the Z-axis. What I was wondering was whether there is a way in Three.JS to make the Z-axis the "up/down" axis. If so, are there any consequences to it?

Here is a diagram of what I want: enter image description here

link|improve this question

Curious what your thoughts are on my answer? Does that not solve what you're looking for? – jterrace Dec 8 '11 at 15:34
Sorry, I was getting to it. I commented on it. – Xeon06 Dec 8 '11 at 15:40
feedback

2 Answers

up vote 2 down vote accepted
+250

You could just change the camera rather than the entire coordinate system. For example:

var WIDTH = 1024;
var HEIGHT = 768;
var VIEW_ANGLE = 45;
var ASPECT = WIDTH / HEIGHT;
var NEAR = 0.1;
var FAR = 10000;
camera = new THREE.PerspectiveCamera(VIEW_ANGLE, ASPECT, NEAR, FAR);
camera.position.z = 300;
camera.up = new THREE.Vector3( 0, 0, 1 );
scene.add(camera);

This changes the up vector for the camera to use Z-UP.


EDIT:

To illustrate an example, here's the jsfiddle you created slightly modified to call lookAt after setting the up vector: http://jsfiddle.net/NycWc/1/

link|improve this answer
Thanks for the answer! I don't have time to test it now but will try soon. Does that have any consequences on other camera methods? Will I still be able to use lookAt normally and such? – Xeon06 Dec 8 '11 at 15:40
Hmm, I would think that lookAt would still work, since it uses the camera's up vector: github.com/mrdoob/three.js/blob/master/src/cameras/… – jterrace Dec 8 '11 at 15:56
Okay, I'll try it out tonight, thanks! – Xeon06 Dec 8 '11 at 16:14
Maybe I'm doing something wrong, but I'd expect the camera to go up, instead it seems to left jsfiddle.net/NycWc – Xeon06 Dec 8 '11 at 17:25
1  
You have to call the lookAt after setting the up vector: jsfiddle.net/NycWc/1 – jterrace Dec 8 '11 at 17:54
show 2 more comments
feedback

I had this issue with an object. Here's how I fixed it.

object.rotation.z = 90 * Math.PI/180;
object.rotation.x = -90 * Math.PI/180;

This took changed it's orientation in just the way you're asking.

link|improve this answer
I'm looking for a way to change the whole coordinate system so that changing the position y and z will make the changes I described. – Xeon06 Dec 5 '11 at 14:26
feedback

Your Answer

 
or
required, but never shown

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