1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
Ben Kuper 2024-10-30 19:09:35 +01:00
parent d06029f32d
commit 065bf85243

View file

@ -76,7 +76,7 @@ public:
Vector3D multiplied (Vector3D other) const noexcept { return { x * other.x, y * other.y, z * other.z }; }
void multiply(Vector3D other) const noexcept { x *= other.x; y *= other.y; z *= other.z }
void multiply(Vector3D other) const noexcept { x *= other.x; y *= other.y; z *= other.z; }
/** Returns the dot-product of these two vectors. */
Type operator* (Vector3D other) const noexcept { return x * other.x + y * other.y + z * other.z; }