Searched refs:Quaternion (Results 1 – 10 of 10) sorted by relevance
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/ |
D | Quaternion.java | 23 public class Quaternion { class 33 public void clone(Quaternion src) { in clone() 81 public Quaternion(double x0, double x1, double x2, double x3) { in Quaternion() method in Quaternion 88 public Quaternion conjugate() { in conjugate() 89 return new Quaternion(x[0], -x[1], -x[2], -x[3]); in conjugate() 92 public Quaternion plus(Quaternion b) { in plus() 93 Quaternion a = this; in plus() 94 return new Quaternion(a.x[0] + b.x[0], a.x[1] + b.x[1], a.x[2] + b.x[2], a.x[3] + b.x[3]); in plus() 97 public Quaternion times(Quaternion b) { in times() 98 Quaternion a = this; in times() [all …]
|
D | ViewMatrix.java | 37 private Quaternion mQ = new Quaternion(0, 0, 0, 0); 328 double angle = Quaternion.calcAngle(mStartV, mMoveToV); in trackBallMove() 333 double[] axis = Quaternion.calcAxis(mStartV, mMoveToV); in trackBallMove()
|
/frameworks/rs/scriptc/ |
D | rs_quaternion.rsh | 20 * rs_quaternion.rsh: Quaternion Functions 35 * rhs: Quaternion to add. 53 * q: Quaternion to modify. 117 * rsQuaternionLoadRotateUnit: Quaternion that represents a rotation about an arbitrary unit vector 208 * q: Quaternion to normalize. 233 * rhs: Quaternion to multiply the destination quaternion by.
|
D | rs_value_types.rsh | 535 * rs_quaternion: Quaternion 539 * See Quaternion Functions.
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_quaternion.jd | 1 page.title=RenderScript Quaternion Functions 57 Quaternion that represents a rotation about an arbitrary unit vector 112 <tr><th>rhs</th><td>Quaternion to add.</td></tr> 138 <tr><th>q</th><td>Quaternion to modify.</td></tr> 236 … <span class='normal'>: Quaternion that represents a rotation about an arbitrary unit vector</span> 286 <tr><th>rhs</th><td>Quaternion to multiply the destination quaternion by.</td></tr> 313 <tr><th>q</th><td>Quaternion to normalize.</td></tr>
|
D | rs_value_types.jd | 305 Quaternion 902 <span class='normal'>: Quaternion</span> 909 <p> See <a href='rs_quaternion.html'>Quaternion Functions</a>.
|
D | overview.jd | 322 Quaternion 2019 <h2>Quaternion Functions</h2> 2069 Quaternion that represents a rotation about an arbitrary unit vector
|
D | index.jd | 392 Quaternion 2227 Quaternion that represents a rotation about an arbitrary unit vector
|
/frameworks/rs/api/ |
D | rs_quaternion.spec | 18 summary: Quaternion Functions 107 summary: Quaternion that represents a rotation about an arbitrary unit vector
|
/frameworks/base/docs/html/guide/ |
D | guide_toc.cs | 386 <span class="en">Quaternion Functions</span>
|