Assimp |
UseSimpleTriangulation gets or sets a Boolean that specifies if simple triangle fan triangulation is used instead of standard triangulation.
Simple triangle fan triangulation is much faster, but can correctly triangulate only convex polygons. Standard triangulation is much slower but can triangulate convex and concave polygons.
This property is used only when the 3D model is not triangulated by assimp importer (when Triangulate PostProcessSteps is not used).
By default standard triangulation is used but if you know that the read models use only convex polygons, you can speed up reading 3D models with setting UseSimpleTriangulation to true.