|
| f32x4x4 () noexcept=default |
| Creates a new zero initialized SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (float n) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (float c0r0, float c1r0, float c2r0, float c3r0, float c0r1, float c1r1, float c2r1, float c3r1, float c0r2, float c1r2, float c2r2, float c3r2, float c0r3, float c1r3, float c2r3, float c3r3) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (f32x4 c0, f32x4 c1, f32x4 c2, f32x4 c3) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (f32x4 c0, f32x4 c1, f32x4 c2) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (const float4x4 &m) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (const float4x3 &m, f32x4 r3=f32x4::zero) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
| f32x4x4 (const float3x3 &m, f32x4 c3=f32x4::zero, f32x4 r3=f32x4::zero) noexcept |
| Creates a new SIMD 32bit floating point 4x4 matrix structure. (float4x4)
|
|
f32x4 & | operator[] (psize i) noexcept |
| Returns SIMD matrix column by index.
|
|
f32x4 | operator[] (psize i) const noexcept |
| Returns SIMD matrix column by index.
|
|
| operator float4x4 () const noexcept |
| Returns SIMD matrix as 4x4 floating point matrix.
|
|
| operator float4x3 () const noexcept |
| Returns SIMD matrix as 4x3 floating point matrix.
|
|
| operator float3x3 () const noexcept |
| Returns SIMD matrix as 3x3 floating point matrix.
|
|
| operator float2x2 () const noexcept |
| Returns SIMD matrix as 3x3 floating point matrix.
|
|
f32x4x4 | operator+ (float n) const noexcept |
| Adds specified value to the all SIMD matrix columns.
|
|
f32x4x4 | operator- (float n) const noexcept |
| Subtracts specified value from the all SIMD matrix columns.
|
|
f32x4x4 | operator* (float n) const noexcept |
| Multiplies all SIMD matrix columns by the specified value.
|
|
f32x4x4 | operator/ (float n) const noexcept |
| Divides all SIMD matrix columns by the specified value.
|
|
f32x4x4 | operator* (const f32x4x4 &m) const noexcept |
| Calculates dot product between two SIMD matrices.
|
|
f32x4 | operator* (f32x4 v) const noexcept |
| Calculates dot product between SIMD matrix and vector.
|
|
f32x4x4 & | operator*= (const f32x4x4 &m) noexcept |
|
f32x4x4 & | operator+= (float n) noexcept |
|
f32x4x4 & | operator-= (float n) noexcept |
|
f32x4x4 & | operator*= (float n) noexcept |
|
f32x4x4 & | operator/= (float n) noexcept |
|
bool | operator== (const f32x4x4 &m) const noexcept |
|
bool | operator!= (const f32x4x4 &m) const noexcept |
|
SIMD 32bit floating point 4x4 matrix structure. (float4x4)
Commonly used for basic transformations: translation, scale, rotation, etc.
- Note
- Use it when you know how to implement a faster vectorized code.