diff options
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")); |