diff options
| author | Bryan Galdrikian <[email protected]> | 2017-10-24 15:25:02 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2017-10-24 15:25:02 -0700 |
| commit | b0c11962f6012430da3bcaa2727288046b33d648 (patch) | |
| tree | cf13338fa4fd7072badf64f751f94abeeb437003 /sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h | |
| parent | linux build fix - all configs (diff) | |
| download | blast-b0c11962f6012430da3bcaa2727288046b33d648.tar.xz blast-b0c11962f6012430da3bcaa2727288046b33d648.zip | |
Changes for 1.1.1
See README.md
Diffstat (limited to 'sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h')
| -rw-r--r-- | sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h b/sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h index 9cdb6c2..b23ca18 100644 --- a/sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h +++ b/sdk/extensions/authoring/include/NvBlastExtAuthoringFractureTool.h @@ -92,7 +92,7 @@ struct SlicingConfiguration /** Cutting surface resolution. */ - int32_t surfaceResolution = 1; + uint32_t surfaceResolution = 1; }; @@ -355,6 +355,15 @@ public: \return true if mesh contains open edges */ virtual bool isMeshContainOpenEdges(const Mesh* input) = 0; + + /** + Delete all children for specified chunk (also recursively delete chidren of children). + \param[in] chunkId Chunk ID which children should be deleted + \return true if one or more chunks were removed + */ + virtual bool deleteAllChildrenOfChunk(int32_t chunkId) = 0; + + virtual void uniteChunks(uint32_t maxAtLevel, uint32_t maxGroupSize) = 0; }; } // namespace Blast |