------------------------------------------------------------------- * @brief Returns whether this is an untransformed texture coordinate set */
| 128 | * @brief Returns whether this is an untransformed texture coordinate set |
| 129 | */ |
| 130 | inline bool IsUntransformed() const { |
| 131 | return (1.0f == mScaling.x && 1.f == mScaling.y && |
| 132 | !mTranslation.x && !mTranslation.y && mRotation < AI_TT_ROTATION_EPSILON); |
| 133 | } |
| 134 | |
| 135 | // ------------------------------------------------------------------- |
| 136 | /** |