SaturnRingLibrary 0.9.1
SGL wrapper
 
Loading...
Searching...
No Matches

◆ Identity()

static consteval Matrix43 SRL::Math::Types::Matrix43::Identity ( )
inlinestaticconsteval

Creates identity matrix.

This static method generates a 4x3 identity matrix, which is a special type of matrix that does not change the value of any vector when multiplied by it. The identity matrix is often used as a starting point for transformations or to reset a transformation.

Returns
A new Matrix43 object representing the identity transformation.
Matrix43 identityMatrix = Matrix43::Identity(); // Creates an identity matrix
constexpr Matrix43()
Default constructor initializing to a zero matrix.
Definition mat43.hpp:85
static consteval Matrix43 Identity()
Creates identity matrix.
Definition mat43.hpp:562