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

Function left

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

Returns true iff c is strictly to the left of the directed line through a to b.

Source from the content-addressed store, hash-verified

180// Returns true iff c is strictly to the left of the directed
181// line through a to b.
182inline bool left(const int* a, const int* b, const int* c)
183{
184 return area2(a, b, c) < 0;
185}
186
187inline bool leftOn(const int* a, const int* b, const int* c)
188{

Callers 2

intersectPropFunction · 0.70
inConeFunction · 0.70

Calls 1

area2Function · 0.70

Tested by

no test coverage detected