diff --git a/experiments/2025-03-18/src/geometry/curve.rs b/experiments/2025-03-18/src/geometry/curve.rs index 8f0488e98..6185ae443 100644 --- a/experiments/2025-03-18/src/geometry/curve.rs +++ b/experiments/2025-03-18/src/geometry/curve.rs @@ -70,12 +70,6 @@ pub trait CurveGeometry { /// Returns a list of points, in curve coordinates, that approximate the /// curve. The points must be within the provided boundary. Not outside of /// it, and not on it. - /// - /// ## Implementation Notes - /// - /// This method should take a tolerance parameter, to define how far the - /// approximation is allowed to deviate from the actual curve. So far, this - /// has not been necessary. fn approximate( &self, boundary: [Point<1>; 2],