#include "igl_inline.h"
#include <vector>
#include <Eigen/Core>
#include "sort.cpp"
Go to the source code of this file.
|
| template<typename DerivedX , typename DerivedY , typename DerivedIX > |
| IGL_INLINE void | igl::sort (const Eigen::DenseBase< DerivedX > &X, const int dim, const bool ascending, Eigen::PlainObjectBase< DerivedY > &Y, Eigen::PlainObjectBase< DerivedIX > &IX) |
| |
| template<typename DerivedX , typename DerivedY , typename DerivedIX > |
| IGL_INLINE void | igl::sort_new (const Eigen::DenseBase< DerivedX > &X, const int dim, const bool ascending, Eigen::PlainObjectBase< DerivedY > &Y, Eigen::PlainObjectBase< DerivedIX > &IX) |
| |
| template<typename DerivedX , typename DerivedY , typename DerivedIX > |
| IGL_INLINE void | igl::sort2 (const Eigen::DenseBase< DerivedX > &X, const int dim, const bool ascending, Eigen::PlainObjectBase< DerivedY > &Y, Eigen::PlainObjectBase< DerivedIX > &IX) |
| |
| template<typename DerivedX , typename DerivedY , typename DerivedIX > |
| IGL_INLINE void | igl::sort3 (const Eigen::DenseBase< DerivedX > &X, const int dim, const bool ascending, Eigen::PlainObjectBase< DerivedY > &Y, Eigen::PlainObjectBase< DerivedIX > &IX) |
| |
| template<class T > |
| IGL_INLINE void | igl::sort (const std::vector< T > &unsorted, const bool ascending, std::vector< T > &sorted, std::vector< size_t > &index_map) |
| |