You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm interested in calling this code from C++ code.
Could you please show a C++ coding example how to manually set and fill the vertices and faces variables?
I'm unfamiliar with Eigen library and how to initialize them remains unclear.
btw, this is a very obtuse way of storing and passing simple vector data.
Eigen::MatrixX3d vertices;
Eigen::MatrixX3i faces;
// how to fill vertices ??
// how to fill faces ??
vector<Eigen::VectorXi> boundary_loops;
boundary_loops = hole_filling_liepa::find_boundary_loops(faces);
Eigen::MatrixX3i area_patch;
area_patch = hole_filling_liepa::fill_hole_liepa(vertices, faces, boundary_loops[0], "area" );
The text was updated successfully, but these errors were encountered:
I'm interested in calling this code from C++ code.
Could you please show a C++ coding example how to manually set and fill the vertices and faces variables?
I'm unfamiliar with Eigen library and how to initialize them remains unclear.
btw, this is a very obtuse way of storing and passing simple vector data.
The text was updated successfully, but these errors were encountered: