Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Toggling odt() and no_odt() and other meshing paramters

Subject: CGAL users discussion list

List archive

[cgal-discuss] Toggling odt() and no_odt() and other meshing paramters


Chronological Thread 
  • From: slaughter <>
  • To:
  • Subject: [cgal-discuss] Toggling odt() and no_odt() and other meshing paramters
  • Date: Thu, 24 May 2012 12:15:04 -0700 (PDT)

I am working on a meshing function based on Chapter 50 and would like to
setup boolean flags to switch on or off the four meshing optimization
methods given in Seciton 50.2 Interface: The global functions.

I would like to do something like this for each of the parameters:

if (odt_flag == true){
Odt odt_value = CGAL::parameters::odt(); // This does't work, but is
there something that will
} else {
Odt odt_value = CGAL::parameters::no_odt(); // This does't work, but is
there something that will
}

... do this for each of the four parameters so the following will generate
the mesh ...

c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria, lloyd_value, odt_value,
perturb_value, exude_value);



If anyone knows how to do this, I would greatly appreciate the assistance.


Thanks,
Andrew



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Toggling-odt-and-no-odt-and-other-meshing-paramters-tp4653442.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.16.

Top of Page