~ubuntu-branches/debian/stretch/cgal/stretch

« back to all changes in this revision

Viewing changes to examples/Linear_cell_complex/voronoi_2.cpp

  • Committer: Package Import Robot
  • Author(s): Joachim Reichel
  • Date: 2014-04-05 10:56:43 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140405105643-jgnrpu2thtx23zfs
Tags: 4.4-1
* New upstream release.
* Remove patches do-not-link-example-with-qt4-support-library.patch and
  fix_jet_fitting_3.patch (applied upstream).

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
         it=alcc.darts_of_cell<2>(adart).begin(),
46
46
         itend=alcc.darts_of_cell<2>(adart).end(); it!=itend; ++it)
47
47
  {
48
 
    if ( !alcc.is_marked(it->beta(2), mark_toremove) )
 
48
    if ( !alcc.is_marked(alcc.beta(it,2), mark_toremove) )
49
49
    {
50
 
      CGAL::mark_cell<LCC_2,2>(alcc, it->beta(2), mark_toremove);
51
 
      toremove.push(it->beta(2));
 
50
      CGAL::mark_cell<LCC_2,2>(alcc, alcc.beta(it,2), mark_toremove);
 
51
      toremove.push(alcc.beta(it,2));
52
52
    }    
53
53
  }
54
54