mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
fix typo
This commit is contained in:
parent
d06029f32d
commit
065bf85243
1 changed files with 1 additions and 1 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue