| 37 | |
| 38 | template <class T, class Rand> |
| 39 | static IMATH_NAMESPACE::Vec3<T> nextGaussSphere(Rand &rand, const IMATH_NAMESPACE::Vec3<T> &v) |
| 40 | { |
| 41 | MATH_EXC_ON; |
| 42 | return IMATH_NAMESPACE::gaussSphereRand<IMATH_NAMESPACE::Vec3<T>,Rand>(rand); |
| 43 | } |
| 44 | template <class T, class Rand> |
| 45 | static IMATH_NAMESPACE::Vec2<T> nextGaussSphere(Rand &rand, const IMATH_NAMESPACE::Vec2<T> &v) |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected