We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d054d commit 27b04ecCopy full SHA for 27b04ec
Writers/PCROOT.cs
@@ -279,7 +279,6 @@ void IWriter.Save(int fileIndex)
279
usedGrid[index] = true;
280
281
//if (i < 3) Console.WriteLine("px: " + px + " py: " + py + " pz: " + pz + " index: " + index + " packx: " + packx + " packy: " + packy + " packz: " + packz);
282
-
283
}
284
285
if (useLossyFiltering == true)
@@ -325,7 +324,8 @@ void IWriter.Save(int fileIndex)
325
324
writerPoints.Close();
326
bsPoints.Dispose();
327
328
- if (importSettings.packColors == false || useLossyFiltering == false)
+ // NOTE useLossyFiltering is for testing only
+ if (importSettings.packColors == false && useLossyFiltering == false)
329
{
330
// save separate RGB
331
BufferedStream bsColors;
0 commit comments