| 706 | |
| 707 | |
| 708 | int LuaSpatial::GetFlagsInSphere(lua_State* L) { |
| 709 | SphereData sphere; |
| 710 | ParseSphere(L, sphere); |
| 711 | std::vector<const Flag*> hits; |
| 712 | CheckFlags(FlagInSphere, sphere, hits); |
| 713 | PushFlags(L, hits); |
| 714 | return 1; |
| 715 | } |
| 716 | |
| 717 | |
| 718 | int LuaSpatial::GetFlagsInCylinder(lua_State* L) { |
nothing calls this directly
no test coverage detected