| Geometry compression |
Sets the amount of compression in Composer files, which affects model tessellation quality.
-
Low (high quality) - 32 bytes/point, high measurement quality, large file
-
Medium - 16 bytes/point
-
High (low quality) - 8 bytes/point, low measurement quality, small file
The compression algorithm uses a bounding box defined by its coordinates: xmin, xmax, ymin, ymax, zmin, zmax. This bounding box is subdivided into a number of cubes according to the quality of compression selected:
- Low (high quality): 2^32 * 2^32 * 2^32
- Medium: 2^16 * 2^16 * 2^16
- High (low quality): 2^8 * 2^8 * 2^8
All tops (xi, yi, zi) of the triangulation are laid out on the tops of the cubes contained in the bounding box.
Notes:
When saving a file with medium or high compression, you should consider the following: - You cannot return to original quality. You must re-import your CAD files if you want to do so.
- Medium or high compression affects geometry precision. In the case of large parts where most of the precision is taken by the position of the object, little precision is left for elements such as small faces, lines or vertices.
- Medium or high compression might cause display issues (such as small holes visible in the mesh of a part, overlapping
faces, z-fight, appearance of undesired lines in technical
illustration, etc.) in vector output
generated by the Technical Illustration workshop.
To make it short, if geometry precision matters to you, it is recommended to use the Low (high quality) option.
|