MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / equal

Function equal

src/python/PyImath/PyImathEuler.cpp:134–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132
133template <class T>
134static bool
135equal(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
143template <class T>
144static bool

Callers

nothing calls this directly

Calls 1

orderMethod · 0.80

Tested by

no test coverage detected