Return true if the values are not NAN OR INF
| 248 | |
| 249 | // Return true if the values are not NAN OR INF |
| 250 | RP3D_FORCE_INLINE bool Vector3::isFinite() const { |
| 251 | return std::isfinite(x) && std::isfinite(y) && std::isfinite(z); |
| 252 | } |
| 253 | |
| 254 | // Return true if the vector is the zero vector |
| 255 | RP3D_FORCE_INLINE bool Vector3::isZero() const { |
nothing calls this directly
no outgoing calls
no test coverage detected