Create Revolution by anglesΒΆ

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
from salome.shaper import model

model.begin()
partSet = model.moduleDocument()
Part_1 = model.addPart(partSet)
Part_1_doc = Part_1.document()
Sketch_1 = model.addSketch(Part_1_doc, model.standardPlane("XOY"))
SketchCircle_1 = Sketch_1.addCircle(20, 20, 10)
model.do()
Revolution_1 = model.addRevolution(Part_1_doc,
                                   [model.selection("COMPOUND", "Sketch_1")],
                                   model.selection("EDGE", "PartSet/OY"),
                                   360,
                                   0)
model.do()
model.end()

Download this script