man SbMatrix () - 4x4 matrix class

NAME

SbMatrix - 4x4 matrix class

INHERITS FROM

SbMatrix

SYNOPSIS

#include <Inventor/SbLinear.h> Methods from class SbMatrix: c } c } SbMatrix()

c } c } SbMatrix(float a11, float a12, float a13, float a14, float a21, float a22, float a23, float a24, float a31, float a32, float a33, float a34, float a41, float a42, float a43, float a44)

c } c } SbMatrix(const SbMat &m)

c } c } setValue(const SbMat &m)

c } c } getValue(SbMat &m) const

c } c } getValue() const

c } c } makeIdentity()

c } c } identity()

c } c } setRotate(const SbRotation &q)

c } c } setScale(float s)

c } c } setScale(const SbVec3f &s)

c } c } setTranslate(const SbVec3f &t)

c } c } setTransform(const SbVec3f &t, const SbRotation &r, const SbVec3f &s)

c } c } setTransform(const SbVec3f &t, const SbRotation &r, const SbVec3f &s, const SbRotation &so)

c } c } setTransform(const SbVec3f &translation, const SbRotation &rotation, const SbVec3f &scaleFactor, const SbRotation &scaleOrientation, const SbVec3f &center)

c } c } getTransform(SbVec3f &t, SbRotation &r, SbVec3f &s, SbRotation &so) const

c } c } getTransform(SbVec3f &translation, SbRotation &rotation, SbVec3f &scaleFactor, SbRotation &scaleOrientation, const SbVec3f &center) const

c } c } det3(int r1, int r2, int r3, int c1, int c2, int c3) const

c } c } det3() const

c } c } det4() const

c } c } factor(SbMatrix &r, SbVec3f &s, SbMatrix &u, SbVec3f &t, SbMatrix &proj) const

c } c } inverse() const

c } c } LUDecomposition(int index[4], float &d)

c } c } LUBackSubstitution(int index[4], float b[4]) const

c } c } transpose() const

c } c } multRight(const SbMatrix &m)

c } c } multLeft(const SbMatrix &m)

c } c } multMatrixVec(const SbVec3f &src, SbVec3f &dst) const

c } c } multVecMatrix(const SbVec3f &src, SbVec3f &dst) const

c } c } multDirMatrix(const SbVec3f &src, SbVec3f &dst) const

c } c } multLineMatrix(const SbLine &src, SbLine &dst) const

c } c } print(FILE *fp) const

c } c } operator float*()

c } c } operator SbMat&()

c } c } operator [](int i)

c } c } operator [](int i) const

c } c } operator =(const SbMat &m)

c } c } operator =(const SbMatrix &m)

c } c } operator =(const SbRotation &q)

c } c } operator *=(const SbMatrix &m)

c } c } operator *(const SbMatrix &m1, const SbMatrix &m2)

c } c } operator ==(const SbMatrix &m1, const SbMatrix &m2)

c } c } operator !=(const SbMatrix &m1, const SbMatrix &m2)

c } c } equals(const SbMatrix &m, float tolerance) const

DESCRIPTION

4x4 matrix class/datatype used by many Inventor node and action classes. The matrices are stored in row-major order.

METHODS

c } c } SbMatrix()

c } c } SbMatrix(float a11, float a12, float a13, float a14, float a21, float a22, float a23, float a24, float a31, float a32, float a33, float a34, float a41, float a42, float a43, float a44)

c } c } SbMatrix(const SbMat &m)

Constructors. c } c } setValue(const SbMat &m)

Sets value from 4x4 array of elements. c } c } getValue(SbMat &m) const

c } c } getValue() const

Returns 4x4 array of elements. c } c } makeIdentity()

Sets matrix to be identity. c } c } identity()

Returns an identity matrix. c } c } setRotate(const SbRotation &q)

Sets matrix to rotate by given rotation. c } c } setScale(float s)

Sets matrix to scale by given uniform factor. c } c } setScale(const SbVec3f &s)

Sets matrix to scale by given vector. c } c } setTranslate(const SbVec3f &t)

Sets matrix to translate by given vector. c } c } setTransform(const SbVec3f &t, const SbRotation &r, const SbVec3f &s)

c } c } setTransform(const SbVec3f &t, const SbRotation &r, const SbVec3f &s, const SbRotation &so)

