| 134 | |
| 135 | // ------------------------------------------------------------------------------------------------ |
| 136 | template <typename T, typename T2, typename T3> bool inrange(const T& in, const T2& lower, const T3& higher) |
| 137 | { |
| 138 | return in > lower && in <= higher; |
| 139 | } |
| 140 | |
| 141 | // ------------------------------------------------------------------------------------------------ |
| 142 | void MS3DImporter :: CollectChildJoints(const std::vector<TempJoint>& joints, |