mirror of https://github.com/CGAL/cgal
fixing vertical decomposition
This commit is contained in:
parent
20609c6520
commit
11e7333e07
|
|
@ -243,218 +243,6 @@ public:
|
|||
return (Face_const_handle (p_oc->face()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom left vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle bottom_left_fictitious_vertex() const
|
||||
{
|
||||
return bottom_left_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top left vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle top_left_fictitious_vertex() const
|
||||
{
|
||||
return top_left_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom right vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle bottom_right_fictitious_vertex() const
|
||||
{
|
||||
return bottom_right_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top right vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle top_right_fictitious_vertex() const
|
||||
{
|
||||
return top_right_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom left vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle bottom_left_fictitious_vertex()
|
||||
{
|
||||
return bottom_left_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top left vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle top_left_fictitious_vertex()
|
||||
{
|
||||
return top_left_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom right vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle bottom_right_fictitious_vertex()
|
||||
{
|
||||
return bottom_right_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top right vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle top_right_fictitious_vertex()
|
||||
{
|
||||
return top_right_fictitious_vertex_impl
|
||||
(typename Geometry_traits_2::Has_boundary_category());
|
||||
}
|
||||
|
||||
/* unbounded case */
|
||||
|
||||
/*!
|
||||
* Get the bottom left vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle bottom_left_fictitious_vertex_impl(Tag_true) const
|
||||
{
|
||||
return (_const_handle_for(this->topology_traits()->bottom_left_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top left vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle top_left_fictitious_vertex_impl(Tag_true) const
|
||||
{
|
||||
return (_const_handle_for(this->topology_traits()->top_left_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom right vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle bottom_right_fictitious_vertex_impl(Tag_true) const
|
||||
{
|
||||
return (_const_handle_for(this->topology_traits()->bottom_right_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top right vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle top_right_fictitious_vertex_impl(Tag_true) const
|
||||
{
|
||||
return (_const_handle_for(this->topology_traits()->top_right_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom left vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle bottom_left_fictitious_vertex_impl(Tag_true)
|
||||
{
|
||||
return (_handle_for(this->topology_traits()->bottom_left_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top left vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle top_left_fictitious_vertex_impl(Tag_true)
|
||||
{
|
||||
return (_handle_for(this->topology_traits()->top_left_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom right vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle bottom_right_fictitious_vertex_impl(Tag_true)
|
||||
{
|
||||
return (_handle_for(this->topology_traits()->bottom_right_vertex()));
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top right vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle top_right_fictitious_vertex_impl(Tag_true)
|
||||
{
|
||||
return (_handle_for(this->topology_traits()->top_right_vertex()));
|
||||
}
|
||||
|
||||
/* bounded case, currently unsupported */
|
||||
|
||||
/*!
|
||||
* Get the bottom left vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle bottom_left_fictitious_vertex_impl(Tag_false) const
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top left vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle top_left_fictitious_vertex_impl(Tag_false) const
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom right vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle bottom_right_fictitious_vertex_impl(Tag_false) const
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top right vertex (const version).
|
||||
*/
|
||||
Vertex_const_handle top_right_fictitious_vertex_impl(Tag_false) const
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom left vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle bottom_left_fictitious_vertex_impl(Tag_false)
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top left vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle top_left_fictitious_vertex_impl(Tag_false)
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the bottom right vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle bottom_right_fictitious_vertex_impl(Tag_false)
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*!
|
||||
* Get the top right vertex (non-const version).
|
||||
*/
|
||||
Vertex_handle top_right_fictitious_vertex_impl(Tag_false)
|
||||
{
|
||||
CGAL_assertion(false);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
//@}
|
||||
|
||||
protected:
|
||||
|
|
|
|||
Loading…
Reference in New Issue