Merge remote-tracking branch 'upstream/master'

Former-commit-id: 231b465472
This commit is contained in:
Guillermo Lomas Rodríguez
2016-10-20 11:40:26 +02:00
94 changed files with 4115 additions and 234 deletions
+28 -9
View File
@@ -30,12 +30,16 @@ extern void python_export_igl_triangle(py::module &);
extern void python_export_igl_cgal(py::module &);
#endif
#ifdef PY_COPYLEFT
extern void python_export_igl_copyleft(py::module &);
#endif
#ifdef PY_PNG
extern void python_export_igl_png(py::module &);
#endif
#ifdef PY_COPYLEFT
extern void python_export_igl_copyleft(py::module &);
#ifdef PY_BBW
extern void python_export_igl_bbw(py::module &);
#endif
PYBIND11_PLUGIN(pyigl) {
@@ -58,17 +62,20 @@ PYBIND11_PLUGIN(pyigl) {
barycenter
barycentric_coordinates
barycentric_to_global
bbw_bbw
boundary_conditions
boundary_facets
boundary_loop
cat
collapse_edge
colon
column_to_quats
comb_cross_field
comb_frame_field
compute_frame_field_bisectors
copyleft_cgal_RemeshSelfIntersectionsParam
copyleft_cgal_mesh_boolean
copyleft_cgal_remesh_self_intersections
copyleft_cgal_RemeshSelfIntersectionsParam
copyleft_comiso_miq
copyleft_comiso_nrosy
copyleft_marching_cubes
@@ -78,7 +85,11 @@ PYBIND11_PLUGIN(pyigl) {
covariance_scatter_matrix
cross_field_missmatch
cut_mesh_from_singularities
deform_skeleton
directed_edge_orientations
directed_edge_parents
doublearea
dqs
edge_lengths
edge_topology
eigs
@@ -87,6 +98,7 @@ PYBIND11_PLUGIN(pyigl) {
find_cross_field_singularities
fit_rotations
floor
forward_kinematics
gaussian_curvature
get_seconds
grad
@@ -96,12 +108,15 @@ PYBIND11_PLUGIN(pyigl) {
invert_diag
is_irregular_vertex
jet
lbs_matrix
local_basis
lscm
map_vertices_to_circle
massmatrix
min_quad_with_fixed
n_polyvector
normalize_row_lengths
normalize_row_sums
parula
per_corner_normals
per_edge_normals
@@ -119,6 +134,7 @@ PYBIND11_PLUGIN(pyigl) {
readMESH
readOBJ
readOFF
readTGF
read_triangle_mesh
remove_duplicate_vertices
rotate_vectors
@@ -129,8 +145,7 @@ PYBIND11_PLUGIN(pyigl) {
slice_mask
slice_tets
sortrows
streamlines_init
streamlines_next
streamlines
triangle_triangle_adjacency
triangle_triangulate
unique
@@ -170,13 +185,17 @@ PYBIND11_PLUGIN(pyigl) {
python_export_igl_cgal(m);
#endif
#ifdef PY_PNG
python_export_igl_png(m);
#endif
#ifdef PY_COPYLEFT
python_export_igl_copyleft(m);
#endif
#ifdef PY_PNG
python_export_igl_png(m);
#endif
#ifdef PY_BBW
python_export_igl_bbw(m);
#endif
return m.ptr();
}