geometry-kernel 1.0.3

A Rust-first geometry kernel for deterministic planar geometry operations
Documentation
{
  "subject": {
    "polygons": [
      {
        "exterior": {
          "coords": [
            { "x": 0.0, "y": 0.0 },
            { "x": 10.0, "y": 0.0 },
            { "x": 10.0, "y": 10.0 },
            { "x": 0.0, "y": 10.0 },
            { "x": 0.0, "y": 0.0 }
          ]
        },
        "holes": []
      }
    ]
  },
  "clip": {
    "polygons": [
      {
        "exterior": {
          "coords": [
            { "x": 5.0, "y": 5.0 },
            { "x": 15.0, "y": 5.0 },
            { "x": 15.0, "y": 15.0 },
            { "x": 5.0, "y": 15.0 },
            { "x": 5.0, "y": 5.0 }
          ]
        },
        "holes": []
      }
    ]
  },
  "expected_area": 25.0
}