Sketcher: Hyperbola added supported type

========================================

Allows to restore a saved hyperbola in a sketch.
This commit is contained in:
Abdullah Tahiri 2016-09-11 00:02:07 +02:00 committed by wmayer
parent 1c77657354
commit 8bba2427c3

View File

@ -559,6 +559,7 @@ bool SketchObject::isSupportedGeometry(const Part::Geometry *geo) const
geo->getTypeId() == Part::GeomEllipse::getClassTypeId() ||
geo->getTypeId() == Part::GeomArcOfCircle::getClassTypeId() ||
geo->getTypeId() == Part::GeomArcOfEllipse::getClassTypeId() ||
geo->getTypeId() == Part::GeomArcOfHyperbola::getClassTypeId() ||
geo->getTypeId() == Part::GeomLineSegment::getClassTypeId()) {
return true;
}