mirror of
https://github.com/ParticulateFlow/LPP.git
synced 2025-12-08 06:37:46 +00:00
add from __future__ import print statement -> print() function xrange -> range map() -> list(map()) range() -> list(range()) StandardError -> Exception
17 lines
255 B
Python
17 lines
255 B
Python
# simple test of vcr tool
|
|
|
|
d = dump("files/dump.micelle")
|
|
dt = data("files/data.micelle")
|
|
d.extra(dt)
|
|
g = gl(d)
|
|
g.rotate(0,270)
|
|
v = vcr(g)
|
|
v.q(10)
|
|
v.box()
|
|
v.axis()
|
|
v.clipxlo(0.2)
|
|
v.clipxhi(0.5)
|
|
v.play()
|
|
|
|
print("all done ... type CTRL-D to exit Pizza.py")
|