ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntityGeometry Class / SetPoints Method
Buffer with the new points.
The start index of the point to be set.
The end index of the point to be set.




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

    Parameters

    points
    Buffer with the new points.
    start
    The start index of the point to be set.
    end
    The end index of the point to be set.
    See Also