| 93 | |
| 94 | template <class T, class Rand> |
| 95 | static PyImath::FixedArray<IMATH_NAMESPACE::Vec3<T> > |
| 96 | hollowSphereRand(Rand &rand, int num) |
| 97 | { |
| 98 | MATH_EXC_ON; |
| 99 | PyImath::FixedArray<IMATH_NAMESPACE::Vec3<T> > retval(num); |
| 100 | for (int i=0; i<num; ++i) { |
| 101 | retval[i] = IMATH_NAMESPACE::hollowSphereRand<IMATH_NAMESPACE::Vec3<T>,Rand>(rand); |
| 102 | } |
| 103 | return retval; |
| 104 | } |
| 105 | |
| 106 | template <class T, class Rand> |
| 107 | static PyImath::FixedArray<IMATH_NAMESPACE::Vec3<T> > |
nothing calls this directly
no outgoing calls
no test coverage detected