Allow creating a datum plane tangential to a cylinder and parallel to another plane

This commit is contained in:
jrheinlaender
2013-06-19 12:23:18 +02:00
committed by Stefan Tröger
parent 2acb7a7950
commit be85d85800
4 changed files with 79 additions and 28 deletions

View File

@@ -184,6 +184,8 @@ const QString makeRefText(std::set<QString> hint)
tText = QObject::tr("Line");
else if (((*t) == QObject::tr("DPOINT")) || ((*t) == QObject::tr("Point")))
tText = QObject::tr("Point");
else if (((*t) == QObject::tr("DCYLINDER")) || ((*t) == QObject::tr("Cylinder")))
tText = QObject::tr("Cylinder");
else if ((*t) == QObject::tr("Done"))
tText = QObject::tr("Done");
result += QString::fromAscii(result.size() == 0 ? "" : "/") + tText;