Subversion Repositories wimsdev

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14 reyssat 1
#! /bin/sh
2
 
3
# Transforms output from Pari to be used by POVRay.
4
# Except for the exponent format, everything should be dealt with by the Pari script.
5
 
6
# use `&' to separate the lines
7
 
8
pari_ray=yes
9
export pari_ray
10
bin/pari | tr 'K\n&' '_ \n' | sed -e 's/ E/e/g;s/E/e/g' >$tmp_dir/data.pov
11