diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-01 15:03:34 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-01 15:03:34 (GMT) |
commit | 6041c34f0b458b3cb791a0e15b0f01bf3142981c (patch) | |
tree | 02236427fa8e073f81eb47b1c3a61cb92b945b1a /src/import.cc | |
parent | fee63ab7aec661ea3fe5890e79df752f1af10690 (diff) |
Refactored some non-CGAL functionality into separate functions in PolySetCGALEvaluator
Diffstat (limited to 'src/import.cc')
-rw-r--r-- | src/import.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import.cc b/src/import.cc index 7435d4d..737ab31 100644 --- a/src/import.cc +++ b/src/import.cc @@ -198,7 +198,7 @@ PolySet *ImportNode::evaluate_polyset(render_mode_e, class PolySetEvaluator *) c { DxfData dd(this->fn, this->fs, this->fa, this->filename, this->layername, this->origin_x, this->origin_y, this->scale); p->is2d = true; - dxf_tesselate(p, &dd, 0, true, false, 0); + dxf_tesselate(p, dd, 0, true, false, 0); dxf_border_to_ps(p, &dd); } |