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

« back to all changes in this revision

Viewing changes to include/CGAL/Arr_topology_traits/Arr_unb_planar_batched_pl_helper.h

  • 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:
14
14
//
15
15
// $URL$
16
16
// $Id$
17
 
// 
 
17
//
18
18
//
19
19
// Author(s)     : Baruch Zukerman <baruchzu@post.tau.ac.il>
20
20
//                 Ron Wein        <wein@post.tau.ac.il>
91
91
};
92
92
 
93
93
//-----------------------------------------------------------------------------
94
 
// Memeber-function definitions:
 
94
// Member-function definitions:
95
95
//-----------------------------------------------------------------------------
96
96
 
97
97
//-----------------------------------------------------------------------------
103
103
  // Initialize the fictitious halfedge lying on the top edge of the
104
104
  // fictitious face. We start from the leftmost halfedge, which is
105
105
  // incident to the top-left vertex and directed from right to left.
106
 
  Vertex_const_handle  v_tl = 
 
106
  Vertex_const_handle  v_tl =
107
107
    Vertex_const_handle (m_top_traits->top_left_vertex());
108
108
 
109
109
  m_top_fict = v_tl->incident_halfedges();
110
110
  if (m_top_fict->direction() == ARR_LEFT_TO_RIGHT)
111
111
    m_top_fict = m_top_fict->next()->twin();
112
 
  
 
112
 
113
113
  CGAL_assertion_code (
114
 
    Vertex_const_handle  v_tr = 
 
114
    Vertex_const_handle  v_tr =
115
115
      Vertex_const_handle (m_top_traits->top_right_vertex());
116
116
  );
117
117
  CGAL_assertion
138
138
 
139
139
  if (event->parameter_space_in_x() != ARR_INTERIOR)
140
140
    return;
141
 
    
 
141
 
142
142
  if (event->parameter_space_in_y() == ARR_TOP_BOUNDARY)
143
143
    m_top_fict = m_top_fict->twin()->next()->twin();
144
 
    
 
144
 
145
145
  return;
146
146
}
147
147