\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.7 - 2D Envelopes
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
EnvelopeDiagramEdge Concept Reference

Definition

An edge record in an envelope diagram, which represents a continuous portion of the \( x\)-axis. It is associated with a (possibly empty) set of curves that induce the envelope over this portion of the \( x\)-axis. Note that all curves in this set overlap over the interval represented by the edge.

See also
EnvelopeDiagram_1
EnvelopeDiagramVertex

Types

typedef unspecified_type Size
 the size type (convertible to size_t). More...
 
typedef unspecified_type Vertex
 the corresponding diagram-vertex type. More...
 
typedef unspecified_type X_monotone_curve_2
 the \( x\)-monotone curve type. More...
 

Creation

 EnvelopeDiagramEdge ()
 default constructor. More...
 
 EnvelopeDiagramEdge (const EnvelopeDiagramEdge &other)
 copy constructor. More...
 

Access Functions

Size number_of_curves () const
 returns the number of \( x\)-monotone curves associated with e. More...
 
bool is_empty () const
 returns whether e represents an empty interval - namely, whether the set of \( x\)-monotone curves associated with it is empty. More...
 
const X_monotone_curve_2curve () const
 returns a representative \( x\)-monotone curve associated with e. More...
 
Curve_const_iterator curves_begin () const
 returns an iterator for the first \( x\)-monotone curve associated with e. More...
 
Curve_const_iterator curves_end () const
 returns a past-the-end iterator for the \( x\)-monotone curves associated with e. More...
 
Vertex_const_handle left () const
 returns the vertex lying to e's left. More...
 
Vertex_const_handle right () const
 returns the vertex lying to e's right. More...
 

Modifiers

void clear_curves ()
 clears the set of curves associated with e. More...
 
void add_curve (const X_monotone_curve_2 &cv)
 adds the \( x\)-monotone curve cv to the set of curves associated with e. More...
 
void add_curves (Curve_const_iterator begin, Curve_const_iterator end)
 adds the given range of \( x\)-monotone curves to the set of curves associated with e. More...
 
void set_left (Vertex_const_handle v)
 sets the vertex lying to the left of e to be v. More...
 
void set_right (Vertex_const_handle v)
 sets the vertex lying to the right of e to be v. More...
 

Member Typedef Documentation

the size type (convertible to size_t).

the corresponding diagram-vertex type.

the \( x\)-monotone curve type.

Constructor & Destructor Documentation

EnvelopeDiagramEdge::EnvelopeDiagramEdge ( )

default constructor.

EnvelopeDiagramEdge::EnvelopeDiagramEdge ( const EnvelopeDiagramEdge other)

copy constructor.

Member Function Documentation

void EnvelopeDiagramEdge::add_curve ( const X_monotone_curve_2 cv)

adds the \( x\)-monotone curve cv to the set of curves associated with e.

void EnvelopeDiagramEdge::add_curves ( Curve_const_iterator  begin,
Curve_const_iterator  end 
)

adds the given range of \( x\)-monotone curves to the set of curves associated with e.

void EnvelopeDiagramEdge::clear_curves ( )

clears the set of curves associated with e.

const X_monotone_curve_2& EnvelopeDiagramEdge::curve ( ) const

returns a representative \( x\)-monotone curve associated with e.

Precondition
e does not represent an empty interval.
Curve_const_iterator EnvelopeDiagramEdge::curves_begin ( ) const

returns an iterator for the first \( x\)-monotone curve associated with e.

Curve_const_iterator EnvelopeDiagramEdge::curves_end ( ) const

returns a past-the-end iterator for the \( x\)-monotone curves associated with e.

bool EnvelopeDiagramEdge::is_empty ( ) const

returns whether e represents an empty interval - namely, whether the set of \( x\)-monotone curves associated with it is empty.

Vertex_const_handle EnvelopeDiagramEdge::left ( ) const

returns the vertex lying to e's left.

Precondition
e is not the leftmost edge in the diagram.
Size EnvelopeDiagramEdge::number_of_curves ( ) const

returns the number of \( x\)-monotone curves associated with e.

Vertex_const_handle EnvelopeDiagramEdge::right ( ) const

returns the vertex lying to e's right.

Precondition
e is not the rightmost edge in the diagram.
void EnvelopeDiagramEdge::set_left ( Vertex_const_handle  v)

sets the vertex lying to the left of e to be v.

void EnvelopeDiagramEdge::set_right ( Vertex_const_handle  v)

sets the vertex lying to the right of e to be v.