--circle-segments conversion setting instead of hardcoded number in cgal kernel

This commit is contained in:
Thomas Krijnen
2023-12-15 13:41:37 +01:00
parent 2a3416b01a
commit c2492c8655
3 changed files with 15 additions and 12 deletions
-3
View File
@@ -70,8 +70,6 @@ namespace ifcopenshell {
class IFC_GEOM_API CgalKernel : public AbstractKernel {
private:
size_t circle_segments_;
#ifndef IFOPSH_SIMPLE_KERNEL
enum boolean_operand_preprocess {
PP_MINKOWSKY_DILATE,
@@ -94,7 +92,6 @@ namespace ifcopenshell {
CgalKernel(const Settings& settings)
: AbstractKernel("cgal", settings)
, circle_segments_(32)
{}
void remove_duplicate_points_from_loop(cgal_wire_t& polygon);