Click or drag to resize

Vector3fMultiply Method (Single, Vector3f)

Multiplies a vector by a number, having the effect of scaling it.

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

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static Vector3f Multiply(
	float t,
	Vector3f vector
)

Parameters

t
Type: SystemSingle
A number.
vector
Type: Rhino.GeometryVector3f
A vector.

Return Value

Type: Vector3f
A new vector that is the original vector coordinate-wise multiplied by t.
See Also