Sketcher: addGeometry : Remove point construction limitation.
This commit is contained in:
committed by
Yorik van Havre
parent
f763fe5bf3
commit
e7ff71c20c
@@ -675,9 +675,9 @@ std::string PythonConverter::process(const Sketcher::Constraint* constraint, Geo
|
||||
|
||||
if (!constraint->isActive || !constraint->isDriving) {
|
||||
std::string active = constraint->isActive ? "True" : "False";
|
||||
std::string driving = constraint->isDriving ? "True" : "False";
|
||||
resultStr += ", " + active;
|
||||
if (constraint->isDimensional()) {
|
||||
std::string driving = constraint->isDriving ? "True" : "False";
|
||||
resultStr += ", " + driving;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user