|
2 | 2 | Tutorial |
3 | 3 | ******************************************************************************** |
4 | 4 |
|
5 | | -.. rst-class:: lead |
6 | | - |
7 | | -:mod:`compas_libigl` provides bindings for the libigl library. |
8 | | -It doesn't cover the entire library, but provides bindings for specific geometry processing functions. |
9 | | -The functions are organized into the following categories: |
10 | | - |
11 | | -Mesh Analysis |
12 | | -============= |
13 | | - |
14 | | -Boundaries and Intersections |
15 | | ----------------------------- |
16 | | - |
17 | | -* :func:`compas_libigl.trimesh_boundaries` - Compute boundary loops of a mesh |
18 | | -* :func:`compas_libigl.intersection_ray_mesh` - Compute intersection of a ray with a mesh |
19 | | -* :func:`compas_libigl.intersection_rays_mesh` - Compute intersections of multiple rays with a mesh |
20 | | - |
21 | | -Curvature Analysis |
22 | | ------------------- |
23 | | - |
24 | | -* :func:`compas_libigl.trimesh_gaussian_curvature` - Compute Gaussian curvature at vertices |
25 | | -* :func:`compas_libigl.trimesh_principal_curvature` - Compute principal curvatures and directions |
26 | | - |
27 | | -Geodesic Distances |
28 | | ------------------- |
29 | | - |
30 | | -* :func:`compas_libigl.trimesh_geodistance` - Compute geodesic distance from a source vertex |
31 | | -* :func:`compas_libigl.trimesh_geodistance_multiple` - Compute geodesic distances from multiple source vertices |
32 | | - |
33 | | -Mass Properties |
34 | | ---------------- |
35 | | - |
36 | | -* :func:`compas_libigl.trimesh_massmatrix` - Compute the mass matrix |
37 | | - |
38 | | -Mesh Processing |
39 | | -=============== |
40 | | - |
41 | | -Remeshing and Isolines |
42 | | ----------------------- |
43 | | - |
44 | | -* :func:`compas_libigl.trimesh_isolines` - Extract isolines from a scalar field |
45 | | -* :func:`compas_libigl.groupsort_isolines` - Sort and group isolines |
46 | | -* :func:`compas_libigl.trimesh_remesh_along_isoline` - Remesh along a single isoline |
47 | | -* :func:`compas_libigl.trimesh_remesh_along_isolines` - Remesh along multiple isolines |
48 | | - |
49 | | -Parameterization |
50 | | ----------------- |
51 | | - |
52 | | -* :func:`compas_libigl.trimesh_harmonic` - Compute harmonic parameterization |
53 | | -* :func:`compas_libigl.trimesh_lscm` - Compute least squares conformal mapping |
54 | | - |
55 | | -Mesh Optimization |
56 | | ------------------ |
57 | | - |
58 | | -* :func:`compas_libigl.quadmesh_planarize` - Planarize quad mesh faces |
59 | | - |
60 | | -Utilities |
61 | | -========= |
62 | | - |
63 | | -* :func:`compas_libigl.get` - Get sample geometry files |
64 | | -* :func:`compas_libigl.get_beetle` - Get the beetle mesh |
65 | | -* :func:`compas_libigl.get_armadillo` - Get the armadillo mesh |
66 | 5 |
|
67 | 6 | Input/Output |
68 | 7 | ============ |
|
0 commit comments