| 246 | |
| 247 | template <class T> |
| 248 | static tuple |
| 249 | planes3(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 | |
| 260 | template <class T> |
| 261 | static tuple |