Charts Models & Data Types Documentation

Circle

digraph foo {
     node [shape=none, margin=0];

         Circle [label=<
         <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
             <TR>
                 <TD HEIGHT="36.0"><FONT POINT-SIZE="16.0">Circle</FONT></TD>
             </TR>
             <TR>
                 <TD>
                     <TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0">
                         <TR>
                             <TD ALIGN="LEFT">r : number</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">x : number</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">y : number</TD>
                         </TR>
                     </TABLE>
                 </TD>
             </TR>
         </TABLE>>];
     edge [dir=back, arrowtail=dot]

}

Properties

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

IntersectionCircles

digraph foo {
     node [shape=none, margin=0];

         IntersectionCircles [label=<
         <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
             <TR>
                 <TD HEIGHT="36.0"><FONT POINT-SIZE="16.0">IntersectionCircles</FONT></TD>
             </TR>
             <TR>
                 <TD>
                     <TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0">
                         <TR>
                             <TD ALIGN="LEFT">circles : Circle []</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">viewSize : Size2D</TD>
                         </TR>
                     </TABLE>
                 </TD>
             </TR>
         </TABLE>>];
         Circle [label=<
         <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
             <TR>
                 <TD HEIGHT="36.0"><FONT POINT-SIZE="16.0">Circle</FONT></TD>
             </TR>
             <TR>
                 <TD>
                     <TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0">
                         <TR>
                             <TD ALIGN="LEFT">r : number</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">x : number</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">y : number</TD>
                         </TR>
                     </TABLE>
                 </TD>
             </TR>
         </TABLE>>];
         Size2D [label=<
         <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
             <TR>
                 <TD HEIGHT="36.0"><FONT POINT-SIZE="16.0">Size2D</FONT></TD>
             </TR>
             <TR>
                 <TD>
                     <TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0">
                         <TR>
                             <TD ALIGN="LEFT">height : number</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">width : number</TD>
                         </TR>
                     </TABLE>
                 </TD>
             </TR>
         </TABLE>>];
     edge [dir=back, arrowtail=dot]

         IntersectionCircles -> Circle [label=<<TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0"><TR><TD>circles</TD></TR></TABLE>>];

         IntersectionCircles -> Size2D [label=<<TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0"><TR><TD>viewSize</TD></TR></TABLE>>];

}

Properties

Field Type Description
circles Circle [] Array of coordinates of the circles
viewSize Size2D Size of bounding rectangle of the circles

Size2D

digraph foo {
     node [shape=none, margin=0];

         Size2D [label=<
         <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0">
             <TR>
                 <TD HEIGHT="36.0"><FONT POINT-SIZE="16.0">Size2D</FONT></TD>
             </TR>
             <TR>
                 <TD>
                     <TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0">
                         <TR>
                             <TD ALIGN="LEFT">height : number</TD>
                         </TR>
                         <TR>
                             <TD ALIGN="LEFT">width : number</TD>
                         </TR>
                     </TABLE>
                 </TD>
             </TR>
         </TABLE>>];
     edge [dir=back, arrowtail=dot]

}

Properties

Field Type Description
width number Width
height number Height

Table Of Contents

Previous topic

Charts Routes Reference Documentation

Next topic

Glossar

This Page