diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-28 12:29:58 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-28 12:29:58 (GMT) |
commit | 7da5706088cecad98dec189328204dfe25d29747 (patch) | |
tree | 19e5f9a3079ccf544db067d6369d1b27f923c3ec /dxflinextrude.cc | |
parent | 91be6f762e6333c44b9e88b1f93c5e1c0049db0e (diff) |
Clifford Wolf:
Added support for reading DXF blocks
git-svn-id: http://svn.clifford.at/openscad/trunk@123 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'dxflinextrude.cc')
-rw-r--r-- | dxflinextrude.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dxflinextrude.cc b/dxflinextrude.cc index 4f2b0c4..cf3e52d 100644 --- a/dxflinextrude.cc +++ b/dxflinextrude.cc @@ -236,10 +236,10 @@ QString DxfLinearExtrudeNode::dump(QString indent) const memset(&st, 0, sizeof(struct stat)); stat(filename.toAscii().data(), &st); text.sprintf("dxf_linear_extrude(file = \"%s\", cache = \"%x.%x\", layer = \"%s\", " - "height = %f, origin = [ %f %f ], scale = %f, center = %s", + "height = %f, origin = [ %f %f ], scale = %f, center = %s, convexity = %d", filename.toAscii().data(), (int)st.st_mtime, (int)st.st_size, layername.toAscii().data(), height, origin_x, origin_y, scale, - center ? "true" : "false"); + center ? "true" : "false", convexity); if (has_twist) { QString t2; t2.sprintf(", twist = %f, slices = %d", twist, slices); |