Add missing Projection constructor with 16 real_t values

This commit is contained in:
Aaron Franke
2025-03-14 02:46:23 -07:00
parent 6f981b33cc
commit aa03c32b3e
2 changed files with 8 additions and 0 deletions

View File

@@ -152,6 +152,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();
};