diff --git a/Docs/_3_FAQ.md b/Docs/_3_FAQ.md index 8b048a793..312e5e95f 100644 --- a/Docs/_3_FAQ.md +++ b/Docs/_3_FAQ.md @@ -13,6 +13,10 @@ All code in Recast and Detour strictly adheres to the following: RecastDemo is a bit looser with these requirements, as it's only meant to showcase Recast usage and functionality, not be part of a shipped product. +## What coordinate system and triangle winding order does Recast use? + +Recast expects clockwise-winding triangles and uses a right-handed, Y-up coordinate system. + ## Why doesn't Recast use STL/Exceptions/RTTI/C++11/my favorite C++ feature? Recast has always strived to maximize its ease of integration into an existing codebase, its portability to unique platforms, and its runtime performance. Recast was forged in the fires of game development, and as such follows the cultural norms of the games industry.