Home | History | Annotate | Download | only in renderer

Lines Matching defs:newLeft

817         Vector3f newLeft = vars.vect3;
826 newLeft.set(newUp).crossLocal(newDirection).normalizeLocal();
827 if (newLeft.equals(Vector3f.ZERO)) {
829 newLeft.set(newDirection.y, -newDirection.x, 0f);
831 newLeft.set(0f, newDirection.z, -newDirection.y);
835 newUp.set(newDirection).crossLocal(newLeft).normalizeLocal();
837 this.rotation.fromAxes(newLeft, newUp, newDirection);