Class PathFigure
A PathFigure represents a section of a Geometry. It is a single connected series of two-dimensional geometric PathSegments.
The Geometry.figures property is a list of PathFigures.
A PathFigure must not be modified once its containing Geometry has been assigned to a Shape.
Constructor Summary Details
Returns | Name | Description |
---|---|---|
PathFigure(sx, sy, filled, shadowed)
|
Constructs an empty figure. More...
The optional arguments specify the starting point of the figure.
You'll want to add a new instance of a PathFigure to the
Geometry.figures list of a Geometry.
|
Properties Summary Details
Returns | Name | Description |
---|---|---|
{boolean}
|
isFilled
|
Gets or sets whether this PathFigure is drawn filled. More...
The default value is true.
|
{boolean}
|
isShadowed
|
Gets or sets whether this PathFigure will render a shadow if one is defined. More...
This is used for turning off shadows on specific subpaths.
The default value is true.
|
{List.
|
segments
|
Gets or sets the List of PathSegments that define this PathFigure.
|
{number}
|
startX
|
Gets or sets the starting point X coordinate of the PathFigure. More...
The default value is zero.
|
{number}
|
startY
|
Gets or sets the starting point Y coordinate of the PathFigure. More...
The default value is zero.
|
Method Summary Details
Returns | Name | Description |
---|---|---|
add(segment)
1.5
|
Add a PathSegment to the segments list. More...
|
|
copy()
|
Create a copy of this PathFigure, with the same values and segments.
|