Skip to main content

Module contains

Module contains 

Source

Modules§

curve
Curve/point containment by per-axis fat line clipping — the derivation is in curve.md next to this file; this module implements its Clip B (“fat line”) together with the iteration of its section 5.
curve_bisect
The previous curve/point containment — convex hull test and bisection — kept only as the baseline for examples/curve_contains_bench.rs. The kernel uses super::curve.
surface
Surface/point containment by per-axis fat line clipping — the design is surface.md next to this file, the curve version it extends is curve.md / super::curve.
surface_bisect
The previous surface/point containment — convex hull test and bisection — kept only as the baseline for examples/surface_contains_bench.rs. The kernel uses super::surface.