Returns the geometry normals on the specified range.
Syntax
'Declaration
Public Sub GetNormals( _
ByVal () As Single, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ImGearVectorEntityGeometry
Dim normals() As Single
Dim start As Integer
Dim end As Integer
instance.GetNormals(normals, start, end)
public void GetNormals(
float[] ,
int ,
int
)
public: void GetNormals(
float[]* ,
int ,
int
)
public:
void GetNormals(
array<float>^ ,
int ,
int
)
Parameters
- normals
- Buffer for the normals. The buffer must be long enough to receive the normals from
start
to end
taking into account the normal size (three floating-point values). - start
- The start position of the normal to be returned.
- end
- The end position of the normal to be returned.
See Also