mirror of https://github.com/CGAL/cgal
20 lines
372 B
C++
20 lines
372 B
C++
/*!
|
|
\ingroup PkgTSMAConcepts
|
|
\cgalConcept
|
|
|
|
The concept `Proxy` describes the parameterized shape used in the Variational Shape Approximation algorithm.
|
|
It is nested within the `ErrorMetric` and `ProxyFitting` concepts.
|
|
|
|
\cgalHasModel `PlaneProxy`
|
|
*/
|
|
|
|
class Proxy {
|
|
public:
|
|
/// @name Data members
|
|
/// @{
|
|
|
|
/// Anything to store the proxy shape parameters.
|
|
|
|
/// }
|
|
};
|