Method | Description | |
---|---|---|
ArcAbs ( ) : |
Initializes a new instance of the PathArcAbs class.
|
|
ArcAbs ( IEnumerable |
Initializes a new instance of the PathArcAbs class.
|
|
ArcRel ( ) : |
Initializes a new instance of the PathArcRel class.
|
|
ArcRel ( IEnumerable |
Initializes a new instance of the PathArcRel class.
|
|
Close ( ) : |
Initializes a new instance of the PathClose class.
|
|
CurveToAbs ( PointD controlPointStart, PointD controlPointEnd, PointD end ) : |
Initializes a new instance of the PathCurveToAbs class.
|
|
CurveToAbs ( double x1, double y1, double x2, double y2, double x, double y ) : |
Initializes a new instance of the PathCurveToAbs class.
|
|
CurveToRel ( PointD controlPointStart, PointD controlPointEnd, PointD end ) : |
Initializes a new instance of the PathCurveToRel class.
|
|
CurveToRel ( double x1, double y1, double x2, double y2, double x, double y ) : |
Initializes a new instance of the PathCurveToRel class.
|
|
LineToAbs ( ) : |
Initializes a new instance of the PathLineToAbs class.
|
|
LineToAbs ( IEnumerable |
Initializes a new instance of the PathLineToAbs class.
|
|
LineToAbs ( double x, double y ) : |
Initializes a new instance of the PathLineToAbs class.
|
|
LineToHorizontalAbs ( double x ) : |
Initializes a new instance of the PathLineToHorizontalAbs class.
|
|
LineToHorizontalRel ( double x ) : |
Initializes a new instance of the PathLineToHorizontalRel class.
|
|
LineToRel ( ) : |
Initializes a new instance of the PathLineToRel class.
|
|
LineToRel ( IEnumerable |
Initializes a new instance of the PathLineToRel class.
|
|
LineToRel ( double x, double y ) : |
Initializes a new instance of the PathLineToRel class.
|
|
LineToVerticalAbs ( double y ) : |
Initializes a new instance of the PathLinetoVerticalAbs class.
|
|
LineToVerticalRel ( double y ) : |
Initializes a new instance of the PathLineToVerticalRel class.
|
|
MoveToAbs ( PointD coordinate ) : |
Initializes a new instance of the PathMoveToAbs class.
|
|
MoveToAbs ( double x, double y ) : |
Initializes a new instance of the PathMoveToAbs class.
|
|
MoveToRel ( PointD coordinate ) : |
Initializes a new instance of the PathMoveToRel class.
|
|
MoveToRel ( double x, double y ) : |
Initializes a new instance of the PathMoveToRel class.
|
|
QuadraticCurveToAbs ( PointD controlPoint, PointD end ) : |
Initializes a new instance of the PathQuadraticCurveToAbs class.
|
|
QuadraticCurveToAbs ( double x1, double y1, double x, double y ) : |
Initializes a new instance of the PathQuadraticCurveToAbs class.
|
|
QuadraticCurveToRel ( PointD controlPoint, PointD end ) : |
Initializes a new instance of the PathQuadraticCurveToRel class.
|
|
QuadraticCurveToRel ( double x1, double y1, double x, double y ) : |
Initializes a new instance of the PathQuadraticCurveToRel class.
|
|
SmoothCurveToAbs ( PointD controlPoint, PointD end ) : |
Initializes a new instance of the PathSmoothCurveToAbs class.
|
|
SmoothCurveToAbs ( double x2, double y2, double x, double y ) : |
Initializes a new instance of the PathSmoothCurveToAbs class.
|
|
SmoothCurveToRel ( PointD controlPoint, PointD end ) : |
Initializes a new instance of the PathSmoothCurveToRel class.
|
|
SmoothCurveToRel ( double x2, double y2, double x, double y ) : |
Initializes a new instance of the PathSmoothCurveToRel class.
|
|
SmoothQuadraticCurveToAbs ( PointD end ) : |
Initializes a new instance of the PathSmoothQuadraticCurveToAbs class.
|
|
SmoothQuadraticCurveToAbs ( double x, double y ) : |
Initializes a new instance of the PathSmoothQuadraticCurveToAbs class.
|
|
SmoothQuadraticCurveToRel ( PointD end ) : |
Initializes a new instance of the PathSmoothQuadraticCurveToRel class.
|
|
SmoothQuadraticCurveToRel ( double x, double y ) : |
Initializes a new instance of the PathSmoothQuadraticCurveToRel class.
|
public ArcAbs ( IEnumerable |
||
pathArcs | IEnumerable |
The coordinates to use. |
return |
public ArcRel ( IEnumerable |
||
pathArcs | IEnumerable |
The coordinates to use. |
return |
public CurveToAbs ( PointD controlPointStart, PointD controlPointEnd, PointD end ) : |
||
controlPointStart | PointD | Coordinate of control point for curve beginning |
controlPointEnd | PointD | Coordinate of control point for curve ending |
end | PointD | Coordinate of the end of the curve |
return |
public CurveToAbs ( double x1, double y1, double x2, double y2, double x, double y ) : |
||
x1 | double | X coordinate of control point for curve beginning |
y1 | double | Y coordinate of control point for curve beginning |
x2 | double | X coordinate of control point for curve ending |
y2 | double | Y coordinate of control point for curve ending |
x | double | X coordinate of the end of the curve |
y | double | Y coordinate of the end of the curve |
return |
public CurveToRel ( PointD controlPointStart, PointD controlPointEnd, PointD end ) : |
||
controlPointStart | PointD | Coordinate of control point for curve beginning |
controlPointEnd | PointD | Coordinate of control point for curve ending |
end | PointD | Coordinate of the end of the curve |
return |
public CurveToRel ( double x1, double y1, double x2, double y2, double x, double y ) : |
||
x1 | double | X coordinate of control point for curve beginning |
y1 | double | Y coordinate of control point for curve beginning |
x2 | double | X coordinate of control point for curve ending |
y2 | double | Y coordinate of control point for curve ending |
x | double | X coordinate of the end of the curve |
y | double | Y coordinate of the end of the curve |
return |
public LineToAbs ( IEnumerable |
||
coordinates | IEnumerable |
The coordinates to use. |
return |
public LineToAbs ( double x, double y ) : |
||
x | double | The X coordinate. |
y | double | The Y coordinate. |
return |
public LineToHorizontalAbs ( double x ) : |
||
x | double | The X coordinate. |
return |
public LineToHorizontalRel ( double x ) : |
||
x | double | The X coordinate. |
return |
public LineToRel ( IEnumerable |
||
coordinates | IEnumerable |
The coordinates to use. |
return |
public LineToRel ( double x, double y ) : |
||
x | double | The X coordinate. |
y | double | The Y coordinate. |
return |
public LineToVerticalAbs ( double y ) : |
||
y | double | The Y coordinate. |
return |
public LineToVerticalRel ( double y ) : |
||
y | double | The Y coordinate. |
return |
public MoveToAbs ( PointD coordinate ) : |
||
coordinate | PointD | The coordinate to use. |
return |
public MoveToAbs ( double x, double y ) : |
||
x | double | The X coordinate. |
y | double | The Y coordinate. |
return |
public MoveToRel ( PointD coordinate ) : |
||
coordinate | PointD | The coordinate to use. |
return |
public MoveToRel ( double x, double y ) : |
||
x | double | The X coordinate. |
y | double | The Y coordinate. |
return |
public QuadraticCurveToAbs ( PointD controlPoint, PointD end ) : |
||
controlPoint | PointD | Coordinate of control point |
end | PointD | Coordinate of final point |
return |
public QuadraticCurveToAbs ( double x1, double y1, double x, double y ) : |
||
x1 | double | X coordinate of control point |
y1 | double | Y coordinate of control point |
x | double | X coordinate of final point |
y | double | Y coordinate of final point |
return |
public QuadraticCurveToRel ( PointD controlPoint, PointD end ) : |
||
controlPoint | PointD | Coordinate of control point |
end | PointD | Coordinate of final point |
return |
public QuadraticCurveToRel ( double x1, double y1, double x, double y ) : |
||
x1 | double | X coordinate of control point |
y1 | double | Y coordinate of control point |
x | double | X coordinate of final point |
y | double | Y coordinate of final point |
return |
public SmoothCurveToAbs ( PointD controlPoint, PointD end ) : |
||
controlPoint | PointD | Coordinate of second point |
end | PointD | Coordinate of final point |
return |
public SmoothCurveToAbs ( double x2, double y2, double x, double y ) : |
||
x2 | double | X coordinate of second point |
y2 | double | Y coordinate of second point |
x | double | X coordinate of final point |
y | double | Y coordinate of final point |
return |
public SmoothCurveToRel ( PointD controlPoint, PointD end ) : |
||
controlPoint | PointD | Coordinate of second point |
end | PointD | Coordinate of final point |
return |
public SmoothCurveToRel ( double x2, double y2, double x, double y ) : |
||
x2 | double | X coordinate of second point |
y2 | double | Y coordinate of second point |
x | double | X coordinate of final point |
y | double | Y coordinate of final point |
return |
public SmoothQuadraticCurveToAbs ( PointD end ) : |
||
end | PointD | Coordinate of final point |
return |
public SmoothQuadraticCurveToAbs ( double x, double y ) : |
||
x | double | X coordinate of final point |
y | double | Y coordinate of final point |
return |
public SmoothQuadraticCurveToRel ( PointD end ) : |
||
end | PointD | Coordinate of final point |
return |
public SmoothQuadraticCurveToRel ( double x, double y ) : |
||
x | double | X coordinate of final point |
y | double | Y coordinate of final point |
return |