Merge pull request #1742 from aaronfranke/projection-construct

Add missing Projection constructor with 16 `real_t` values
This commit is contained in:
David Snopek
2025-04-02 12:59:14 -05:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -153,6 +153,7 @@ struct [[nodiscard]] Projection {
Projection();
Projection(const Vector4 &p_x, const Vector4 &p_y, const Vector4 &p_z, const Vector4 &p_w);
Projection(real_t p_xx, real_t p_xy, real_t p_xz, real_t p_xw, real_t p_yx, real_t p_yy, real_t p_yz, real_t p_yw, real_t p_zx, real_t p_zy, real_t p_zz, real_t p_zw, real_t p_wx, real_t p_wy, real_t p_wz, real_t p_ww);
Projection(const Transform3D &p_transform);
~Projection();
};