CGAL::Square_border_arc_length_parameterizer_3<ParameterizationMesh_3>

Definition

This class parameterizes the border of a 3D surface onto a square, with an arc-length parameterization: (u,v) values are proportional to the length of border edges.

Square_border_parameterizer_3 implements most of the border parameterization algorithm. This class implements only compute_edge_length() to compute a segment's length.

#include <CGAL/Square_border_parameterizer_3.h>

Is Model for the Concepts

Model of the BorderParameterizer_3 concept.

Design Pattern

BorderParameterizer_3 models are Strategies [GHJV95]: they implement a strategy of border parameterization for models of ParameterizationMesh_3

Parameters

The full template declaration is:

template<
class ParameterizationMesh_3>
class Square_border_arc_length_parameterizer_3;

Types

Creation

Square_border_arc_length_parameterizer_3<ParameterizationMesh_3> bp;
default constructor.

Operations

virtual double
bp.compute_edge_length ( Adaptor mesh,
Vertex_const_handle source,
Vertex_const_handle target)
Compute the length of an edge. Arc-length border parameterization: (u,v) values are proportional to the length of border edges.

See Also

CGAL::Circular_border_arc_length_parameterizer_3<ParameterizationMesh_3>
CGAL::Circular_border_uniform_parameterizer_3<ParameterizationMesh_3>
CGAL::Square_border_uniform_parameterizer_3<ParameterizationMesh_3>
CGAL::Two_vertices_parameterizer_3<ParameterizationMesh_3>

Example

See Square_border_parameterization.C example.