| 696 | //============================================================================// |
| 697 | |
| 698 | int LuaSpatial::GetFlagsInPlanes(lua_State* L) { |
| 699 | PlanesData planes; |
| 700 | ParsePlanes(L, planes); |
| 701 | std::vector<const Flag*> hits; |
| 702 | CheckFlags(FlagInPlanes, planes, hits); |
| 703 | PushFlags(L, hits); |
| 704 | return 1; |
| 705 | } |
| 706 | |
| 707 | |
| 708 | int LuaSpatial::GetFlagsInSphere(lua_State* L) { |
nothing calls this directly
no test coverage detected