hello friends

This commit is contained in:
elijah-thomas774
2025-05-25 13:26:10 -04:00
parent 46c46a1310
commit 7b908f2db8
2 changed files with 27 additions and 9 deletions
+4
View File
@@ -196,6 +196,10 @@ public:
return mVec3_c(x * f, y * f, z * f);
}
friend mVec3_c operator*(f32 f, const mVec3_c &v) {
return mVec3_c(v.x * f, v.y * f, v.z * f);
}
/// @brief Scalar division operator.
mVec3_c operator/(f32 f) const {
f32 r = 1.0f / f;