Navigation
API > API/Runtime > API/Runtime/Chaos > API/Runtime/Chaos/FTriangleMesh
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray< int32 > GetVertexImportanceOrdering
(
const TConstArrayView< FVec3 >& Points, |
Helper that generates point curvatures on the fly. | Chaos/TriangleMesh.h | |
TArray< int32 > GetVertexImportanceOrdering
(
const TConstArrayView< FVec3 >& Points, |
@ret An array of vertex indices ordered from most important to least. | Chaos/TriangleMesh.h |
GetVertexImportanceOrdering(const TConstArrayView< FVec3 > &, TArray< int32 > *, const bool)
Description
Helper that generates point curvatures on the fly.
| Name | GetVertexImportanceOrdering |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/TriangleMesh.h |
| Include Path | #include "Chaos/TriangleMesh.h" |
| Source | /Engine/Source/Runtime/Experimental/Chaos/Private/Chaos/TriangleMesh.cpp |
TArray < int32 > GetVertexImportanceOrdering
(
const TConstArrayView< FVec3 > & Points,
TArray < int32 > * CoincidentVertices,
const bool RestrictToLocalIndexRange
)
GetVertexImportanceOrdering(const TConstArrayView< FVec3 > &, const TArray< FReal > &, TArray< int32 > *, const bool)
Description
@ret An array of vertex indices ordered from most important to least.
| Name | GetVertexImportanceOrdering |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/TriangleMesh.h |
| Include Path | #include "Chaos/TriangleMesh.h" |
| Source | /Engine/Source/Runtime/Experimental/Chaos/Private/Chaos/TriangleMesh.cpp |
TArray < int32 > GetVertexImportanceOrdering
(
const TConstArrayView< FVec3 > & Points,
const TArray < FReal > & PointCurvatures,
TArray < int32 > * CoincidentVertices,
const bool RestrictToLocalIndexRange
)
Parameters
| Name | Remarks |
|---|---|
| Points | point positions. |
| PointCurvatures | a per-point measure of curvature. |
| CoincidentVertices | indices of points that are coincident to another point. |
| RestrictToLocalIndexRange | ignores points outside of the index range used by this mesh. |