Files
DRAMSys/dram/resources/scripts/sampleStlGeneration.py
Janik Schlemminger 32b11654ce traces
2014-03-27 16:46:34 +01:00

19 lines
376 B
Python

import stlGenerator
stlGenerator = stlGenerator.StlGenerator()
def simple_frfcfs():
stlGenerator.clear()
stlGenerator.addAction(0, 0)
stlGenerator.addAction(0, 1)
stlGenerator.addAction(0, 0)
stlGenerator.addAction(0, 1)
stlGenerator.addAction(0, 0)
stlGenerator.addAction(0, 1)
stlGenerator.generateStl('test2.stl')
if __name__ == '__main__':
simple_frfcfs();