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: 15.0.2.11458
Syntax
C#
public static Vector3 Multiply(
	Vector3 v,
	Vector3 s
)

Parameters

v
Type: Microsoft.DirectXVector3
Vector3 to scale.
s
Type: Microsoft.DirectXVector3
Vector3 to scale by.

Return Value

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