| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Data.Geometry.Boundary
- newtype Boundary g = Boundary g
- data PointLocationResult
- = Inside
- | OnBoundary
- | Outside
Documentation
The boundary of a geometric object.
Constructors
| Boundary g |
Instances
| Eq g => Eq (Boundary g) Source # | |
| Ord g => Ord (Boundary g) Source # | |
| Read g => Read (Boundary g) Source # | |
| Show g => Show (Boundary g) Source # | |
| IsTransformable g => IsTransformable (Boundary g) Source # | |
| (Ord r, Floating r) => IsIntersectableWith (Line 2 r) (Circle p r) Source # | |
| (Ord r, Floating r) => IsIntersectableWith (LineSegment 2 p r) (Circle q r) Source # | |
| type NumType (Boundary g) Source # | |
| type Dimension (Boundary g) Source # | |
| type IntersectionOf (Line 2 r) (Boundary (Rectangle p r)) Source # | |
| type IntersectionOf (Line 2 r) (Circle p r) Source # | |
| type IntersectionOf (LineSegment 2 p r) (Circle q r) Source # | |
data PointLocationResult Source #
Result of a query that asks if something is Inside a g, *on* the boundary of the g, or outside.
Constructors
| Inside | |
| OnBoundary | |
| Outside |