hollowing params renamed, filtering generalized

This commit is contained in:
tamasmeszaros 2019-11-08 09:21:30 +01:00
parent bc3d22348a
commit 4b08865809
12 changed files with 111 additions and 72 deletions

View file

@ -1099,11 +1099,11 @@ public:
ConfigOptionFloat hollowing_min_thickness;
// Indirectly controls the voxel size (resolution) used by openvdb
ConfigOptionFloat hollowing_accuracy;
ConfigOptionFloat hollowing_quality;
// Indirectly controls the amount of filtering used to blur geometry
// features in the created cavity.
ConfigOptionFloat hollowing_smoothness;
ConfigOptionFloat hollowing_flatness;
protected:
void initialize(StaticCacheBase &cache, const char *base_ptr)
@ -1143,8 +1143,8 @@ protected:
OPT_PTR(pad_object_connector_penetration);
OPT_PTR(hollowing_enable);
OPT_PTR(hollowing_min_thickness);
OPT_PTR(hollowing_accuracy);
OPT_PTR(hollowing_smoothness);
OPT_PTR(hollowing_quality);
OPT_PTR(hollowing_flatness);
}
};