|
||
void tm_multiply(MATRIX tm1, MATRIX tm2, MATRIX product)
MATRIX tm1; // transformation matrix MATRIX tm2; // transformation matrix MATRIX product; // transformation matrix to receive result
|
|
|
Synopsis |
#include "silver.h"
The tm_multiply function performs a 4x4 matrix multiplication of tm1 times tm2 , placing the result in product . |
|
Parameters |
tm2 , tm2 and product are all addresses of a 4x4 array of doubles.
|
|
Return Value |
none. |
|
|
|