c } c } setTransform(const SbVec3f &translation, const SbRotation &rotation, const SbVec3f &scaleFactor, const SbRotation &scaleOrientation, const SbVec3f &center)

Composes the matrix based on a translation, rotation, scale, orientation for scale, and center. The center is the center point for scaling and rotation. The scaleOrientation chooses the primary axes for the scale. c } c } getTransform(SbVec3f &t, SbRotation &r, SbVec3f &s, SbRotation &so) const

Return translation, rotation, scale, and scale orientation components of the matrix. c } c } getTransform(SbVec3f &translation, SbRotation &rotation, SbVec3f &scaleFactor, SbRotation &scaleOrientation, const SbVec3f &center) const

Decomposes the matrix into a translation, rotation, scale, and scale orientation. Any projection information is discarded. The decomposition depends upon choice of center point for rotation and scaling, which is optional as the last parameter. Note that if the center is 0, decompose() is the same as factor() where t is translation, u is rotation, s is scaleFactor, and r is ScaleOrientation. c } c } det3(int r1, int r2, int r3, int c1, int c2, int c3) const

Returns determinant of 3x3 submatrix composed of given row and column indices (0-3 for each). c } c } det3() const

Returns determinant of upper-left 3x3 submatrix. c } c } det4() const

Returns determinant of entire matrix. c } c } factor(SbMatrix &r, SbVec3f &s, SbMatrix &u, SbVec3f &t, SbMatrix &proj) const

Factors a matrix m into 5 pieces: m = r s r^ u t, where r^ means transpose of r, and r and u are rotations, s is a scale, and t is a translation. Any projection information is returned in proj. NOTE: the projection matrix is always set to identity. c } c } inverse() const

Returns inverse of matrix. Results are undefined for singular matrices. Uses LU decomposition. c } c } LUDecomposition(int index[4], float &d)

Perform in-place LU decomposition of matrix. index is index of rows in matrix. d is the parity of row swaps. Returns FALSE if singular. c } c } LUBackSubstitution(int index[4], float b[4]) const

Perform back-substitution on LU-decomposed matrix. Index is permutation of rows from original matrix. c } c } transpose() const

Returns transpose of matrix. c } c } multRight(const SbMatrix &m)

c } c } multLeft(const SbMatrix &m)

Multiplies matrix by given matrix on right or left. c } c } multMatrixVec(const SbVec3f &src, SbVec3f &dst) const

Multiplies matrix by given column vector, giving vector result. c } c } multVecMatrix(const SbVec3f &src, SbVec3f &dst) const

Multiplies given row vector by matrix, giving vector result. c } c } multDirMatrix(const SbVec3f &src, SbVec3f &dst) const

Multiplies given row vector by matrix, giving vector result. src is assumed to be a direction vector, so translation part of matrix is ignored. Note: if you wish to transform surface points and normals by a matrix, call multVecMatrix() for the points and call multDirMatrix() on the inverse transpose of the matrix for the normals. c } c } multLineMatrix(const SbLine &src, SbLine &dst) const

Multiplies the given line's origin by the matrix, and the line's direction by the rotation portion of the matrix. c } c } print(FILE *fp) const

Prints a formatted version of the matrix to the given file pointer. c } c } operator float*()

Cast: returns pointer to storage of first element. c } c } operator SbMat&()

Cast: returns reference to 4x4 array. c } c } operator [](int i)

c } c } operator [](int i) const

Make it look like a usual matrix (so you can do m[3][2]). c } c } operator =(const SbMat &m)

Sets value from 4x4 array of elements. c } c } operator =(const SbMatrix &m)

Set the matrix from another SbMatrix. c } c } operator =(const SbRotation &q)

Set the matrix from an SbRotation. c } c } operator *=(const SbMatrix &m)

Performs right multiplication with another matrix. c } c } operator *(const SbMatrix &m1, const SbMatrix &m2)

Binary multiplication of matrices. c } c } operator ==(const SbMatrix &m1, const SbMatrix &m2)

c } c } operator !=(const SbMatrix &m1, const SbMatrix &m2)

Equality comparison operators. c } c } equals(const SbMatrix &m, float tolerance) const

Equality comparison within given tolerance, for each component.

SEE ALSO

SbVec3f, SbRotation