Compact Mesh

/**
 * Node that compacts mesh data by removing unused elements.
 * 
 * Cleans up vertex, edge, and triangle indices to create
 * a contiguous mesh structure.
 * 
 * Usage:
 * 1. Connect mesh input
 * 2. Output is the compacted mesh
 */

Last updated