37#include <Inventor/SbBasic.h>
45typedef float SbMat[4][4];
51 const float a21,
const float a22,
const float a23,
const float a24,
52 const float a31,
const float a32,
const float a33,
const float a34,
53 const float a41,
const float a42,
const float a43,
const float a44);
59 void setValue(
const SbMat &
m);
61 void setValue(
const float *
pMat);
62 const SbMat & getValue(
void)
const;
64 void makeIdentity(
void);
67 float det3(
int r1,
int r2,
int r3,
68 int c1,
int c2,
int c3)
const;
69 float det3(
void)
const;
70 float det4(
void)
const;
72 SbBool equals(
const SbMatrix &
m,
float tolerance)
const;
75 void getValue(SbMat &
m)
const;
77 void setScale(
const float s);
78 void setScale(
const SbVec3f & s);
79 void setTranslate(
const SbVec3f & t);
83 void setTransform(
const SbVec3f & translation,
93 SbBool LUDecomposition(
int index[4],
float & d);
94 void LUBackSubstitution(
int index[4],
float b[4])
const;
104 void print(
FILE * fp)
const;
106 operator float*(
void);
107 operator SbMat&(
void);
The SbDPMatrix class is a 4x4 dimensional representation of a double-precision matrix.
Definition SbDPMatrix.h:47
The SbLine class represents a line in 3D space.
Definition SbLine.h:41
The SbList class is a template container class for lists.
Definition SbList.h:70
SbList< Type > & operator=(const SbList< Type > &l)
Definition SbList.h:99
int operator!=(const SbList< Type > &l) const
Definition SbList.h:217
SbList(const int sizehint=DEFAULTSIZE)
Definition SbList.h:78
int operator==(const SbList< Type > &l) const
Definition SbList.h:209
Type operator[](const int index) const
Definition SbList.h:195
The SbMatrix class is a 4x4 dimensional representation of a matrix.
Definition SbMatrix.h:47
The SbRotation class represents a rotation in 3D space.
Definition SbRotation.h:44
The SbVec3f class is a 3 dimensional vector with floating point coordinates.
Definition SbVec3f.h:51
The SbVec4f class is a 4 dimensional vector with floating point coordinates.
Definition SbVec4f.h:49