Added a scalar divisor operator

This commit is contained in:
2025-02-03 15:21:22 -05:00
parent cccadc5d21
commit 437d209200
2 changed files with 8 additions and 0 deletions

View File

@@ -26,6 +26,8 @@ public:
V3D<Type> operator*(Type scalar) const;
V3D<Type> operator/(Type scalar) const;
void operator=(const V3D<Type> &other);
V3D<Type> &operator+=(const V3D<Type> &other);