| 410 | } |
| 411 | |
| 412 | void LinearSegment::bound(double &xMin, double &yMin, double &xMax, double &yMax) const { |
| 413 | pointBounds(p[0], xMin, yMin, xMax, yMax); |
| 414 | pointBounds(p[1], xMin, yMin, xMax, yMax); |
| 415 | } |
| 416 | |
| 417 | void QuadraticSegment::bound(double &xMin, double &yMin, double &xMax, double &yMax) const { |
| 418 | pointBounds(p[0], xMin, yMin, xMax, yMax); |
nothing calls this directly
no test coverage detected