PathFillType

class PathFillType

Members:

kWinding : Specifies that “inside” is computed by a non-zero sum of signed edge crossings.

kEvenOdd : Specifies that “inside” is computed by an odd number of edge crossings.

kInverseWinding : Same as Winding, but draws outside of the path, rather than inside.

kInverseEvenOdd : Same as EvenOdd, but draws outside of the path, rather than inside.

Methods

__init__

Attributes

kEvenOdd

kInverseEvenOdd

kInverseWinding

kWinding

name

value

Methods

PathFillType.__init__(self: skia.PathFillType, value: int) None

Attributes

PathFillType.kEvenOdd = <PathFillType.kEvenOdd: 1>
PathFillType.kInverseEvenOdd = <PathFillType.kInverseEvenOdd: 3>
PathFillType.kInverseWinding = <PathFillType.kInverseWinding: 2>
PathFillType.kWinding = <PathFillType.kWinding: 0>
PathFillType.name
PathFillType.value