Click or drag to resize

Vector3CopyTo Method (Single, Int32)

Copies the contents of the vector into the given array, starting from index.

Namespace:  SoftGear.Strix.Client.Ingame.Interpolation
Assembly:  strix-client-csharp-ingame (in strix-client-csharp-ingame.dll) Version: 2.3.0
Syntax
C#
public void CopyTo(
	float[] array,
	int index
)

Parameters

array
Type: SystemSingle
index
Type: SystemInt32
Exceptions
ExceptionCondition
ArgumentNullExceptionIf array is null.
RankExceptionIf array is multidimensional.
ArgumentOutOfRangeExceptionIf index is greater than end of the array or index is less than zero.
ArgumentExceptionIf number of elements in source vector is greater than those available in destination array.
See Also