|
Lagrange
|
Result of a point-to-point geodesic path computation. More...
#include <lagrange/geodesic/GeodesicEngine.h>
Public Attributes | |
| std::vector< std::array< Scalar, 3 > > | points |
| Ordered list of 3D points along the geodesic path from source to target. | |
| std::vector< Index > | facet_ids |
| Facet index for each path segment. | |
Result of a point-to-point geodesic path computation.
| Scalar | Mesh scalar type. |
| Index | Mesh index type. |
Ordered list of 3D points along the geodesic path from source to target.
The first point is the source and the last point is the target.
| std::vector<Index> facet_ids |
Facet index for each path segment.
The i-th entry is the facet that the segment from points[i] to points[i+1] lies in. The size of this vector is points.size() - 1, or 0 if the path is empty.