Implement ToQuat

This commit is contained in:
2024-01-07 02:14:31 -05:00
parent a1d4df30c7
commit cc9ff95daa
5 changed files with 42 additions and 31 deletions

View File

@@ -123,12 +123,9 @@ public:
Vector3 operator+() const; // TODO: Implement
// Unary - operator (Negation)
Vector3 operator-() const;
public:
float x = 0;
float y = 0;
float z = 0;
};
}