45 lines
1.8 KiB
C
Executable File
45 lines
1.8 KiB
C
Executable File
// Copyright (c) 2016 GeometryFactory (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
// You can redistribute it and/or modify it under the terms of the GNU
|
|
// General Public License as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// Licensees holding a valid commercial license may use this file in
|
|
// accordance with the commercial license agreement provided with the software.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
//
|
|
//
|
|
// Author(s) : Mael Rouxel-Labbé
|
|
|
|
/**
|
|
* \ingroup PkgSurfaceMeshParameterization
|
|
* \file CGAL/surface_mesh_parameterization.h
|
|
* Convenience header file including the headers for all
|
|
* the free functions of this package.
|
|
*/
|
|
|
|
|
|
#include <CGAL/Surface_mesh_parameterization/ARAP_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Barycentric_mapping_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Discrete_authalic_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Discrete_conformal_map_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/LSCM_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Mean_value_coordinates_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/MVC_post_processor_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h>
|
|
|
|
#include <CGAL/Surface_mesh_parameterization/parameterize.h>
|
|
|
|
#include <CGAL/Surface_mesh_parameterization/Circular_border_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Square_border_parameterizer_3.h>
|
|
#include <CGAL/Surface_mesh_parameterization/Two_vertices_parameterizer_3.h>
|
|
|