BezierSegment Class
Contents
[
Hide
]Summary: The bezier segment going from one point to the next point and using two control points.
Module: aspose.psd.shapesegments
Full Name: aspose.psd.shapesegments.BezierSegment
Inheritance: LineSegment
Aspose.PSD Version: 24.9.0
Constructors
Name | Description |
---|---|
BezierSegment(start_point, first_control_point, second_control_point, end_point) | Initializes a new instance of the BezierSegment class. |
Properties
Name | Type | Access | Description |
---|---|---|---|
end_point | PointF | r | Gets the ending point. |
first_control_point | PointF | r | Gets the first control point of a bezier spline. |
second_control_point | PointF | r | Gets the second control point of a bezier spline. |
start_point | PointF | r | Gets the starting point. |
Constructor: BezierSegment(start_point, first_control_point, second_control_point, end_point)
BezierSegment(start_point, first_control_point, second_control_point, end_point)
Initializes a new instance of the BezierSegment class.
Parameters:
Parameter | Type | Description |
---|---|---|
start_point | PointF | The start point. |
first_control_point | PointF | The first control point. |
second_control_point | PointF | The second control point. |
end_point | PointF | The end point. |