Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Questons on Polyhedron_3::inside_out ()

Subject: CGAL users discussion list

List archive

[cgal-discuss] Questons on Polyhedron_3::inside_out ()


Chronological Thread 
  • From: Joe C <>
  • To:
  • Subject: [cgal-discuss] Questons on Polyhedron_3::inside_out ()
  • Date: Tue, 17 Mar 2009 17:27:45 -0700
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=YEriM4yu3ZU5oD6GfLUFVwmmXlXUhGb1gCoNzsU0NmOHEeSXIZIie66rFjPHym2LvU zy9RmwLFiNOkeSvpWlBuM+Bv3pCvlgjhVinp8R+jmtZlGjyOa3irSlgN394QjA850Vfl CWM4VNB2o9u9IukcRNKbbeM/7Sb6gFo3l7oPw=

Hi,

I am trying to reverse the facets orientation of a polyhedron P by using a polyheron_3::inside_out (). P is verified to be valid. However, the program terminates abnormally. When I debug the code, I see it terminates when hitting the line "std::transform( planes_begin(), planes_end(), planes_begin(), opp);" in the code snippet from Polyhedron_3.h:

void inside_out_geometry( Tag_true) {
        typename Traits::Construct_opposite_plane_3 opp
            = traits().construct_opposite_plane_3_object();
        std::transform( planes_begin(), planes_end(), planes_begin(), opp);
    }

My compiler is Visual Studio 2008 and I am using CGAL-3.4. Is there any settings I am missing or is it a bug?

Thanks.
Joe


  • [cgal-discuss] Questons on Polyhedron_3::inside_out (), Joe C, 03/18/2009

Archive powered by MHonArc 2.6.16.

Top of Page