Create Angle 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(55.1, 13.0, 6.42, 35.5)
SketchLine_2 = Sketch_1.addLine(50.2, 22.4, 36.8, 58.8)
SketchConstraintAngle_1 = Sketch_1.setAngle(SketchLine_2.result(), SketchLine_1.result(), 45)
model.do()
model.end()

Download this script