a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
51 lines
2.3 KiB
XML
51 lines
2.3 KiB
XML
<Type Name="FillRule" FullName="Cairo.FillRule">
|
|
<TypeSignature Language="C#" Value="public enum FillRule" />
|
|
<AssemblyInfo>
|
|
<AssemblyName>Mono.Cairo</AssemblyName>
|
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
|
</AssemblyInfo>
|
|
<Base>
|
|
<BaseTypeName>System.Enum</BaseTypeName>
|
|
</Base>
|
|
<Docs>
|
|
<summary>Defines a FillRule.</summary>
|
|
<remarks>A FillRule is used to select how paths are filled. For both fill rules, whether or not a point is included in the fill is determined by taking a ray from that point to infinity and looking at intersections with the path. The ray can be in any direction, as long as it doesn't pass through the end point of a segment or have a tricky intersection such as intersecting tangent to the path. (Note that filling is not actually implemented in this way. This is just a description of the rule that is applied.)</remarks>
|
|
</Docs>
|
|
<Members>
|
|
<Member MemberName="EvenOdd">
|
|
<MemberSignature Language="C#" Value="EvenOdd" />
|
|
<MemberType>Field</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>Cairo.FillRule</ReturnType>
|
|
</ReturnValue>
|
|
<Docs>
|
|
<summary>Counts the total number of intersections, without regard to the orientation of the contour. If the total number of intersections is odd, the point will be filled.
|
|
</summary>
|
|
</Docs>
|
|
<AssemblyInfo>
|
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
|
</AssemblyInfo>
|
|
</Member>
|
|
<Member MemberName="Winding">
|
|
<MemberSignature Language="C#" Value="Winding" />
|
|
<MemberType>Field</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>Cairo.FillRule</ReturnType>
|
|
</ReturnValue>
|
|
<Docs>
|
|
<summary>The fill rule is used to select how paths are
|
|
filled.</summary>
|
|
<remarks>
|
|
If the path crosses the ray from left-to-right, counts +1. If the path crosses the ray from right to left, counts -1. (Left and right are determined from the perspective of looking along the ray from the starting point.) If the total count is non-zero, the point will be filled.
|
|
</remarks>
|
|
</Docs>
|
|
<AssemblyInfo>
|
|
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
|
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
|
</AssemblyInfo>
|
|
</Member>
|
|
</Members>
|
|
</Type>
|