Enum FillRule

Enum FillRule

Namespace: Aspose.Svg.Builder
Assembly: Aspose.SVG.dll (25.5.0)

Specifies the rule to determine what parts of a shape are inside or outside in SVG graphics.

[ComVisible(true)]
public enum FillRule

Fields

Evenodd = 1

The even-odd winding rule: Determines the “insideness” of a point in the shape by drawing a ray from that point to infinity in any direction and counting the number of path segments from the given shape that the ray crosses. If this number is even, the point is outside; if odd, the point is inside.

Nonzero = 0

The nonzero winding rule: Determines the “insideness” of a point in the shape by drawing a ray from that point to infinity in any direction and counting the number of path segments from the given shape that the ray crosses. If this number is odd, the point is inside; if even, the point is outside.

 English