| 132 | } |
| 133 | |
| 134 | short GetShortestAngle(short fromAngle, short toAngle) |
| 135 | { |
| 136 | if (fromAngle == toAngle) |
| 137 | return 0; |
| 138 | |
| 139 | return short(toAngle - fromAngle); |
| 140 | } |
| 141 | |
| 142 | short GetSurfaceSlopeAngle(const Vector3& normal, const Vector3& axis) |
| 143 | { |
no outgoing calls