From b12deeff5be0ce76af25d557480f29b0ed849dd6 Mon Sep 17 00:00:00 2001 From: kintel Date: Sun, 28 Feb 2010 03:21:53 +0000 Subject: dump() bugfix: and were mixed up in the output git-svn-id: http://svn.clifford.at/openscad/trunk@458 b57f626f-c46c-0410-a088-ec61d464b74c diff --git a/src/dxflinextrude.cc b/src/dxflinextrude.cc index 06874ce..83c3d9c 100644 --- a/src/dxflinextrude.cc +++ b/src/dxflinextrude.cc @@ -334,7 +334,7 @@ QString DxfLinearExtrudeNode::dump(QString indent) const text += t2; } QString t3; - t3.sprintf(", $fn = %g, $fa = %g, $fs = %g) {\n", fn, fs, fa); + t3.sprintf(", $fn = %g, $fa = %g, $fs = %g) {\n", fn, fa, fs); text += t3; foreach (AbstractNode *v, children) text += v->dump(indent + QString("\t")); diff --git a/src/dxfrotextrude.cc b/src/dxfrotextrude.cc index b9cbd3b..ea603f0 100644 --- a/src/dxfrotextrude.cc +++ b/src/dxfrotextrude.cc @@ -225,7 +225,7 @@ QString DxfRotateExtrudeNode::dump(QString indent) const "$fn = %g, $fa = %g, $fs = %g) {\n", filename.toAscii().data(), (int)st.st_mtime, (int)st.st_size, layername.toAscii().data(), origin_x, origin_y, scale, convexity, - fn, fs, fa); + fn, fa, fs); foreach (AbstractNode *v, children) text += v->dump(indent + QString("\t")); text += indent + "}\n"; diff --git a/src/import.cc b/src/import.cc index dbc67ad..bab13ae 100644 --- a/src/import.cc +++ b/src/import.cc @@ -225,7 +225,7 @@ QString ImportNode::dump(QString indent) const "$fn = %g, $fa = %g, $fs = %g);\n", filename.toAscii().data(), (int)st.st_mtime, (int)st.st_size, layername.toAscii().data(), origin_x, origin_y, scale, convexity, - fn, fs, fa); + fn, fa, fs); ((AbstractNode*)this)->dump_cache = indent + QString("n%1: ").arg(idx) + text; } return dump_cache; -- cgit v0.10.1