CubicBezierTo()

IGeometryPath::CubicBezierTo(System::Drawing::PointF, System::Drawing::PointF, System::Drawing::PointF) method

Adds cubic Bezier curve at the end the path

virtual void Aspose::Slides::IGeometryPath::CubicBezierTo(System::Drawing::PointF point1, System::Drawing::PointF point2, System::Drawing::PointF point3)=0

Arguments

ParameterTypeDescription
point1System::Drawing::PointFFirst direction point
point2System::Drawing::PointFSecond direction point
point3System::Drawing::PointFEnd point

IGeometryPath::CubicBezierTo(float, float, float, float, float, float) method

Adds cubic Bezier curve at the end the path

virtual void Aspose::Slides::IGeometryPath::CubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3)=0

Arguments

ParameterTypeDescription
x1floatX coordinate of first direction point
y1floatY coordinate of first direction point
x2floatX coordinate of second direction point
y2floatY coordinate of second direction point
x3floatX coordinate of end point
y3floatY coordinate of end point

IGeometryPath::CubicBezierTo(System::Drawing::PointF, System::Drawing::PointF, System::Drawing::PointF, uint32_t) method

Adds cubic Bezier curve to the specified place of the path

virtual void Aspose::Slides::IGeometryPath::CubicBezierTo(System::Drawing::PointF point1, System::Drawing::PointF point2, System::Drawing::PointF point3, uint32_t index)=0

Arguments

ParameterTypeDescription
point1System::Drawing::PointFFirst direction point
point2System::Drawing::PointFSecond direction point
point3System::Drawing::PointFEnd point
indexuint32_tIndex of segment in PathData

IGeometryPath::CubicBezierTo(float, float, float, float, float, float, uint32_t) method

Adds cubic Bezier curve to the specified place of the path

virtual void Aspose::Slides::IGeometryPath::CubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3, uint32_t index)=0

Arguments

ParameterTypeDescription
x1floatX coordinate of first direction point
y1floatY coordinate of first direction point
x2floatX coordinate of second direction point
y2floatY coordinate of second direction point
x3floatX coordinate of end point
y3floatY coordinate of end point
indexuint32_tIndex of segment in PathData

See Also