mirror of
https://github.com/ParticulateFlow/LPP.git
synced 2025-12-08 06:37:46 +00:00
18 lines
287 B
Python
18 lines
287 B
Python
# simple test of vcr tool
|
|
# requires files/bucky*png files
|
|
|
|
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"
|