VecPoint3f.generate constructor
Implementation
factory VecPoint3f.generate(int length, Point3f Function(int i) generator, {bool dispose = true}) {
final pp = calloc<cvg.VecPoint3f>()..ref.length = length;
pp.ref.ptr = calloc<cvg.Point3f>(length);
for (var i = 0; i < length; i++) {
final v = generator(i);
pp.ref.ptr[i] = v.ref;
if (dispose) v.dispose();
}
return VecPoint3f.fromPointer(pp);
}