Bladeren bron

Fix inconsistent imports

Former-commit-id: 45417a4a8511a4df4689fd654c48c1dd7b48ca07
skoch 7 jaren geleden
bovenliggende
commit
4e63839b97
2 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 1 1
      python/py_igl.cpp
  2. 2 2
      python/python_shared.h

+ 1 - 1
python/py_igl.cpp

@@ -8,7 +8,7 @@
 #include <Eigen/Dense>
 #include <Eigen/Dense>
 
 
 #include "python_shared.h"
 #include "python_shared.h"
-#include "modules/py_typedefs.h"
+
 
 
 #include <igl/AABB.h>
 #include <igl/AABB.h>
 #include <igl/ARAPEnergyType.h>
 #include <igl/ARAPEnergyType.h>

+ 2 - 2
python/python_shared.h

@@ -13,10 +13,10 @@
 #include <pybind11/numpy.h>
 #include <pybind11/numpy.h>
 #include <pybind11/stl.h>
 #include <pybind11/stl.h>
 #include <pybind11/functional.h>
 #include <pybind11/functional.h>
-
+#include <Eigen/Dense>
 #include "py_doc.h"
 #include "py_doc.h"
+#include "modules/py_typedefs.h"
 
 
-#include <Eigen/Dense>
 
 
 template<typename Scalar>
 template<typename Scalar>
 void assert_is_VectorX(const std::string name, const Eigen::PlainObjectBase<Scalar>& v)
 void assert_is_VectorX(const std::string name, const Eigen::PlainObjectBase<Scalar>& v)