123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #ifndef IGL_POINT_SIMPLEX_SQUARED_DISTANCE_H
- #define IGL_POINT_SIMPLEX_SQUARED_DISTANCE_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
- template <
- int DIM,
- typename Derivedp,
- typename DerivedV,
- typename DerivedEle,
- typename Derivedsqr_d,
- typename Derivedc>
- IGL_INLINE void point_simplex_squared_distance(
- const Eigen::MatrixBase<Derivedp> & p,
- const Eigen::MatrixBase<DerivedV> & V,
- const Eigen::MatrixBase<DerivedEle> & Ele,
- const typename DerivedEle::Index i,
- Derivedsqr_d & sqr_d,
- Eigen::MatrixBase<Derivedc> & c);
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <
- int DIM,
- typename Derivedp,
- typename DerivedV,
- typename DerivedEle,
- typename Derivedsqr_d,
- typename Derivedc,
- typename Derivedb>
- IGL_INLINE void point_simplex_squared_distance(
- const Eigen::MatrixBase<Derivedp> & p,
- const Eigen::MatrixBase<DerivedV> & V,
- const Eigen::MatrixBase<DerivedEle> & Ele,
- const typename DerivedEle::Index i,
- Derivedsqr_d & sqr_d,
- Eigen::MatrixBase<Derivedc> & c,
- Eigen::PlainObjectBase<Derivedb> & b);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "point_simplex_squared_distance.cpp"
- #endif
- #endif
|