removed debug methods

This commit is contained in:
2024-08-30 02:56:22 +03:00
parent 67713f52bd
commit a5dbf040d3
2 changed files with 1 additions and 14 deletions

View File

@@ -21,16 +21,6 @@ namespace omath::projection
m_farPlaneDistance = far;
}
float& Camera::GetFloat1() {
static float m_float1 = 0.36689f;
return m_float1;
}
float& Camera::GetFloat2() {
static float m_float2 = 1.14500f;
return m_float2;
}
Matrix Camera::GetViewMatrix() const
{
const auto forward = Vector3::ForwardVector(m_viewAngles.x, m_viewAngles.y);