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

Function pushFront

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

Source from the content-addressed store, hash-verified

548
549
550static void pushFront(int v, int* arr, int& an)
551{
552 an++;
553 for (int i = an-1; i > 0; --i) arr[i] = arr[i-1];
554 arr[0] = v;
555}
556
557static void pushBack(int v, int* arr, int& an)
558{

Callers 1

removeVertexFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected