ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntityGeometry Class / GetPoints Method
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).
The start position of the normal to be returned.
The end position of the normal to be returned.




In This Topic
    GetPoints Method
    In This Topic
    Returns the geometry points on the specified range.
    Syntax
    'Declaration
     
    Public Sub GetPoints( _
       ByVal points() As Single, _
       ByVal start As Integer, _
       ByVal end 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[] points,
       int start,
       int end
    )
    public: void GetPoints( 
       float[]* points,
       int start,
       int end
    ) 
    public:
    void GetPoints( 
       array<float>^ points,
       int start,
       int end
    ) 

    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