#include "camtypes.h"
#include "macros.h"
Go to the source code of this file.
Defines | |
#define | TORADIANS(x) ((x)/180.0*PI) |
Functions | |
DECLARE_SOURCE ("$Revision: 1282 $") | |
Matrix | operator * (const Matrix &op1, const Matrix &op2) |
Matrix multiplication. |
|
Definition at line 113 of file matrix.cpp. |
|
|
|
Matrix multiplication.
Definition at line 581 of file matrix.cpp. 00582 { 00583 static Matrix t; 00584 00585 t = op1; 00586 t *= op2; // no point in duplicating code, just call *= operator 00587 00588 return t; 00589 }
|