linesweeper 0.3.0

Robust sweep-line algorithm and two-dimensional boolean ops
Documentation
---
source: src/lib.rs
expression: output
---
Contours(
  contours: [
    Contour(
      path: BezPath([
        MoveTo(Point(
          x: 0.0,
          y: 0.0,
        )),
        LineTo(Point(
          x: 0.0,
          y: 0.5,
        )),
        LineTo(Point(
          x: 0.5,
          y: 0.5,
        )),
        LineTo(Point(
          x: 0.5,
          y: 0.0,
        )),
        LineTo(Point(
          x: 0.0,
          y: 0.0,
        )),
        ClosePath,
      ]),
      parent: None,
      outer: true,
    ),
  ],
)