mirror of https://github.com/CGAL/cgal
31 lines
1.5 KiB
C
31 lines
1.5 KiB
C
// Copyright (c) 2017 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 Lesser 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$
|
|
//
|
|
//
|
|
// Author(s) : Maxime Gimeno
|
|
|
|
// List of named parameters that we use in CGAL
|
|
CGAL_add_named_parameter(vertex_point_t, vertex_point, vertex_point_map)
|
|
CGAL_add_named_parameter(face_index_t, face_index, face_index_map)
|
|
CGAL_add_named_parameter(edge_index_t, edge_index, edge_index_map)
|
|
CGAL_add_named_parameter(halfedge_index_t, halfedge_index, halfedge_index_map)
|
|
CGAL_add_named_parameter(edge_is_constrained_t, edge_is_constrained, edge_is_constrained_map)
|
|
CGAL_add_named_parameter(set_cache_policy_t, set_cache_policy, set_cache)
|
|
CGAL_add_named_parameter(get_cost_policy_t, get_cost_policy, get_cost)
|
|
CGAL_add_named_parameter(get_cost_policy_params_t, get_cost_policy_params, get_cost_params)
|
|
CGAL_add_named_parameter(get_placement_policy_t, get_placement_policy, get_placement)
|
|
CGAL_add_named_parameter(get_placement_policy_params_t, get_placement_policy_params, get_placement_params)
|