Implement missing Matrix members
All checks were successful
Run tests / Explore-Gitea-Actions (push) Successful in 1m13s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 31s

This commit is contained in:
2024-05-27 16:27:21 -04:00
parent ff777d1867
commit 201fb4a28d
4 changed files with 106 additions and 8 deletions

View File

@@ -158,7 +158,7 @@ namespace J3ML::LinearAlgebra {
Matrix4x4(float val);
/// Constructs this Matrix4x4 to represent the same transformation as the given float3x3.
/** This function expands the last row and column of this matrix with the elements from the identity matrix. */
Matrix4x4(const Matrix3x3&);
Matrix4x4(const Matrix3x3& m);
explicit Matrix4x4(const float* data);
/// Constructs a new float4x4 by explicitly specifying all the matrix elements.