|
constexpr | float4 (float xyzw=0.0f) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float x, float y, float z, float w) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float2 xy, float z, float w) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float x, float2 yz, float w) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float x, float y, float2 zw) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float2 xy, float2 zw) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float3 xyz, float w) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (float x, float3 yzw) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (uint4 xyzw) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
constexpr | float4 (int4 xyzw) noexcept |
| Creates a new floating point 4 component vector structure.
|
|
float & | operator[] (psize i) noexcept |
| Returns vector component by index.
|
|
float | operator[] (psize i) const noexcept |
| Returns vector component by index.
|
|
constexpr | operator int4 () const noexcept |
| Returns as 4 component signed integer vector. (xyzw)
|
|
constexpr | operator uint4 () const noexcept |
| Returns as 4 component unsigned integer vector. (xyzw)
|
|
constexpr | operator int3 () const noexcept |
| Returns as 3 component signed integer vector. (xyz)
|
|
constexpr | operator uint3 () const noexcept |
| Returns as 3 component unsigned integer vector. (xyz)
|
|
constexpr | operator int2 () const noexcept |
| Returns as 2 component signed integer vector. (xy)
|
|
constexpr | operator uint2 () const noexcept |
| Returns as 2 component unsigned integer vector. (xy)
|
|
constexpr | operator uint32 () const noexcept |
| Returns first vector component as unsigned integer. (x)
|
|
constexpr | operator int32 () const noexcept |
| Returns first vector component as signed integer. (x)
|
|
constexpr | operator float3 () const noexcept |
| Returns as 3 component floating point vector. (xyz)
|
|
constexpr | operator float2 () const noexcept |
| Returns as 2 component floating point vector. (xy)
|
|
constexpr | operator float () const noexcept |
| Returns first vector component value. (x)
|
|
constexpr float4 | operator+ (float4 v) const noexcept |
|
constexpr float4 | operator- (float4 v) const noexcept |
|
constexpr float4 | operator* (float4 v) const noexcept |
|
constexpr float4 | operator/ (float4 v) const noexcept |
|
constexpr float4 | operator+ (float n) const noexcept |
|
constexpr float4 | operator- (float n) const noexcept |
|
constexpr float4 | operator* (float n) const noexcept |
|
constexpr float4 | operator/ (float n) const noexcept |
|
constexpr float4 | operator- () const noexcept |
|
float4 & | operator+= (float4 v) noexcept |
|
float4 & | operator-= (float4 v) noexcept |
|
float4 & | operator*= (float4 v) noexcept |
|
float4 & | operator/= (float4 v) noexcept |
|
float4 & | operator+= (float n) noexcept |
|
float4 & | operator-= (float n) noexcept |
|
float4 & | operator*= (float n) noexcept |
|
float4 & | operator/= (float n) noexcept |
|
float4 & | operator= (float n) noexcept |
|
constexpr bool | operator== (float4 v) const noexcept |
|
constexpr bool | operator!= (float4 v) const noexcept |
|
constexpr uint4 | operator< (float4 v) const noexcept |
|
constexpr uint4 | operator> (float4 v) const noexcept |
|
constexpr uint4 | operator<= (float4 v) const noexcept |
|
constexpr uint4 | operator>= (float4 v) const noexcept |
|
constexpr bool | operator== (float n) const noexcept |
|
constexpr bool | operator!= (float n) const noexcept |
|
constexpr uint4 | operator< (float n) const noexcept |
|
constexpr uint4 | operator> (float n) const noexcept |
|
constexpr uint4 | operator<= (float n) const noexcept |
|
constexpr uint4 | operator>= (float n) const noexcept |
|
Floating point 4 component vector structure.
Commonly used to represent: points, positions, directions, velocities, etc.