Minor fixes and extensions

This commit is contained in:
2020-12-14 21:21:21 +01:00
parent 39ae50a2c4
commit 85cc8abb7b
3 changed files with 16 additions and 1 deletions

View File

@@ -13,7 +13,9 @@ namespace openVulkanoCpp::Math
class CameraIntrinsic
{
public:
const Math::Matrix3f cameraMatrix;
Math::Matrix3f cameraMatrix;
CameraIntrinsic() : CameraIntrinsic(Math::Matrix3f(0)) {}
CameraIntrinsic(const Math::Matrix3f& camMat) : cameraMatrix(camMat)
{}