home *** CD-ROM | disk | FTP | other *** search
- /* program to test dmm elasticity */
- /* Chuck Wardin */
- /* note: a lot of hard coding of file names etc. */
- /* OK for testing ... not good for general use */
- waitforport dmm_rx
- our_address = address()
- address value dmm_rx
- say address()
- say "reading scene"
- /* trace !ALL */
- 'READ_SCENE scenes/key_slab_tilt'
- 'SET_OBJ 1 DYNO'
- do i = 0 to 20
- elast = i * 0.05;
- say "generating scene" i " .... wait"
- 'SET_OBJ 0 ELAST' elast
- 'SET_OBJ 1 ELAST' elast
- 'DYNO'
- say "writing scene file"
- 'WRITE_SCENE scenes/key_slab_tilt.rex'elast
- end
- trace off
- address
-
-