Create Collinear constraintΒΆ
1 2 3 4 5 6 7 8 9 10 11 12 | 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(6, 25, 20, 40)
SketchLine_2 = Sketch_1.addLine(44, 26, 80, 61)
SketchConstraintCollinear_1 = Sketch_1.setCollinear(SketchLine_1.result(), SketchLine_2.result())
model.do()
model.end()
|