| 254 | } |
| 255 | |
| 256 | static void setPositionLla(Entity& entity, const LatLonAlt& lla) |
| 257 | { |
| 258 | Vector3 position = toGeocentric(LatLonAltPosition(lla)).position; |
| 259 | setPosition(entity, position); |
| 260 | } |
| 261 | |
| 262 | static std::optional<Vector3> getOrientationRpy(const Entity& entity) |
| 263 | { |
no test coverage detected