Click or drag to resize
SbNativeArrayT  Conversion (SbNativeArrayT to T)
Explicit cast operator to convert a native array of T to an array of boolean.

Namespace: OIV.Inventor.Generic
Assembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 9.9.36.0.Release.d5e5954f18f5fba1171104a1eb3d2f8b0fc0d084
Syntax
public static explicit operator T[] (
	SbNativeArray<T> toCast
)

Parameters

toCast
Type: OIV.Inventor.GenericSbNativeArrayT
Native array to convert.

Return Value

Type: T
A new array of T filled with the data of the native buffer.
Remarks
This explicit cast performs a copy. The underlying native buffer is not shared.
See Also