commit 6d07252863a7e356446fcc39f498470752d0995b
parent 3af238bfe68a255d3a52c8bc940b4cba108b9865
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Fri, 20 Dec 2024 11:08:39 +0100
Add a new meshing algorithm in options
This 'initial mesh only' algorithm does not create new points.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/scad.h b/src/scad.h
@@ -60,6 +60,7 @@ enum scad_verbosity_levels {
enum scad_mesh_algorithm {
Scad_meshAdapt = 1,
Scad_Automatic = 2, /* Delaunay on planes, meshAdapt elsewhere */
+ Scad_Initial_Mesh_Only = 3, /* Avoid new point creation */
Scad_Delaunay = 5,
Scad_frontal_Delaunay = 6
};