HomeSort by relevance Sort by last modified time
    Searched refs:newDirection (Results 1 - 4 of 4) sorted by null

  /external/eigen/demos/opengl/
camera.cpp 102 void Camera::setDirection(const Vector3f& newDirection)
104 // TODO implement it computing the rotation between newDirection and current dir ?
109 camAxes.col(2) = (-newDirection).normalized();
122 Vector3f newDirection = mTarget - position();
123 setDirection(newDirection.normalized());
camera.h 69 void setDirection(const Eigen::Vector3f& newDirection);
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 815 Vector3f newDirection = vars.vect1;
819 newDirection.set(pos).subtractLocal(location).normalizeLocal();
826 newLeft.set(newUp).crossLocal(newDirection).normalizeLocal();
828 if (newDirection.x != 0) {
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);
    [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 166 milliseconds