feat(vector): update C2Vector class

This commit is contained in:
VDm 2025-05-27 01:02:28 +04:00
parent 8e406788b1
commit f28f744a5b
5 changed files with 248 additions and 2 deletions

View file

@ -14,6 +14,10 @@ class C3Vector {
// Member functions
C3Vector() = default;
C3Vector(float a)
: x(a)
, y(a)
, z(a) {};
C3Vector(float x, float y, float z)
: x(x)
, y(y)