feat(plane): add default constructor for C4Plane

This commit is contained in:
phaneron 2025-04-29 22:36:11 -04:00
parent 2e824bfdc3
commit 8e406788b1

View file

@ -6,8 +6,10 @@
class C4Plane { class C4Plane {
public: public:
// Member variables // Member variables
C3Vector n; C3Vector n = { 0.0f, 0.0f, 1.0f };
float d; float d = 0.0f;
C4Plane() = default;
}; };
#endif #endif