Enum GeometryRelation
- Namespace
- PaintDotNet.Direct2D1
- Assembly
- PaintDotNet.Windows.dll
Describes how one geometry object is spatially related to another geometry object.
D2D1_GEOMETRY_RELATION
public enum GeometryRelation
Fields
Unknown = 0
The relationship between the two geometries cannot be determined. This value is never returned by any Direct2D method.
Disjoint = 1
The two geometries do not intersect at all.
IsContained = 2
The instance geometry is entirely contained by the passed-in geometry.
Contains = 3
The instance geometry entirely contains the passed-in geometry.
Overlap = 4
The two geometries overlap but neither completely contains the other.