Returns the geometry colors on the specified range.
Syntax
'Declaration
Public Sub GetColors( _
ByVal () As Byte, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ImGearVectorEntityGeometry
Dim colors() As Byte
Dim start As Integer
Dim end As Integer
instance.GetColors(colors, start, end)
public void GetColors(
byte[] ,
int ,
int
)
public: void GetColors(
byte[]* ,
int ,
int
)
public:
void GetColors(
array<byte>^ ,
int ,
int
)
Parameters
- colors
- Buffer for the colors. The buffer must be long enough to receive the colors from
start
to end
taking into account the color alignment. - start
- The start position of the color to be returned.
- end
- The end position of the color to be returned.
See Also