traces
This commit is contained in:
18
dram/resources/scripts/sampleStlGeneration.py
Normal file
18
dram/resources/scripts/sampleStlGeneration.py
Normal file
@@ -0,0 +1,18 @@
|
||||
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();
|
||||
Reference in New Issue
Block a user