Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Crash by transforming Polyhedron_3 to Nef_Polyhedron_3

Subject: CGAL users discussion list

List archive

[cgal-discuss] Crash by transforming Polyhedron_3 to Nef_Polyhedron_3


Chronological Thread 
  • From: Gilles <>
  • To:
  • Subject: [cgal-discuss] Crash by transforming Polyhedron_3 to Nef_Polyhedron_3
  • Date: Wed, 21 Oct 2015 23:24:42 -0700 (PDT)
  • Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=None ; spf=None
  • Ironport-phdr: 9a23:dQn7DBF+0RFloV5EGazx3J1GYnF86YWxBRYc798ds5kLTJ75os2wAkXT6L1XgUPTWs2DsrQf27eQ6/urADRdqb+681k8M7V0HycfjssXmwFySOWkMmbcaMDQUiohAc5ZX0Vk9XzoeWJcGcL5ekGA6ibqtW1aJBzzOEJPK/jvHcaK1oLsh730o8aYOl0VzBOGIppMbzyO5T3LsccXhYYwYo0Q8TDu5kVyRuJN2GlzLkiSlRuvru25/Zpk7jgC86l5r50IZ4yhIfV9FOQQTG9+ayFmrPHs4BLMRA/K6noHWXgNiTJJBRLE5Vf0RMTfqCz/48V83C2XJoWiTrY5RC+5qahDVBjyjiAccTU+9TeE2YRLkKtHrUf49FREyInObdTObKJz

Hello,

Everything compiling well in my developpment.
Using CGAL/Polyhedron_incremental_builder_3, I'm creating a new Polyhedron,
it's looks nice at screen.

<http://cgal-discuss.949826.n4.nabble.com/file/n4661258/cgal.png>

My problem : When trying this :

*if(this->is_closed())
{
Nef_polyhedron tempo (*this);
}
*

...it crashes miserably, without any message !

The header of my class looks like that :

#include "formvirtual.h"
#include "polygon_ac.h"

#include <CGAL/Polyhedron_3.h>
#include <CGAL/Nef_polyhedron_3.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>

typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel_exact;
typedef CGAL::Polyhedron_3<Kernel_exact> Polyhedron;
typedef CGAL::Nef_polyhedron_3<Kernel_exact> Nef_polyhedron;
typedef Polyhedron::Halfedge_handle Halfedge_handle;
typedef Polyhedron::Halfedge_around_facet_const_circulator HF_circulator;
typedef Polyhedron::HalfedgeDS HalfedgeDS;

class Polyhedron_ac :public FormVirtual,public Polyhedron

Any clue ?



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Crash-by-transforming-Polyhedron-3-to-Nef-Polyhedron-3-tp4661258.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page