PathSegment Class

Represents a path segment in a Figure. This is an abstract class that cannot be inherited outside the declaring assembly, so its actual type is always one of the derived types: LineSegment, BezierSegment or ArcSegment.

Definition

Namespace: KGySoft.Drawing.Shapes
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public abstract class PathSegment
Inheritance
Object    PathSegment
Derived

Properties

EndPoint Gets the end point of this PathSegment.
StartPoint Gets the start point of this PathSegment.

Methods

GetFlattenedPoints Gets the flattened points that define this PathSegment as a polyline.

See Also