approximates a given \(x\)-monotone curve.
It computes a sequence of approximate points that represent an approximate polyline, and inserts them into an output container given through an output iterator. The first and last points in the sequence are always approximations of the endpoints of the given curve.
- Parameters
-
| xcv | The exact \(x\)-monotone curve. |
| error | The error bound of the polyline approximation. This is the Hausdorff distance between the curve and the polyline that approximates the curve. |
| oi | An output iterator for the output container. |
| l2r | A Boolean flag that indicates whether the curve direction is left to right. |
- Returns
- The past-the-end iterator of the output container.
- Precondition
- Dereferencing oi must yield an object of type AosApproximateTraits_2::Approximate_point_2.