Click or drag to resize

UtilMultiply Method

Scale elements of a Vector3 by the corresponding elements of another Vector3.

Namespace: Demo3D.Common
Assembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.01.00
Syntax
C#
public static Vector3 Multiply(
	Vector3 v,
	Vector3 s
)

Parameters

v  Vector3
Vector3 to scale.
s  Vector3
Vector3 to scale by.

Return Value

Vector3
Scaled Vector3.
Remarks
Equivalent to Vector3.Multiply(v, s).
See Also