Return the axis with the minimal value
| 233 | |
| 234 | // Return the axis with the minimal value |
| 235 | RP3D_FORCE_INLINE int Vector3::getMinAxis() const { |
| 236 | return (x < y ? (x < z ? 0 : 2) : (y < z ? 1 : 2)); |
| 237 | } |
| 238 | |
| 239 | // Return the axis with the maximal value |
| 240 | RP3D_FORCE_INLINE int Vector3::getMaxAxis() const { |
nothing calls this directly
no outgoing calls
no test coverage detected