Create Collinear constraint
1from salome.shaper import model
2
3model.begin()
4partSet = model.moduleDocument()
5Part_1 = model.addPart(partSet)
6Part_1_doc = Part_1.document()
7Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
8SketchLine_1 = Sketch_1.addLine(6, 25, 20, 40)
9SketchLine_2 = Sketch_1.addLine(44, 26, 80, 61)
10SketchConstraintCollinear_1 = Sketch_1.setCollinear(SketchLine_1.result(), SketchLine_2.result())
11model.do()
12model.end()