MCPcopy Create free account
hub / github.com/OpenTTD/OpenTTD / Delta

Function Delta

src/core/math_func.hpp:234–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 */
233template <typename T>
234constexpr T Delta(const T a, const T b)
235{
236 return (a < b) ? b - a : a - b;
237}
238
239/**
240 * Checks if a value is between a window started at some base point.

Callers 12

PlaceTreeAtSameHeightFunction · 0.85
DistanceManhattanFunction · 0.85
DistanceMaxFunction · 0.85
DistanceMaxPlusManhattanFunction · 0.85
DrawTileSelectionFunction · 0.85
VpSelectTilesWithMethodFunction · 0.85
DisasterTick_UfoFunction · 0.85
DisasterTick_Big_UfoFunction · 0.85
GetAvailableVideoModeFunction · 0.85
GetAvailableVideoModeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected