Skip to content

Commit 8085ac5

Browse files
committed
32bit voxel ids option
1 parent dcf0495 commit 8085ac5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

voxec.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,8 +418,7 @@ class op_create_geometry : public voxel_operation {
418418
#endif
419419

420420
namespace {
421-
<<<<<<< HEAD
422-
abstract_voxel_storage* voxelize(abstract_voxel_storage* voxels, geometry_collection_t* surfaces) {
421+
abstract_voxel_storage* voxelize_2(abstract_voxel_storage* voxels, geometry_collection_t* surfaces) {
423422
progress_writer progress;
424423
processor p(voxels, progress);
425424
p.process(surfaces->begin(), surfaces->end(), SURFACE(), output(MERGED()));
@@ -566,7 +565,7 @@ namespace {
566565
geometry_collection_t single = { { pair.first, C} };
567566

568567
auto vs = voxels->empty_copy();
569-
voxelize<>(vs, &single);
568+
voxelize_2(vs, &single);
570569
auto x = vs->boolean_intersection(voxels);
571570

572571
// std::cout << "#" << pair.first << std::endl;

0 commit comments

Comments
 (0)