mirror of
https://github.com/zeldaret/ss
synced 2026-05-29 08:42:57 -04:00
hello friends
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user