CGAL 5.2.2 - Optimal Distances
|
#include <CGAL/Width_3.h>
Given a set of points \( \mathcal{S}=\left\{p_1,\ldots , p_n\right\}\) in \( \mathbb{R}^3\).
The width of \( \mathcal{S}\), denoted as \( \mathcal{W(S)}\), is defined as the minimum distance between two parallel planes of support of \( \mathit{conv(\mathcal{S})}\); where \( \mathit{conv(\mathcal{S})}\) denotes the convex hull of \( \mathcal{S}\). The width in direction \( \mathbf{d}\), denoted as \( \mathcal{W}_d\mathcal{(S)}\), is the distance between two parallel planes of support of \( \mathit{conv(\mathcal{S})}\), which are orthogonal to \( \mathbf{d}\).
Subject to the applications of the width algorithm, several objects might be interesting:
Note: There might be several optimal build directions. Hence neither the width-planes nor the direction \( \mathbf{d}_{opt}\) are unique - only the width is.
Traits | must be a model for WidthTraits_3 . |
We provide the model Width_default_traits_3<Kernel>
based on a three-dimensional CGAL kernel.
CGAL::Width_default_traits_3<K>
WidthTraits_3
Implementation
Since the width of the point set \( \mathcal{S}\) and the width of the convex hull of \( \mathcal{S}\) ( \( \mathit{conv(\mathcal{S})}\)) is the same, the algorithm uses the 3D convex hull algorithm CGAL provides.
The width-algorithm is not incremental and therefore inserting and erasing points cause not an 'automatic' update of the width. Instead you have to run the width-algorithm again even if the point set is extended by only one new point.
Large Numbers.
Because there is no need for dividing values during the algorithm, the numbers can get really huge (all the computations are made using a lot of multiplications). Therefore it is strongly recommended to use a number type that can handle numbers of arbitrary length (e.g., leda_integer
in combination with the homogeneous representation of the points). But these large numbers have a disadvantage: Operations on them are slower as greater the number gets. Therefore it is possible to shorten the numbers by using the compiler flag -Dsimplify. For using this option it is required that the underlying number type provides the 'modulo' operation.
Information Output during the Computations.
If during the algorithm the program should output some information (e.g., during the debugging phase) you can turn on the output information by giving the compiler flag debug. In the file width_assertions.h
you can turn on/off the output of some functions and additional informations by changing the defined values from 0 (no output) to 1 (output available). But then it is required that the operator<<()
has to been overloaded for Point_3
, Plane_3
, Vector_3
and RT
.
Example
File Polytope_distance_d/width_simplex.cpp
Types | |
typedef Traits::Point_3 | Point_3 |
point type. | |
typedef Traits::Plane_3 | Plane_3 |
plane type. | |
typedef Traits::Vector_3 | Vector_3 |
vector type. | |
typedef Traits::RT | RT |
algebraic ring type. | |
typedef Traits::ChullTraits | ChullTraits |
traits class for the 3D convex hull algorithm. | |
Creation | |
template<class InputIterator > | |
Width_3 (InputIterator first, InputIterator beyond) | |
creates a variable width initialized to the width of \( \mathcal{S}\) - with \( \mathcal{S}\) being the set of points in the range [first ,beyond ). More... | |
template<class Polyhedron > | |
Width_3 (Polyhedron &P) | |
creates a variable width initialized to the width of the polyhedron \( P\). More... | |
Access Functions | |
void | get_squared_width (RT &width_num, RT &width_denom) |
returns the squared width. More... | |
void | get_width_planes (Plane_3 &e1, Plane_3 &e2) |
The planes e1 and e2 are the two parallel supporting planes, which distance is minimal (among all such planes). | |
void | get_width_coefficients (RT &A, RT &B, RT &C, RT &D, RT &K) |
The returned coefficients A,B,C,D,K have the property that width-plane e1 is given by the equation \( Ax+By+Cz+D=0\) and width-plane e2 by \( Ax+By+Cz+K=0\). | |
Vector_3 | get_build_direction () |
returns a direction \( \mathbf{d}_{opt}\) such that the width-planes e1 and e2 are perpendicular to \( \mathbf{d}_{opt}\). More... | |
void | get_all_build_directions (std::vector< Vector_3 > &dir) |
All the build directions are stored in the vector dir . More... | |
int | get_number_of_optimal_solutions () |
returns the number of optimal solutions, i.e., the number of optimal build directions. | |
CGAL::Width_3< Traits >::Width_3 | ( | InputIterator | first, |
InputIterator | beyond | ||
) |
creates a variable width
initialized to the width of \( \mathcal{S}\) - with \( \mathcal{S}\) being the set of points in the range [first
,beyond
).
InputIterator | has Point_3 as value type. |
CGAL::Width_3< Traits >::Width_3 | ( | Polyhedron & | P | ) |
creates a variable width
initialized to the width of the polyhedron \( P\).
Note that the vertex point coordinates are altered!
void CGAL::Width_3< Traits >::get_all_build_directions | ( | std::vector< Vector_3 > & | dir | ) |
All the build directions are stored in the vector dir
.
It might happen that a certain body has several different build directions, but it is also possible to have only one build direction.
Vector_3 CGAL::Width_3< Traits >::get_build_direction | ( | ) |
returns a direction \( \mathbf{d}_{opt}\) such that the width-planes e1
and e2
are perpendicular to \( \mathbf{d}_{opt}\).
The width of the point set is minimal in this direction.
void CGAL::Width_3< Traits >::get_squared_width | ( | RT & | width_num, |
RT & | width_denom | ||
) |
returns the squared width.
For the reason of exact computation not the width itself is stored, but the squared width as a fraction: The numerator in width_num
and the denominator in width_denom
. The width of the point set \( \mathcal{S}\) is \( \sqrt{\frac{width\_num}{width\_denom}}\).