FillType
class FillType
| kotlin.Any | ||
| ↳ | kotlin.Enum<android.graphics.Path.FillType> | |
| ↳ | android.graphics.Path.FillType | |
Enum for the ways a path may be filled.
Summary
| Enum values | |
|---|---|
| 
            
             Specifies that "inside" is computed by an odd number of edge crossings.  | 
        |
| 
            
             Same as   | 
        |
| 
            
             Same as   | 
        |
| 
            
             Specifies that "inside" is computed by a non-zero sum of signed edge crossings.  | 
        |
Enum values
EVEN_ODD
enum val EVEN_ODD : Path.FillType
Specifies that "inside" is computed by an odd number of edge crossings.
INVERSE_EVEN_ODD
enum val INVERSE_EVEN_ODD : Path.FillType
Same as EVEN_ODD, but draws outside of the path, rather than inside.
INVERSE_WINDING
enum val INVERSE_WINDING : Path.FillType
Same as WINDING, but draws outside of the path, rather than inside.
WINDING
enum val WINDING : Path.FillType
Specifies that "inside" is computed by a non-zero sum of signed edge crossings.