diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-24 10:59:15 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-24 10:59:15 (GMT) |
commit | ba42e6c30be19004f0c4351f51005bc5e5dabdca (patch) | |
tree | 718836294c363f8b31e806954f252933a9871795 /trans.cc | |
parent | 12e8d77bc0e4a059feb0ead66de0a04a71fb8d67 (diff) |
Clifford Wolf:
Preps for OpenCSG interface
Invented AbstractPolyNode
git-svn-id: http://svn.clifford.at/openscad/trunk@15 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'trans.cc')
-rw-r--r-- | trans.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ CGAL_Nef_polyhedron TransNode::render_cgal_nef_polyhedron() const QString TransNode::dump(QString indent) const { QString text; - text.sprintf("trans([%f %f %f])", x, y, z); + text.sprintf("n%d: trans([%f %f %f])", idx, x, y, z); text = indent + text + " {\n"; foreach (AbstractNode *v, children) text += v->dump(indent + QString("\t")); |