Mesh Simplification

Mesh Simplification

There’s a tool we offer as part of the Advanced Geometry Processing add-on called Mesh Simplification. It allows lowering the density of the original mesh by collapsing edges, preserving the major geometrical features of the mesh. It reduces the triangle count of the polygonal representation while maintaining the visual appearance. This process is also known as mesh decimation.

Note: this tool only works on the triangle sets and ignores the rest of the polygonal shapes (polylines and polypoints).

For more detailed information please refer to Mesh Decimation article in our documentation.

    • Related Articles

    • BRep Simplification

      B-Rep simplification is tool of Advanced Geometry Processing add-on that simplifies the geometry of B-Rep and mixed (B-Rep and polygonal) models. Features it can affect include holes, small bodies, internal non-visible faces and bodies, and also ...
    • Mesh generation

      CAD Exchanger Lab can generate Polygonal representations (Meshes) of different densities based on Boundary representations (B-Rep). Open Representations and click Add mesh to start Mesh generation.
    • How to simplify models in CAD Exchanger SDK

      1. If your model contains B-Rep data, you can generate a mesh representation using ModelAlgo_BRepMesher. Setting different ModelAlgo_BRepMesherParameters will result in different output quality. See our ready-made Visualization Mesher Example and ...
    • How to generate meshes for Finite Element Analisys (FEA) in CAD Exchanger SDK

      CAD Exchanger SDK includes Computational Meshers intended for FEA mesh generation out of BReps (Boundary Representations). See our ready-made Netgen Mesher Example and Mefisto Mesher Example. The time it will take for the algorithm to complete ...
    • How to measure distance between Shapes, lengths of Edges and surface area in Web Toolkit

      To measure the minimal distance between two selected Shapes, use createDistanceFromShapes method of ModelPrs_MeasurementFactory class. To measure the length of an Edge, use computeEdgeLength method of ModelAlgo_CurveLength class. It will be computed ...