MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / next

Function next

Source/ThirdParty/recastnavigation/RecastMesh.cpp:164–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162// Last time I checked the if version got compiled using cmov, which was a lot faster than module (with idiv).
163inline int prev(int i, int n) { return i-1 >= 0 ? i-1 : n-1; }
164inline int next(int i, int n) { return i+1 < n ? i+1 : 0; }
165
166inline int area2(const int* a, const int* b, const int* c)
167{

Callers 13

diagonalieFunction · 0.70
inConeFunction · 0.70
diagonalieLooseFunction · 0.70
inConeLooseFunction · 0.70
triangulateFunction · 0.70
FilterGeneratorMethod · 0.50
jackknifeFunction · 0.50
resolutionFunction · 0.50
xpath_lexerMethod · 0.50
count_separatorsMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected