diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-15 18:36:53 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-15 18:36:53 (GMT) |
commit | f97f0258a4c0f5876e3c02c5b46bfcf713c1e8b5 (patch) | |
tree | 68f869f0a6bf675e5f24e53cc87bc045d3481691 /dxfrotextrude.cc | |
parent | 71bc0ed97e431dbcfd407d985c866475552f735f (diff) |
Make CSG tree dumps more readable
git-svn-id: http://svn.clifford.at/openscad/trunk@320 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'dxfrotextrude.cc')
-rw-r--r-- | dxfrotextrude.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dxfrotextrude.cc b/dxfrotextrude.cc index c08577b..427bcb0 100644 --- a/dxfrotextrude.cc +++ b/dxfrotextrude.cc @@ -236,8 +236,8 @@ QString DxfRotateExtrudeNode::dump(QString indent) const memset(&st, 0, sizeof(struct stat)); stat(filename.toAscii().data(), &st); text.sprintf("rotate_extrude(file = \"%s\", cache = \"%x.%x\", layer = \"%s\", " - "origin = [ %f %f ], scale = %f, convexity = %d, " - "$fn = %f, $fa = %f, $fs = %f) {\n", + "origin = [ %g %g ], scale = %g, convexity = %d, " + "$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); |