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

Function notequal

src/python/PyImath/PyImathPlane.cpp:441–448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439
440template <class T>
441static bool
442notequal(const Plane3<T> &p1, const Plane3<T> &p2)
443{
444 if(p1.normal != p2.normal || p1.distance != p2.distance)
445 return true;
446 else
447 return false;
448}
449
450template <class T>
451static Plane3<T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected