ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
group
/
trunk
/
xyz2pov
/
scripts
/
renderRange
Revision:
651
Committed:
Thu Jul 24 20:40:00 2003 UTC
(21 years, 9 months ago) by
mmeineke
File size:
267 byte(s)
Log Message:
rewrote the makefiles a little to install two scripts for rendering
File Contents
#
Content
1
#!/bin/bash
2
3
mkdir -p anim
4
for povScript in ./pov/${1}*.pov
5
do
6
povName=`basename $povScript`
7
pictName=./anim/${povName%.pov}.png
8
9
echo "x-povray +I${povScript} +O${pictName} +W800 +H600 +FN -D"
10
x-povray +I${povScript} +O${pictName} +W800 +H600 +FN -D
11
12
done