MCPcopy Create free account
hub / github.com/MyGUI/mygui / bound

Method bound

MyGUIEngine/src/msdfgen/core/edge-segments.cpp:412–415  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

410}
411
412void 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
417void QuadraticSegment::bound(double &xMin, double &yMin, double &xMax, double &yMax) const {
418 pointBounds(p[0], xMin, yMin, xMax, yMax);

Callers

nothing calls this directly

Calls 2

pointBoundsFunction · 0.85
solveQuadraticFunction · 0.85

Tested by

no test coverage detected