File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
modules/juce_opengl/geometry Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ namespace juce
7171 /* Multiply and divide in method to avoid using * and / operators (* is used for dot product) */
7272 void multiply (Vector3D other) const noexcept { x *= other.x ; y *= other.y , z *= other.z ; }
7373 Vector3D multiplied (Vector3D other) const noexcept { return { x * other.x , y * other.y , z * other.z }; }
74- void divide (Vector3D other) const noexcept { x /= other.x ; y /= other.y ; z /= other.z };
74+ void divide (Vector3D other) const noexcept { x /= other.x ; y /= other.y ; z /= other.z ; };
7575 Vector3D divided (Vector3D other) const noexcept { return { x / other.x , y / other.y , z / other.z }; }
7676
7777 /* * Returns the dot-product of these two vectors. */
You can’t perform that action at this time.
0 commit comments