| 132 | |
| 133 | template <class T> |
| 134 | static bool |
| 135 | equal(const Euler<T> &e0, const Euler<T> &e1) |
| 136 | { |
| 137 | if(e0.x == e1.x && e0.y == e1.y && e0.z == e1.z && (e0.order())==(e1.order())) |
| 138 | return true; |
| 139 | else |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | template <class T> |
| 144 | static bool |