mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(plane): add default constructor for C4Plane
This commit is contained in:
parent
2e824bfdc3
commit
8e406788b1
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue