Create Box coordinates of a point and dimensions

1from salome.shaper import model
2
3model.begin()
4partSet = model.moduleDocument()
5Part_1 = model.addPart(partSet)
6Part_1_doc = Part_1.document()
7Box_1 = model.addBox(Part_1_doc, 0, 0, 0, 20, 20, 20)
8model.do()
9model.end()

Download this script