| 84 | |
| 85 | template <class Rand> |
| 86 | static Rand *Rand_constructor2(Rand rand) |
| 87 | { |
| 88 | Rand *r = new Rand(); |
| 89 | *r = rand; |
| 90 | |
| 91 | return r; |
| 92 | } |
| 93 | |
| 94 | template <class T, class Rand> |
| 95 | static PyImath::FixedArray<IMATH_NAMESPACE::Vec3<T> > |
nothing calls this directly
no outgoing calls
no test coverage detected