Nevron .NET Vision
Nevron.GraphicsCore Namespace / NGraphicsPath Class / AddCubicBeziers Method


In This Topic
    AddCubicBeziers Method
    In This Topic
    The points parameter specifies an array of endpoints and control points of the connected curves. The first curve is constructed from the first point to the fourth point in the points array by using the second and third points as control points. In addition to the endpoint of the previous curve, each subsequent curve in the sequence needs exactly three more points: the next two points in the sequence are control points, and the third is the endpoint for the added curve. If there are previous lines or curves in the figure, a line is added to connect the endpoint of the previous segment to the starting point of the first cubic curve in the sequence.
    Syntax
    'Declaration
     
    
    Public Sub AddCubicBeziers( _
       ByVal points() As NPointD _
    ) 
    'Usage
     
    
    Dim instance As NGraphicsPath
    Dim points() As NPointD
     
    instance.AddCubicBeziers(points)
    public void AddCubicBeziers( 
       NPointD[] points
    )

    Parameters

    points
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also