Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Nested class: RT.KitchenSink.DecodeSvgPath.PathPiece

Summary

Encapsulates a piece of SVG path data.

Constructors

PathPiece(DecodeSvgPath.PathPieceType type, PointD[] points)
Constructor.

Instance methods

DecodeSvgPath.PathPiece
Select(Func<PointD, PointD> selector)
  • Virtual
Returns a new DecodeSvgPath.PathPiece of the same DecodeSvgPath.PathPieceType in which all points have been mapped through the selector.
string
  • Overrides: object.ToString()
  • Sealed
Recreates the path in SVG path data syntax.
string
ToString(bool useSpaces)
  • Virtual
Recreates the path in SVG path data syntax.
string
ToString(int decimalPlaces, bool useSpaces = false)
  • Virtual

Instance properties

PointD[]The set of points associated with this piece.
DecodeSvgPath.PathPieceTypeThe type of piece (straight line, curve, etc.)

Static fields

DecodeSvgPath.PathPieceDesignates the end of a path or subpath.