Home | History | Annotate | Download | only in control

Lines Matching refs:orient

52     private Matrix3f orient;
84 orient = new Matrix3f();
166 orient.set(0, 0, xzp.z);
167 orient.set(0, 1, xzp.x * -look.y);
168 orient.set(0, 2, xzp.x * cosp);
169 orient.set(1, 0, 0);
170 orient.set(1, 1, cosp);
171 orient.set(1, 2, look.y);
172 orient.set(2, 0, -xzp.x);
173 orient.set(2, 1, xzp.z * -look.y);
174 orient.set(2, 2, xzp.z * cosp);
178 spatial.setLocalRotation(orient);
194 orient.fromAxes(left, camera.getUp(), look);
196 Quaternion rot=new Quaternion().fromRotationMatrix(orient);
238 orient.set(0, 0, left.z);
239 orient.set(0, 1, 0);
240 orient.set(0, 2, left.x);
241 orient.set(1, 0, 0);
242 orient.set(1, 1, 1);
243 orient.set(1, 2, 0);
244 orient.set(2, 0, -left.x);
245 orient.set(2, 1, 0);
246 orient.set(2, 2, left.z);
253 orient.set(0, 0, left.y);
254 orient.set(0, 1, left.x);
255 orient.set(0, 2, 0);
256 orient.set(1, 0, -left.y);
257 orient.set(1, 1, left.x);
258 orient.set(1, 2, 0);
259 orient.set(2, 0, 0);
260 orient.set(2, 1, 0);
261 orient.set(2, 2, 1);
266 spatial.setLocalRotation(orient);
292 capsule.write(orient, "orient", null);
302 orient = (Matrix3f) capsule.readSavable("orient", null);