31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
|
// Copyright (c) 2014 INRIA Sophia-Antipolis (France).
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This file is a part of CGAL (www.cgal.org).
|
||
|
//
|
||
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Barycentric_coordinates_2/include/CGAL/Barycentric_coordinates_2.h $
|
||
|
// $Id: Barycentric_coordinates_2.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
||
|
//
|
||
|
// Author(s) : Dmitry Anisimov, David Bommes, Kai Hormann, and Pierre Alliez.
|
||
|
|
||
|
/*!
|
||
|
\file Barycentric_coordinates_2.h
|
||
|
*/
|
||
|
|
||
|
#ifndef CGAL_BARYCENTRIC_COORDINATES_2_H
|
||
|
#define CGAL_BARYCENTRIC_COORDINATES_2_H
|
||
|
|
||
|
#include <CGAL/license/Barycentric_coordinates_2.h>
|
||
|
|
||
|
|
||
|
#include <CGAL/Barycentric_coordinates_2/barycentric_enum_2.h>
|
||
|
#include <CGAL/Barycentric_coordinates_2/Segment_coordinates_2.h>
|
||
|
#include <CGAL/Barycentric_coordinates_2/Triangle_coordinates_2.h>
|
||
|
#include <CGAL/Barycentric_coordinates_2/Generalized_barycentric_coordinates_2.h>
|
||
|
#include <CGAL/Barycentric_coordinates_2/Discrete_harmonic_2.h>
|
||
|
#include <CGAL/Barycentric_coordinates_2/Wachspress_2.h>
|
||
|
#include <CGAL/Barycentric_coordinates_2/Mean_value_2.h>
|
||
|
|
||
|
#endif // CGAL_BARYCENTRIC_COORDINATES_2_H
|