Skip to content
Snippets Groups Projects
Commit e7a4693c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

use the 3D Delaunay by default (if tetgen is available)
parent 08991979
No related branches found
No related tags found
No related merge requests found
...@@ -853,7 +853,12 @@ StringXNumber GeometryOptions_Number[] = { ...@@ -853,7 +853,12 @@ StringXNumber GeometryOptions_Number[] = {
StringXNumber MeshOptions_Number[] = { StringXNumber MeshOptions_Number[] = {
{ F|O, "Algorithm" , opt_mesh_algo2d , ALGO_2D_MESHADAPT , { F|O, "Algorithm" , opt_mesh_algo2d , ALGO_2D_MESHADAPT ,
"2D mesh algorithm (1=meshadapt, 2=delaunay)" }, "2D mesh algorithm (1=meshadapt, 2=delaunay)" },
{ F|O, "Algorithm3D" , opt_mesh_algo3d , ALGO_3D_NETGEN , { F|O, "Algorithm3D" , opt_mesh_algo3d ,
#if defined(HAVE_TETGEN)
ALGO_3D_DELAUNAY ,
#else
ALGO_3D_NETGEN ,
#endif
"3D mesh algorithm (1=delaunay, 4=netgen, 5=tetgen)" }, "3D mesh algorithm (1=delaunay, 4=netgen, 5=tetgen)" },
{ F|O, "AngleSmoothNormals" , opt_mesh_angle_smooth_normals , 30.0 , { F|O, "AngleSmoothNormals" , opt_mesh_angle_smooth_normals , 30.0 ,
"Threshold angle below which normals are not smoothed" }, "Threshold angle below which normals are not smoothed" },
......
$Id: VERSIONS,v 1.376 2007-02-13 07:51:48 geuzaine Exp $ $Id: VERSIONS,v 1.377 2007-02-14 12:31:15 geuzaine Exp $
since 2.0: volumes can now be defined from external CAD surfaces; since 2.0: volumes can now be defined from external CAD surfaces; use
fixed various small bugs. Delaunay/Tetgen algorithm by default when available; fixed various
small bugs.
2.0 (February 5, 2007): new geometry and mesh databases, with support 2.0 (February 5, 2007): new geometry and mesh databases, with support
for STEP and IGES import via OpenCascade; complete rewrite of geometry for STEP and IGES import via OpenCascade; complete rewrite of geometry
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment