C# Class BezierSegment, Vortice.Windows

Represents a cubic bezier segment drawn between two points.
Mostrar archivo Open project: amerkoleci/Vortice.Windows Class Usage Examples

Public Methods

Method Description
BezierSegment ( PointF, point1, PointF, point2, PointF, point3 ) : System.Drawing

Initializes a new instance of the BezierSegment struct.

Method Details

BezierSegment() public method

Initializes a new instance of the BezierSegment struct.
public BezierSegment ( PointF, point1, PointF, point2, PointF, point3 ) : System.Drawing
point1 PointF, The first control point for the Bezier segment.
point2 PointF, The second control point for the Bezier segment.
point3 PointF, The end point for the Bezier segment.
return System.Drawing