Create Fillet

 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(7, 46, 63, 20)
 9SketchLine_2 = Sketch_1.addLine(63, 20, 55, 85)
10SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
11Fillet_1 = Sketch_1.setFillet(SketchLine_1.endPoint())
12model.do()
13model.end()

Download this script