From 8e406788b1b50419ede344be55583b159b55561b Mon Sep 17 00:00:00 2001 From: superp00t Date: Tue, 29 Apr 2025 22:36:11 -0400 Subject: [PATCH] feat(plane): add default constructor for C4Plane --- tempest/plane/C4Plane.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tempest/plane/C4Plane.hpp b/tempest/plane/C4Plane.hpp index b87acc8..13a790d 100644 --- a/tempest/plane/C4Plane.hpp +++ b/tempest/plane/C4Plane.hpp @@ -6,8 +6,10 @@ class C4Plane { public: // Member variables - C3Vector n; - float d; + C3Vector n = { 0.0f, 0.0f, 1.0f }; + float d = 0.0f; + + C4Plane() = default; }; #endif