[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Describes the clip modes available for vectorial images
Source position: fpvectorial.pas line 169
type TvClipMode = ( |
||
vcmNonzeroWindingRule, |
|
This is an algorithm to determine which regions of a path are inside it or not. This is used to determine which parts of the drawing are inside the clip path or not. See http://en.wikipedia.org/wiki/Nonzero-rule for details |
vcmEvenOddRule |
|
This is an algorithm to determine which regions of a path are inside it or not. This is used to determine which parts of the drawing are inside the clip path or not. See http://en.wikipedia.org/wiki/Even-odd_rule for details |
); |