Frees multiple Point structs back to the pool.
pointers
void freeMany(List<Pointer<Point>> pointers) { for (final ptr in pointers) { free(ptr); } }