Shape
The shape represent a geometric primitive, such as rectangle of star.
The following types of shapes are supported:
- Rectangle
- Rounded Rectangle
- Ellipse/Circle
- Arc
- Line
- Polygon
- Star
Shape Properties
Field | Name | Type | Description |
Type | type | Integer | Shape type. |
X Coordinate | x | Float | The leftmost point of a Rectangle, Rounded Rectangle, Ellipse/Circle, Arc, Line or Star. |
Y Coordinate | y | Float | The topmost point of a Rectangle, Rounded Rectangle, Ellipse/Circle, Arc, Line or Star. |
Width | width | Float | The width point of a Rectangle, Rounded Rectangle, Ellipse/Circle, or Arc; End X - Start X distance for a Line. |
Height | height | Float | The height point of a Rectangle, Rounded Rectangle, Ellipse/Circle, or Arc; End Y - Start Y distance for a Line. |
Arc Width | arcWidth | Float | Width of Rounded Rectangle's corner arc. |
Arc Height | arcHeight | Float | Height of Rounded Rectangle's corner arc. |
Start | start | Float | Start of an Arc shape (in degrees). |
Extent | extent | Float | Extent of an Arc shape (in degrees). |
Arc Type | arcType | Integer | Arc type:
|
Points | points | Data Table | Polygon points, i.e. an array of (X, Y) points. By default, polygons point array specifies a cross shape. |
Inner Radius | innerRadius | Float | Inner radius of a Star. |
Outer Radius | outerRadius | Float | Outer radius of a Star. |
Branch Count | branchesCount | Integer | Number of branches of a Star. |
Was this page helpful?