=========================================================================
Charts Models & Data Types Documentation
=========================================================================
.. _REF_MODEL_Circle:
:index:`Circle`
----------------------------------------------------------------------------------
.. graphviz::
digraph foo {
node [shape=none, margin=0];
Circle [label=<
Circle |
r : number |
x : number |
y : number |
|
>];
edge [dir=back, arrowtail=dot]
}
Properties
""""""""""
.. index::
pair: Circle; y
pair: Circle; x
pair: Circle; r
.. list-table::
:widths: 10 10 60
:header-rows: 1
* - Field
- Type
- Description
* - y
- number
- y coordinate of the circle center
* - x
- number
- x coordinate of the circle center
* - r
- number
- radius of the circle
.. _REF_MODEL_IntersectionCircles:
:index:`IntersectionCircles`
----------------------------------------------------------------------------------
.. graphviz::
digraph foo {
node [shape=none, margin=0];
IntersectionCircles [label=<
IntersectionCircles |
circles : Circle [] |
viewSize : Size2D |
|
>];
Circle [label=<
Circle |
r : number |
x : number |
y : number |
|
>];
Size2D [label=<
Size2D |
height : number |
width : number |
|
>];
edge [dir=back, arrowtail=dot]
IntersectionCircles -> Circle [label=<>];
IntersectionCircles -> Size2D [label=<>];
}
Properties
""""""""""
.. index::
pair: IntersectionCircles; circles
pair: IntersectionCircles; viewSize
.. list-table::
:widths: 10 10 60
:header-rows: 1
* - Field
- Type
- Description
* - circles
- :ref:`REF_MODEL_Circle` []
- Array of coordinates of the circles
* - viewSize
- :ref:`REF_MODEL_Size2D`
- Size of bounding rectangle of the circles
.. _REF_MODEL_Size2D:
:index:`Size2D`
----------------------------------------------------------------------------------
.. graphviz::
digraph foo {
node [shape=none, margin=0];
Size2D [label=<
Size2D |
height : number |
width : number |
|
>];
edge [dir=back, arrowtail=dot]
}
Properties
""""""""""
.. index::
pair: Size2D; width
pair: Size2D; height
.. list-table::
:widths: 10 10 60
:header-rows: 1
* - Field
- Type
- Description
* - width
- number
- Width
* - height
- number
- Height