Files
LPP/examples/test_vcr.py
danielque 539fd060c2 python 3 compatibility for examples/*.py files
add from __future__ import
print statement -> print() function
xrange -> range
map() -> list(map())
range() -> list(range())
StandardError -> Exception
2023-08-10 13:25:36 +02:00

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")