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

Function planes3

src/python/PyImath/PyImathFrustum.cpp:248–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246
247template <class T>
248static tuple
249planes3(Frustum<T> &f, const Matrix44<T> &mat)
250{
251 MATH_EXC_ON;
252 IMATH_NAMESPACE::Plane3<T> p[6];
253 f.planes(p,mat);
254
255 tuple t = make_tuple(p[0],p[1],p[2],p[3],p[4],p[5]);
256
257 return t;
258}
259
260template <class T>
261static tuple

Callers

nothing calls this directly

Calls 1

planesMethod · 0.80

Tested by

no test coverage detected