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

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

Completed in 7 milliseconds