| 156 | } |
| 157 | |
| 158 | static Vector3i ToVector3i(const Save::Vector3* vec) |
| 159 | { |
| 160 | return Vector3i((int)round(vec->x()), (int)round(vec->y()), (int)round(vec->z())); |
| 161 | } |
| 162 | |
| 163 | static Vector3 ToVector3(const Save::Vector3* vec) |
| 164 | { |
no test coverage detected