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

Function boxConstructor

src/python/PyImath/PyImathBox.cpp:96–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94
95template <class T, class S>
96static Box<T> *boxConstructor(const Box<S> &box)
97{
98 Box<T> *newBox = new Box<T>;
99 newBox->min = box.min;
100 newBox->max = box.max;
101
102 return newBox;
103}
104
105template <class T>
106static Box<T> * box3TupleConstructor1(const tuple &t)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected