| 50 | struct BBox final |
| 51 | { |
| 52 | BBox(const double _minx, const double _miny, const double _maxx, const double _maxy) |
| 53 | : minx(_minx), miny(_miny), maxx(_maxx), maxy(_maxy) |
| 54 | { |
| 55 | } |
| 56 | |
| 57 | double width() const { return maxx - minx; } |
| 58 | double height() const { return maxy - miny; } |
nothing calls this directly
no outgoing calls
no test coverage detected