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

Function notequal

src/python/PyImath/PyImathLine.cpp:424–431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

422
423template <class T>
424static bool
425notequal(const Line3<T> &l1, const Line3<T> &l2)
426{
427 if(l1.pos != l2.pos || l1.dir != l2.dir)
428 return true;
429 else
430 return false;
431}
432
433template <class T>
434class_<Line3<T> >

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected