Create Sketch LineΒΆ

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
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.defaultPlane("XOY"))
SketchLine_1 = Sketch_1.addLine(64.5, 87.9, -33.4, -42.6)
model.do()
model.end()

Download this script