This commit is contained in:
Janik Schlemminger
2014-03-27 16:46:34 +01:00
parent 034189b743
commit 32b11654ce

View 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();