open class MathUtilopen class MathUtil |
|
open class Matrixopen class Matrix
NOTE: This class taken from Android Open Source Project source code and modified to support double precision matrices. Matrix math utilities. These methods operate on OpenGL ES format matrices and vectors stored in double arrays. Matrices are 4 x 4 column-vector matrices stored in column-major order: Vectors are 4 row x 1 column column-vectors stored in order:
|
|
class Matrix4 : Cloneableclass Matrix4 : Cloneable
Encapsulates a column major 4x4 Matrix. This class is not thread safe and must be confined to a single thread or protected by some external locking mechanism if necessary. All static methods are thread safe. Rewritten August 8, 2013 by Jared Woolston (jwoolston@tenkiv.com) with heavy influence from libGDX |
|
open class Planeopen class Plane |
|
class Quaternion : Cloneableclass Quaternion : Cloneable
Encapsulates a quaternion. Ported from http://www.ogre3d.org/docs/api/html/classOgre_1_1Quaternion.html Rewritten July 27, 2013 by Jared Woolston with heavy influence from libGDX |