Searched refs:mDownEyePoint (Results 1 - 1 of 1) sorted by relevance

/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
H A DVrView.java87 private double[] mDownEyePoint = new double[3]; field in class:VrView
202 p[0] = mDownEyePoint[0] + dist_x * mDownRightVector[0] + dist_y * mDownUpVector[0];
203 p[1] = mDownEyePoint[1] + dist_x * mDownRightVector[1] + dist_y * mDownUpVector[1];
204 p[2] = mDownEyePoint[2] + dist_x * mDownRightVector[2] + dist_y * mDownUpVector[2];
221 System.arraycopy(p, 0, mDownEyePoint, 0, 3);
224 mDownRightVector[0] = mDownLookPoint[0] - mDownEyePoint[0];
225 mDownRightVector[1] = mDownLookPoint[1] - mDownEyePoint[1];
226 mDownRightVector[2] = mDownLookPoint[2] - mDownEyePoint[2];

Completed in 1068 milliseconds