MTMatrix
|
+---MTMatrix44
+(MTMatrix44*)matrixFromString:(NSString*)str
read and initializes a matrix from a string
create identity matrix
+(MTMatrix44*)rotation: (double)phi aroundAxis:(MTCoordinates*)ax
rotation of an angle (degrees) around an axis
+(MTMatrix44*)rotationX:(double)alpha
create rotation matrix around X axis
+(MTMatrix44*)rotationY:(double)alpha
create rotation matrix around Y axis
+(MTMatrix44*)rotationZ:(double)alpha
create rotation matrix around Z axis
-(MTMatrix44*)chainWith:(MTMatrix44*)p_mat
multiplies in-place (M' = p_M * M) with the parameter matrix
inverts the matrix
-(MTMatrix44*)xIP:(MTMatrix44*)p_mat
multiplies in-place (M' = M * p_M) with the parameter matrix