Go to the source code of this file.
|
namespace | ml |
| Main documentation file for ML users and developers.
|
|
|
template<class DT , class DT2 > |
Tvec3< DT > | ml::operator* (const Tmat3< DT > &a, const Tvec3< DT2 > &v) |
| Normal multiplication of 3x3 matrix a with 3d vector v with a Tvec3 as result.
|
|
template<class DT , class DT2 > |
Tvec3< DT > | ml::operator* (const Tvec3< DT > &v, const Tmat3< DT2 > &a) |
| Normal multiplication of 3d vector v with 3x3 matrix with a Tvec3 as result.
|
|
template<class DT , class DT2 > |
Tvec3< DT > | ml::operator* (const Tmat4< DT > &a, const Tvec3< DT2 > &v) |
| Interprets v as a 4d homogeneous point and multiply the 4x4 matrix M with it and return a Tvec3 after normalizing the result by dividing by the fourth component.
|
|
template<class DT , class DT2 > |
Tvec3< DT > | ml::operator* (const Tvec3< DT > &v, const Tmat4< DT2 > &a) |
| Interprets v as a 4d homogeneous point and multiply it with the 4x4 matrix M and return a Tvec3 after normalizing the result by dividing by the fourth component.
|
|
template<class DT , class DT2 > |
Tvec3< DT > | ml::operator^ (const Tvec3< DT > &a, const Tvec3< DT2 > &b) |
| Returns a vector orthogonal to a and b.
|
|