RadConicSegment
Represents a conic segment within a path figure, defined by a control point, an end point, and a weight. The control and end points are specified relative to the bounding box of the containing geometry, where (0, 0) is the bottom-left corner and (1, 1) is the top-right corner. The Weight property determines the influence of the control point, allowing for the representation of circular arcs and other conic sections.
Definition
Namespace:Telerik.Maui.Controls.Paths
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadConicSegment : RadPathSegment, INotifyPropertyChanged
Inheritance: objectNotifyPropertyChangedBaseRadPathSegmentRadConicSegment
Implements:
Inherited Members
Constructors
Initializes a new instance of the conic segment.
public RadConicSegment()
Initializes a new instance of the conic segment.
public RadConicSegment(Point controlPoint, Point endPoint, double weight)
Specifies the control point of the conic segment. The point coordinates are relative to the containing geometry's bounding box, where (0, 0) is the bottom-left corner and (1, 1) is the top-right corner.
endPointPointSpecifies the end point of the conic segment. The point coordinates are relative to the containing geometry's bounding box, where (0, 0) is the bottom-left corner and (1, 1) is the top-right corner.
weightdoubleSpecifies the weight of the conic segment.
Properties
ControlPoint
Point
Gets or sets the control point of the conic segment. The point coordinates are relative to the containing geometry's bounding box, where (0, 0) is the bottom-left corner and (1, 1) is the top-right corner.
public Point ControlPoint { get; set; }
EndPoint
Point
Gets or sets the end point of the conic segment. The point coordinates are relative to the containing geometry's bounding box, where (0, 0) is the bottom-left corner and (1, 1) is the top-right corner.
public Point EndPoint { get; set; }