Expand description
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.
Functions§
- curve_
could_ contain - BFS over subdivisions of
curve, exploring every node up to themax_nodesbudget (never stopping early at the first hit) and returning the [Scalar::union] of every converged segment’s own domain — a segment converges once its convex hull could containpointand its chord length is no longer definitely greater thanmin_subdivision_size.Noneif no segment converged within budget.