Translations:Frequently asked questions/73/it

From FreeCAD Documentation
Revision as of 16:23, 15 August 2022 by Simone.b (talk | contribs) (Created page with "{{code|code= obj = FreeCAD.ActiveDocument.Wire shp = obj.Shape print shp.Faces print shp.Wires if shp.Wires: for w in shp.Wires: print w.isClosed() }}")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
obj = FreeCAD.ActiveDocument.Wire
shp = obj.Shape
print shp.Faces
print shp.Wires
if shp.Wires:
    for w in shp.Wires:
        print w.isClosed()