Maxime Chauvin

Results 9 comments of Maxime Chauvin

A solution could be: ``` var dims = { min: { x: Infinity, y: Infinity, z: Infinity }, max: { x: -Infinity, y: -Infinity, z: -Infinity } }; ```

I'm not sure since I don't understand what is pointRangeScale (or angleScale) and the global constant E57_NOT_SCALED_USE_FLOAT. I just saw that in my case the condition as it is written:...

Ah ah sorry I didn't give enough context maybe ^^ I use libE57Format as a library in another project so I was hoping using the class e57::Data3DPointsData_d with e57::Writer from...

I never use `PointStandardizedFieldsAvailable` nor `pointRangeScaledInteger`. I only use ``` // Instantiate reader and writer object e57::Reader eReader(readFilePath); e57::Writer eWriter(writeFilePath); ... int64_t writeScanIndex = eWriter.NewData3D(readScanHeader); ... e57::Data3DPointsData_d readBuffer3dData; readBuffer3dData.cartesianX =...

Oh ok, I will have to look into this. But it is strange since I use the same scan header as the original file which contains double precision positions for...

Oh thank you for this feedback, it looks more complex than I thought initially. I will try what you suggest, thanks a lot! And good luck if you find the...

Thanks @asmaloney ! I was out for a few days so I didn't check yet, I will do it now.

I just tried and your changes to master fixed it for my test case! Hopefully for others too. Thank you so much!