cgal/Point_set_processing_3
Laurent Rineau 3668ca16b2 Fix test_read_write_point_set
The LAS format, even binary, is not an exact representation.
The coordinates are encoded using and offset and a scaling, for each
coordinate.

In `write_LAS_with_properties()`, Simon has hard-coded:
```
  LASheader header;
  header.x_scale_factor = 1e-9 * (bbox.xmax() - bbox.xmin());
  header.y_scale_factor = 1e-9 * (bbox.ymax() - bbox.ymin());
  header.z_scale_factor = 1e-9 * (bbox.zmax() - bbox.zmin());
  header.x_offset = bbox.xmin();
  header.y_offset = bbox.ymin();
  header.z_offset = bbox.zmin();
```
So, the approximate comparison of coordinates, for the I/O test,
should compare using about the same precision.
2022-08-17 17:21:05 +02:00
..
doc/Point_set_processing_3 Merge remote-tracking branch 'cgal/master' into HEAD 2022-01-18 09:11:52 +01:00
examples/Point_set_processing_3 Fix a CMake bad code 2022-06-20 09:55:12 +02:00
include/CGAL Merge pull request #6665 from sloriot/CGAL-std_type_traits 2022-08-17 13:56:54 +02:00
package_info/Point_set_processing_3 remove artificial dependency to Polygon 2021-09-01 16:41:36 +02:00
test/Point_set_processing_3 Fix test_read_write_point_set 2022-08-17 17:21:05 +02:00