Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/unsupported/Eigen/Splines is written in an unsupported language. File is not indexed.

0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // Copyright (C) 20010-2011 Hauke Heibel <hauke.heibel@gmail.com>
0005 //
0006 // This Source Code Form is subject to the terms of the Mozilla
0007 // Public License v. 2.0. If a copy of the MPL was not distributed
0008 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0009 
0010 #ifndef EIGEN_SPLINES_MODULE_H
0011 #define EIGEN_SPLINES_MODULE_H
0012 
0013 namespace Eigen 
0014 {
0015 /**
0016   * \defgroup Splines_Module Spline and spline fitting module
0017   *
0018   * This module provides a simple multi-dimensional spline class while
0019   * offering most basic functionality to fit a spline to point sets.
0020   *
0021   * \code
0022   * #include <unsupported/Eigen/Splines>
0023   * \endcode
0024   */
0025 }
0026 
0027 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
0028 
0029 #include "src/Splines/SplineFwd.h"
0030 #include "src/Splines/Spline.h"
0031 #include "src/Splines/SplineFitting.h"
0032 
0033 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
0034 
0035 #endif // EIGEN_SPLINES_MODULE_H