| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | """Provides the object code for the Circle object.""" |
| | |
| | |
| | |
| |
|
| | |
| | |
| | from PySide.QtCore import QT_TRANSLATE_NOOP |
| |
|
| | import FreeCAD as App |
| | from draftobjects.base import DraftObject |
| | from draftutils import gui_utils |
| | from draftutils import params |
| |
|
| |
|
| | class Circle(DraftObject): |
| | """The Circle object""" |
| |
|
| | def __init__(self, obj): |
| | super().__init__(obj, "Circle") |
| |
|
| | _tip = QT_TRANSLATE_NOOP("App::Property", "Start angle of the arc") |
| | obj.addProperty("App::PropertyAngle", "FirstAngle", "Draft", _tip, locked=True) |
| |
|
| | _tip = QT_TRANSLATE_NOOP( |
| | "App::Property", |
| | "End angle of the arc (for a full circle, \ |
| | give it same value as First Angle)", |
| | ) |
| | obj.addProperty("App::PropertyAngle", "LastAngle", "Draft", _tip, locked=True) |
| |
|
| | _tip = QT_TRANSLATE_NOOP("App::Property", "Radius of the circle") |
| | obj.addProperty("App::PropertyLength", "Radius", "Draft", _tip, locked=True) |
| |
|
| | _tip = QT_TRANSLATE_NOOP("App::Property", "Create a face") |
| | obj.addProperty("App::PropertyBool", "MakeFace", "Draft", _tip, locked=True) |
| |
|
| | _tip = QT_TRANSLATE_NOOP("App::Property", "The area of this object") |
| | obj.addProperty("App::PropertyArea", "Area", "Draft", _tip, locked=True) |
| |
|
| | obj.MakeFace = params.get_param("MakeFaceMode") |
| |
|
| | def onDocumentRestored(self, obj): |
| | super().onDocumentRestored(obj) |
| | gui_utils.restore_view_object(obj, vp_module="view_base", vp_class="ViewProviderDraft") |
| |
|
| | def execute(self, obj): |
| | """This method is run when the object is created or recomputed.""" |
| | if self.props_changed_placement_only(): |
| | obj.positionBySupport() |
| | self.props_changed_clear() |
| | return |
| |
|
| | import Part |
| |
|
| | plm = obj.Placement |
| |
|
| | shape = Part.makeCircle( |
| | obj.Radius.Value, |
| | App.Vector(0, 0, 0), |
| | App.Vector(0, 0, 1), |
| | obj.FirstAngle.Value, |
| | obj.LastAngle.Value, |
| | ) |
| |
|
| | if obj.FirstAngle.Value == obj.LastAngle.Value: |
| | shape = Part.Wire(shape) |
| | if getattr(obj, "MakeFace", True): |
| | shape = Part.Face(shape) |
| |
|
| | obj.Shape = shape |
| |
|
| | if hasattr(obj, "Area") and hasattr(shape, "Area"): |
| | obj.Area = shape.Area |
| |
|
| | obj.Placement = plm |
| | obj.positionBySupport() |
| | self.props_changed_clear() |
| |
|
| | def onChanged(self, obj, prop): |
| | self.props_changed_store(prop) |
| |
|
| |
|
| | |
| | _Circle = Circle |
| |
|
| | |
| |
|