Fix default constructor for pose
This commit is contained in:
@@ -18,7 +18,7 @@ namespace OpenVulkano::Math
|
||||
Vector3_SIMD<T> m_position;
|
||||
|
||||
public:
|
||||
Pose() {}
|
||||
Pose() : m_orientation(1,0,0,0), m_position(0) {}
|
||||
|
||||
Pose(const Quaternion<T>& orientation, const Vector3_SIMD<T>& position)
|
||||
: m_orientation(orientation), m_position(position)
|
||||
|
||||
Reference in New Issue
Block a user