// Copyright 2025 Lars Brubaker
// License: SGI Free Software License B (MIT-compatible)
//
// Port of libtess2 sweep.c/h
//
// The Bentley-Ottmann sweep line algorithm for polygon tessellation.
// This module contains the ActiveRegion struct and the sweep computation.
// All logic is driven through the Tessellator in tess.rs.
use crateNodeIdx;
use crate;
/// An active region: the area between two adjacent edges crossing the sweep line.
pub const INVALID_REGION: u32 = INVALID;