Intersections
Types
Represents a "fat line," which is a construct used in geometry for error-bounded approximations of parametric curves. A fat line is defined by a curve and a parametric range and can be subdivided recursively as needed for geometric computations like intersection testing.
Properties
Functions
Determines the intersection points between two 2D parametric curves using the fat-line algorithm.
Computes the intersection points between two 2D curves.
Finds the intersection points between a 2D line segment and a quadratic Bezier curve.
Adjusts a given double value based on comparison with specific thresholds (0.0 and 1.0) within a defined epsilon. If the value is within epsilon of 0.0, it is set to 0.0. If the value is within epsilon of 1.0, it is set to 1.0. Otherwise, it remains unchanged.