Skip to content

Commit 076c41e

Browse files
committed
fixes
1 parent 207ce7e commit 076c41e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

processor.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#include "writer.h"
88
#include "progress.h"
99
#include "volume.h"
10+
#include "voxelizer.h"
1011

1112
#include <TopoDS_Shape.hxx>
1213
#include <TopoDS_Compound.hxx>

voxec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ voxel_operation_map::map_t& voxel_operation_map::map() {
1212
m.insert(std::make_pair(std::string("create_geometry"), &instantiate<op_create_geometry>));
1313
#endif
1414
m.insert(std::make_pair(std::string("voxelize"), &instantiate<op_voxelize>));
15-
m.insert(std::make_pair(std::string("voxelize_ids"), &instantiate<op_voxelize_ids>));
15+
// m.insert(std::make_pair(std::string("voxelize_ids"), &instantiate<op_voxelize_ids>));
1616
m.insert(std::make_pair(std::string("fill_gaps"), &instantiate<op_fill_gaps>));
1717
m.insert(std::make_pair(std::string("offset"), &instantiate<op_offset>));
1818
m.insert(std::make_pair(std::string("offset_xy"), &instantiate<op_offset_xy>));

0 commit comments

Comments
 (0)