OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newDirection
(Results
1 - 3
of
3
) 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());
/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 414 milliseconds