]> SALOME platform Git repositories - modules/shaper.git/blob - src/BuildPlugin/doc/examples/interpolationAnalytical.py
Salome HOME
CEA : Lot1 - Interpolation
[modules/shaper.git] / src / BuildPlugin / doc / examples / interpolationAnalytical.py
1 from salome.shaper import model
2
3 model.begin()
4 partSet = model.moduleDocument()
5 Part_1 = model.addPart(partSet)
6 Part_1_doc = Part_1.document()
7 Interpolation_1 = model.addInterpolation(Part_1_doc, "5*sin(t)","5*cos(t)","t*0.2", 0, 25, 100)
8 model.do()
9 model.end()