|
@@ -19,7 +19,7 @@ template <
|
|
|
typename DerivedEMAP,
|
|
|
typename DerivedBE>
|
|
|
IGL_INLINE bool igl::is_edge_manifold(
|
|
|
- const Eigen::PlainObjectBase<DerivedF>& F,
|
|
|
+ const Eigen::MatrixBase<DerivedF>& F,
|
|
|
Eigen::PlainObjectBase<DerivedBF>& BF,
|
|
|
Eigen::PlainObjectBase<DerivedE>& E,
|
|
|
Eigen::PlainObjectBase<DerivedEMAP>& EMAP,
|
|
@@ -54,7 +54,7 @@ IGL_INLINE bool igl::is_edge_manifold(
|
|
|
|
|
|
template <typename DerivedF>
|
|
|
IGL_INLINE bool igl::is_edge_manifold(
|
|
|
- const Eigen::PlainObjectBase<DerivedF>& F)
|
|
|
+ const Eigen::MatrixBase<DerivedF>& F)
|
|
|
{
|
|
|
// TODO: It's bothersome that this is not calling/reusing the code from the
|
|
|
// overload above. This could result in disagreement.
|
|
@@ -96,9 +96,9 @@ IGL_INLINE bool igl::is_edge_manifold(
|
|
|
#ifdef IGL_STATIC_LIBRARY
|
|
|
// Explicit template instantiation
|
|
|
// generated by autoexplicit.sh
|
|
|
-template bool igl::is_edge_manifold<Eigen::Matrix<unsigned int, -1, -1, 1, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<unsigned int, -1, -1, 1, -1, -1> > const&);
|
|
|
+template bool igl::is_edge_manifold<Eigen::Matrix<unsigned int, -1, -1, 1, -1, -1> >(Eigen::MatrixBase<Eigen::Matrix<unsigned int, -1, -1, 1, -1, -1> > const&);
|
|
|
// generated by autoexplicit.sh
|
|
|
//template bool igl::is_edge_manifold<double>(Eigen::Matrix<double, -1, -1, 0, -1, -1> const&, Eigen::Matrix<int, -1, -1, 0, -1, -1> const&);
|
|
|
-template bool igl::is_edge_manifold<Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&);
|
|
|
-template bool igl::is_edge_manifold<Eigen::Matrix<int, -1, 3, 0, -1, 3> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 3, 0, -1, 3> > const&);
|
|
|
+template bool igl::is_edge_manifold<Eigen::Matrix<int, -1, -1, 0, -1, -1> >(Eigen::MatrixBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> > const&);
|
|
|
+template bool igl::is_edge_manifold<Eigen::Matrix<int, -1, 3, 0, -1, 3> >(Eigen::MatrixBase<Eigen::Matrix<int, -1, 3, 0, -1, 3> > const&);
|
|
|
#endif
|