commit ff863c4029a9dc0b90e2af6de6826a5da29b0866
parent b393426184cf12cda90285a5b92803619e37beee
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Thu, 28 Nov 2024 15:27:13 +0100
Add the 'automatic' meshing algorithm as an option
gmsh documentation states that it uses Delaunay on planes, meshAdapt
elsewhere.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/scad.h b/src/scad.h
@@ -59,6 +59,7 @@ enum scad_verbosity_levels {
/* Mesh algorithms */
enum scad_mesh_algorithm {
Scad_meshAdapt = 1,
+ Scad_Automatic = 2, /* Delaunay on planes, meshAdapt elsewhere */
Scad_Delaunay = 5,
Scad_frontal_Delaunay = 6
};