Added further python bindings, extended py_vector slightly

Former-commit-id: 13e300c8a9
This commit is contained in:
Sebastian Koch
2016-05-20 20:18:29 +02:00
parent 94b7d07f84
commit 39ade1009b
18 changed files with 582 additions and 2 deletions
+28
View File
@@ -49,6 +49,20 @@
#include <igl/comb_frame_field.h>
#include <igl/n_polyvector.h>
#include <igl/point_mesh_squared_distance.h>
#include <igl/AABB.h>
#include <igl/readMESH.h>
#include <igl/writeMESH.h>
#include <igl/slice_tets.h>
#include <igl/edge_lengths.h>
#include <igl/upsample.h>
#include <igl/cat.h>
#include <igl/per_edge_normals.h>
#include <igl/barycentric_coordinates.h>
#include <igl/fit_rotations.h>
#include <igl/polar_svd.h>
#include <igl/covariance_scatter_matrix.h>
void python_export_igl(py::module &m)
{
@@ -99,4 +113,18 @@ void python_export_igl(py::module &m)
#include "py_igl/py_comb_frame_field.cpp"
#include "py_igl/py_n_polyvector.cpp"
#include "py_igl/py_point_mesh_squared_distance.cpp"
#include "py_igl/py_AABB.cpp"
#include "py_igl/py_readMESH.cpp"
#include "py_igl/py_writeMESH.cpp"
#include "py_igl/py_slice_tets.cpp"
#include "py_igl/py_edge_lengths.cpp"
#include "py_igl/py_upsample.cpp"
#include "py_igl/py_cat.cpp"
#include "py_igl/py_per_edge_normals.cpp"
#include "py_igl/py_barycentric_coordinates.cpp"
#include "py_igl/py_fit_rotations.cpp"
#include "py_igl/py_polar_svd.cpp"
#include "py_igl/py_covariance_scatter_matrix.cpp"
}