Click or drag to resize

Vector2fNegate Method

Computes the reversed vector.

(Provided for languages that do not support operator overloading. You can use the - unary operator otherwise)

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.4
Syntax
public static Vector2f Negate(
	Vector2f vector
)

Parameters

vector
Type: Rhino.GeometryVector2f
A vector to negate.

Return Value

Type: Vector2f
A new vector where all components were multiplied by -1.
Remarks
This is similar to Reverse(), but is static for CLR compliance, and with default name.
See Also