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

Function equal

src/python/PyImath/PyImathPlane.cpp:431–438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

429
430template <class T>
431static bool
432equal(const Plane3<T> &p1, const Plane3<T> &p2)
433{
434 if(p1.normal == p2.normal && p1.distance == p2.distance)
435 return true;
436 else
437 return false;
438}
439
440template <class T>
441static bool

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected