CGAL 5.1 - 3D Mesh Generation
MeshPolyline_3 Class Reference

#include <Concepts/MeshPolyline_3.h>

Definition

The concept MeshPolyline_3 implements a container of points designed to represent a polyline (i.e. a sequence of points). Types and functions provided in this concept are such as standard template library containers are natural models of this concept.

Has Models:
std::vector<Kernel::Point_3> for any Kernel of CGAL is a natural model of this concept.
See also
CGAL::Mesh_domain_with_polyline_features_3<MD>

Types

typedef unspecified_type value_type
 Point type. More...
 
typedef unspecified_type const_iterator
 A constant iterator on points. More...
 

Operations

const_iterator begin ()
 Returns an iterator on the first point of the polyline. More...
 
const_iterator end ()
 Returns the past-the-end iterator for the above iterator. More...
 

Member Typedef Documentation

◆ const_iterator

typedef unspecified_type MeshPolyline_3::const_iterator

A constant iterator on points.

Must be a model of Bidirectional iterator and have value_type as value type.

◆ value_type

typedef unspecified_type MeshPolyline_3::value_type

Point type.

Must match the type MeshDomain_3::Point_3.

Member Function Documentation

◆ begin()

const_iterator MeshPolyline_3::begin ( )

Returns an iterator on the first point of the polyline.

◆ end()

const_iterator MeshPolyline_3::end ( )

Returns the past-the-end iterator for the above iterator.