BezierSegment 类
Summary: The bezier segment going from one point to the next point and using two control points.
Module: aspose.imaging.shapesegments
Full Name: aspose.imaging.shapesegments.BezierSegment
Inheritance: LineSegment
Constructors
| Name | 描述 |
|---|---|
| BezierSegment(start_point, first_control_point, second_control_point, end_point) | 初始化 BezierSegment 类的新实例。 |
Properties
| Name | Type | Access | 描述 |
|---|---|---|---|
| end_point | PointF | r | 获取结束点。 |
| first_control_point | PointF | r | 获取贝塞尔样条的第一个控制点。 |
| second_control_point | PointF | r | 获取贝塞尔样条的第二个控制点。 |
| start_point | PointF | r | 获取起始点。 |
Constructor: BezierSegment(start_point, first_control_point, second_control_point, end_point)
BezierSegment(start_point, first_control_point, second_control_point, end_point)
初始化 BezierSegment 类的新实例。
Parameters:
| 参数 | Type | Description |
|---|---|---|
| start_point | PointF | 起始点。 |
| first_control_point | PointF | 第一个控制点。 |
| second_control_point | PointF | 第二个控制点。 |
| end_point | PointF | 结束点。 |