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

Function planes4

src/python/PyImath/PyImathFrustum.cpp:261–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

259
260template <class T>
261static tuple
262planes4(Frustum<T> &f)
263{
264 MATH_EXC_ON;
265 IMATH_NAMESPACE::Plane3<T> p[6];
266 f.planes(p);
267
268 tuple t = make_tuple(p[0],p[1],p[2],p[3],p[4],p[5]);
269
270 return t;
271}
272
273template <class T>
274class_<Frustum<T> >

Callers

nothing calls this directly

Calls 1

planesMethod · 0.80

Tested by

no test coverage detected