| | |
- rotMatrix(...)
- rotMatrix( [x,y,z,a] )
C accellerator for vrml.vrml97.transformmatrix.rotMatrix
x,y,z,a -- Python object compatible with Numeric double array
a is expressed in radians, as normal for Python and VRML97
returns a 4x4 rotation matrix for the given scale and
the inverse of the rotation.
- scaleMatrix(...)
- scaleMatrix( [x,y,z] )
C accellerator for vrml.vrml97.transformmatrix.scaleMatrix
x,y,z -- Python object compatible with Numeric double array
returns a 4x4 translation matrix for the given scale and
the inverse of the scale.
- transMatrix(...)
- transMatrix( [x,y,z] )
C accellerator for vrml.vrml97.transformmatrix.transMatrix
x,y,z -- Python object compatible with Numeric double array
returns a 4x4 translation matrix for the given translation and
the inverse of the translation.
|