diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-06 09:21:40 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-06 09:21:40 (GMT) |
commit | 6575732286d3f8909972d3705b748c6cfc02f8a8 (patch) | |
tree | 04ce107fa4c9e81aefc704ea47e90a040540582a /openscad.h | |
parent | 73e84ec660737616a22f5e8edbe95a69d2652c99 (diff) |
Clifford Wolf:
Fixed inner-borders-bug in 2d visualization
(symptom: rendering artefacts even with higher
convexity setting as it should be needed)
git-svn-id: http://svn.clifford.at/openscad/trunk@214 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'openscad.h')
-rw-r--r-- | openscad.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -521,6 +521,7 @@ public: }; typedef QList<Point> Polygon; QVector<Polygon> polygons; + QVector<Polygon> borders; Grid3d<void*> grid; bool is2d; @@ -688,6 +689,7 @@ void progress_report_prep(AbstractNode *root, void (*f)(const class AbstractNode void progress_report_fin(); void dxf_tesselate(PolySet *ps, DxfData *dxf, double rot, bool up, double h); +void dxf_border_to_ps(PolySet *ps, DxfData *dxf); #endif /* INCLUDE_ABSTRACT_NODE_DETAILS */ |