diff --git a/tutorials/vector_math.rst b/tutorials/vector_math.rst index e845eb1fa..cb9dc679e 100644 --- a/tutorials/vector_math.rst +++ b/tutorials/vector_math.rst @@ -676,9 +676,9 @@ The formula for the cross product is: :: var c = Vector3() - c.x = (a.y + b.z) - (a.z + b.y) - c.y = (a.z + b.x) - (a.x + b.z) - c.z = (a.x + b.y) - (a.y + b.x) + c.x = (a.y * b.z) - (a.z * b.y) + c.y = (a.z * b.x) - (a.x * b.z) + c.z = (a.x * b.y) - (a.y * b.x) This can be simplified, in Godot, to: