Go to the source code of this file.
Enumerations | |
enum | FlatteningFactor { FF_VERYCLOSELY = 64, FF_CLOSELY = 256, FF_APPROXIMATELY = 1024, FF_NOTATALL = 100000 } |
Use in conjunction with Path::Flatten. More... |
|
Use in conjunction with Path::Flatten.
This is used in Imagemaps, in which it's useful to have four discrete levels of flattening. Feel free to add intermediate levels of flattening (e.g. add "FF_XXXXCLOSELY = 32") but don't change the values assigned to FF_VERYCLOSELY, FF_CLOSELY, FF_APPROXIMATELY or FF_NOTATALL, or you'll change the way imagemaps save. Definition at line 126 of file flatfact.h. 00127 { 00128 FF_VERYCLOSELY =64, 00129 FF_CLOSELY =256, 00130 FF_APPROXIMATELY = 1024, 00131 FF_NOTATALL=100000, 00132 } FlatteningFactor;
|