Antkeeper
0.0.1
|
Go to the source code of this file.
Functions | |
template<class T > | |
math::transform< T > | operator* (const math::transform< T > &x, const math::transform< T > &y) |
Multiplies two transforms. More... | |
template<class T > | |
math::vector< T, 3 > | operator* (const math::transform< T > &t, const math::vector< T, 3 > &v) |
Multiplies a vector by a transform. More... | |
template<class T > | |
math::transform< T > & | operator*= (math::transform< T > &x, const math::transform< T > &y) |
Multiplies two transforms and stores the result in the first transform. More... | |
template<class T > | |
math::transform< T > & | operator*= (math::transform< T > &x, const math::vector< T, 3 > &y) |
|
inline |
Multiplies a vector by a transform.
t | Transform. |
v | Vector. |
Definition at line 51 of file transform-operators.hpp.
|
inline |
Multiplies two transforms.
x | First transform. |
y | Second transform. |
Definition at line 45 of file transform-operators.hpp.
math::transform<T>& operator*= | ( | math::transform< T > & | x, |
const math::transform< T > & | y | ||
) |
Multiplies two transforms and stores the result in the first transform.
x | First transform. |
y | Second transform. |
|
inline |
Definition at line 57 of file transform-operators.hpp.