Skip to content

Commit

Permalink
ENH: Fixes high memory consumption in SurfaceNets Filter (#1156)
Browse files Browse the repository at this point in the history
* DOC: Fixes incorrect human name for QuickMesh filter
* MEM: Reduces memory usage for SurfaceNets filter
* SPELL: Fixes misspellings in human facing error messages.
* Reduced memory usage of SurfaceNets algorithm which uses MMCellFlag
* Changed constants to class static variables
* Removed unneeded virtual

Signed-off-by: Jared Duffey <[email protected]>
* General code cleanup of MMCellFlag
* The number of junctions can be at most 6 so it can be stored in 3 bits
and m_BitFlag has enough unused bits at the end to accommodate it

Signed-off-by: Jared Duffey <[email protected]>

---------

Signed-off-by: Michael Jackson <[email protected]>
Signed-off-by: Jared Duffey <[email protected]>
Co-authored-by: Jared Duffey <[email protected]>
  • Loading branch information
imikejackson and JDuffeyBQ authored Dec 10, 2024
1 parent 2ba7962 commit 86bb252
Show file tree
Hide file tree
Showing 6 changed files with 225 additions and 229 deletions.
2 changes: 1 addition & 1 deletion src/Plugins/SimplnxCore/docs/QuickSurfaceMeshFilter.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Create Surface Mesh (QuickMesh Nets)
# Create Surface Mesh (QuickMesh)

## Group (Subgroup)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Uuid QuickSurfaceMeshFilter::uuid() const
//------------------------------------------------------------------------------
std::string QuickSurfaceMeshFilter::humanName() const
{
return "Create Surface Mesh (QuickMesh Nets)";
return "Create Surface Mesh (QuickMesh)";
}

//------------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit 86bb252

Please sign in to comment.