Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Improve 3D boolean operation performance

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Improve 3D boolean operation performance


Chronological Thread 
  • From: "Sebastien Loriot (GeometryFactory)" <>
  • To:
  • Subject: Re: [cgal-discuss] Improve 3D boolean operation performance
  • Date: Fri, 29 Mar 2013 08:33:45 +0100
  • Organization: GeometryFactory

try

#include <CGAL/Nef_nary_union_3.h>


Nef_nary_union_3<Nef> nary;
nary.add_polyhdron(nef1);
nary.add_polyhdron(nef2);
...
nary.add_polyhdron(nefn);

Nef result=nary.get_union();

Sebastien.

On 03/29/2013 08:20 AM, sdg wrote:
I got thousands of nef_polyhedron_3 that are needed to be union into a single
nef_polyhedron_3. I am using Exact_predicates_exact_constructions_kernel as
my kernel. However the performance is bad. How can I improve it? Thanks.



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Improve-3D-boolean-operation-performance-tp4657072.html
Sent from the cgal-discuss mailing list archive at Nabble.com.





Archive powered by MHonArc 2.6.18.

Top of Page