You are reporting Why are 2D shapes previewed as being 3D? as a violation of the Thingiverse Terms of Service.
I have read the Thingiverse Terms of service and I understand that falsely reporting violations can result in a ban from Thingiverse.
Thank you for taking the time to bring this matter to You are reporting Why are 2D shapes previewed as being 3D? as a violation of the Thingiverse Terms of Service. Thank you for taking the time to bring this matter to our attention. To help our team best respond to this issue please take a few moments to describe what brought this matter to your attention.
Actually OpenCSG can indeed render a 0 thickness shape, if you use the polyhedron function to define just one face. For example:
polyhedron( points=[ [10,10,0], [10,-10,0], [-10,-10,0], [-10,10,0] ], faces=[ [0,1,2,3] ]);
That gives you a square of zero thickness. Change one of the Z values above from 0 to something else and you get two connected triangles of zero thickness.
Actually OpenCSG can indeed render a 0 thickness shape, if you use the polyhedron function to define just one face. For example:
polyhedron( points=[ [10,10,0], [10,-10,0], [-10,-10,0], [-10,10,0] ], faces=[ [0,1,2,3] ]);
That gives you a square of zero thickness. Change one of the Z values above from 0 to something else and you get two connected triangles of zero thickness.