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

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java1015 * Returns a new matrix representing the adjoint of this matrix.
1017 * @return The adjoint matrix
1019 public Matrix3f adjoint() { method in class:Matrix3f
1020 return adjoint(null);
1024 * Places the adjoint of this matrix in store (creates store if null.)
1030 public Matrix3f adjoint(Matrix3f store) { method in class:Matrix3f
H A DMatrix4f.java1539 * Returns a new matrix representing the adjoint of this matrix.
1541 * @return The adjoint matrix
1543 public Matrix4f adjoint() { method in class:Matrix4f
1544 return adjoint(null);
1575 * Places the adjoint of this matrix in store (creates store if null.)
1581 public Matrix4f adjoint(Matrix4f store) { method in class:Matrix4f
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.cpp80 // A = ___1__ adjoint A
143 // adjoint( original_matrix, inverse_matrix )
145 // calculate the adjoint of a 4x4 matrix
156 // The matrix B = (b ) is the adjoint of A
159 static void adjoint(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result) function in namespace:WebCore
208 // Calculate the adjoint matrix
209 adjoint(matrix, result);
219 // Scale the adjoint matrix to get the inverse

Completed in 90 milliseconds