| 105 | } |
| 106 | |
| 107 | static inline bool CheckVector4Components(Vector4* v) |
| 108 | { |
| 109 | return !isnan(v->getX()) && !isnan(v->getY()) && !isnan(v->getZ()) && !isnan(v->getW()); |
| 110 | } |
| 111 | |
| 112 | static inline bool CheckQuatComponents(Quat* q) |
| 113 | { |
no test coverage detected