Click or drag to resize

Vector3Inverse Method

Returns the inverse of this vector. This is the same as `new Vector3(1 / v.x, 1 / v.y, 1 / v.z)`.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public Vector3 Inverse()

Return Value

Type: Vector3
The inverse of this vector.
See Also