|
constexpr | float4x3 (float n=0.0f) noexcept |
| Creates a new floating point 4x3 matrix structure.
|
|
constexpr | float4x3 (float c0r0, float c1r0, float c2r0, float c3r0, float c0r1, float c1r1, float c2r1, float c3r1, float c0r2, float c1r2, float c2r2, float c3r2) noexcept |
| Creates a new floating point 4x3 matrix structure.
|
|
constexpr | float4x3 (float3 c0, float3 c1, float3 c2, float3 c3) noexcept |
| Creates a new floating point 4x3 matrix structure.
|
|
constexpr | operator float2x2 () const noexcept |
| Returns matrix 2x2 part.
|
|
constexpr | operator float3x3 () const noexcept |
| Returns matrix 3x3 part.
|
|
float3 & | operator[] (psize i) noexcept |
| Returns matrix column by index.
|
|
float3 | operator[] (psize i) const noexcept |
| Returns matrix column by index.
|
|
constexpr float4x3 | operator+ (float n) const noexcept |
|
constexpr float4x3 | operator- (float n) const noexcept |
|
constexpr float4x3 | operator* (float n) const noexcept |
|
constexpr float4x3 | operator/ (float n) const noexcept |
|
float4x3 & | operator+= (float n) noexcept |
|
float4x3 & | operator-= (float n) noexcept |
|
float4x3 & | operator*= (float n) noexcept |
|
float4x3 & | operator/= (float n) noexcept |
|
constexpr float3 | operator* (float4 v) const noexcept |
| Calculates dot product between matrix and vector.
|
|
bool | operator== (const float4x3 &m) const noexcept |
| Returns true if matrices have the same values.
|
|
bool | operator!= (const float4x3 &m) const noexcept |
| Returns true if matrices have different values.
|
|
Floating point 4x3 matrix structure.
Commonly used for basic transformations: translation, scale, rotation, etc.