Returns the geometry points on the specified range.
Syntax
'Declaration
Public Sub GetPoints( _
ByVal () As Single, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ImGearVectorEntityGeometry
Dim points() As Single
Dim start As Integer
Dim end As Integer
instance.GetPoints(points, start, end)
public void GetPoints(
float[] ,
int ,
int
)
public: void GetPoints(
float[]* ,
int ,
int
)
public:
void GetPoints(
array<float>^ ,
int ,
int
)
Parameters
- points
- Buffer for the points. The buffer must be long enough to receive the points from
start
to end
taking into account the point 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