Go to the source code of this file.
Enumerations | |
enum | PathShape { PATHSHAPE_PATH = 0, PATHSHAPE_CIRCLE, PATHSHAPE_ELLIPSE, PATHSHAPE_SQUARE, PATHSHAPE_RECTANGLE, PATHSHAPE_ELLIPSE_ROTATED, PATHSHAPE_SQUARE_ROTATED, PATHSHAPE_RECTANGLE_ROTATED } |
This is a value which describes what shape a path is: a circle, a rectangle, and so on. More... |
|
This is a value which describes what shape a path is: a circle, a rectangle, and so on.
Definition at line 118 of file pathshap.h. 00118 { 00119 PATHSHAPE_PATH=0, //The path has no particular shape 00120 00121 PATHSHAPE_CIRCLE, //The path is a regular circle 00122 PATHSHAPE_ELLIPSE, //The path is an (non-rotated) ellipse 00123 00124 PATHSHAPE_SQUARE, //The path is a (non-rotated) square 00125 PATHSHAPE_RECTANGLE, //The path is a (non-rotated) rectangle 00126 00127 PATHSHAPE_ELLIPSE_ROTATED, //The path is a rotated ellipse 00128 00129 PATHSHAPE_SQUARE_ROTATED, //The path is a rotated square 00130 PATHSHAPE_RECTANGLE_ROTATED, //The path is a rotated rectangle 00131 00132 00133 } PathShape;
|