MCPcopy Create free account
hub / github.com/Project-OSRM/osrm-backend / BBox

Method BBox

src/engine/plugins/tile.cpp:52–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50struct 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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected