VRageMath.Vector3D.Divide - bimbam2103/space_engineers GitHub Wiki
← Index ← Namespace Index ← Vector3D
public static Vector3D Divide(Vector3D value1, Vector3D value2)
Divides the components of a vector by the components of another vector.
public static void Divide(ref Vector3D value1, ref Vector3D value2, out Vector3D result)
Divides the components of a vector by the components of another vector.
public static Vector3D Divide(Vector3D value1, double value2)
Divides a vector by a scalar value.
public static void Divide(ref Vector3D value1, double value2, out Vector3D result)
Divides a vector by a scalar value.