Class BezierSegment
Cubic Bézier path segment that connects from the current point using two control points to shape the curve toward the end point.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Graphics
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class BezierSegment : PathSegment
Constructors
BezierSegment()
Initialize a cubic Bézier segment with default control points; set Point1, Point2, and Point3 to define the curve from the current path point.
Declaration
public BezierSegment()
BezierSegment(Point, Point, Point)
Initializes a new instance of the BezierSegment class using three points. Defines a cubic Bézier curve from the current path point using two control points and an end point.
Declaration
public BezierSegment(Point point1, Point point2, Point point3)
Parameters
|
System.Windows.Point
point1
The first control point that influences the tangent leaving the start of the curve. |
|
System.Windows.Point
point2
The second control point that influences the tangent approaching the end of the curve. |
|
System.Windows.Point
point3
The end point of the Bézier curve. |
Fields
Point1
Gets or sets the first control point that influences the tangent leaving the start of the curve.
Declaration
public Point Point1
Field Value
|
System.Windows.Point
The first point. |
Point2
Gets or sets the second control point that influences the tangent approaching the end of the curve.
Declaration
public Point Point2
Field Value
|
System.Windows.Point
The second point. |
Point3
Gets or sets the end point of the Bézier curve.
Declaration
public Point Point3
Field Value
|
System.Windows.Point
The third point. |