POV-Ray : Newsgroups : povray.binaries.images : initial splash : Re: initial splash Server Time
2 Aug 2024 04:20:06 EDT (-0400)
  Re: initial splash  
From: alphaQuad
Date: 4 Dec 2007 09:35:00
Message: <web.47556561f4b3a06c619234250@news.povray.org>
"dlm" <me### [at] addressinvalid> wrote:
>Stiff cone not fall like natural skirt.

pick pick pick
the skirt is very flexable, she was hovering and flying backwards enough to
inflate the skirt. lol

Patch = <473cdb52@news.povray.org>
copiles no probs

Paul's source.zip also no probs, link to site:
<web.4724379617f999ac65f2686d0@news.povray.org>

next task: add Paul's remaining cams
to 1st compilation

QUESTION
just what installation does this script require, see attached img.

 and did I get the file right?
povdir\scripts\  ... right dir *.sh files?


Post_Frame_Command.sh
#!/bin/sh

# POV Post_Frame_Command script
#
# If using a sterescopic camera, make the anaglyph image from the left and
# right pairs.  Do this whether or not an animation is being rendered.
# Requires ImageMagick's 'composite' command.
#
# Usage: From a povray .INI file:
#
#   Post_Frame_Command="Post_Frame_Command.sh h=%h n=%n o='%o' s='%s' w=%w"
#

while [ $# -gt 0 ]
do
  case "$1" in
    [hnosw]=*)
      var=`expr "$1" : '\(.\)=.*$' | tr '[a-z]' '[A-Z]'`
      val="`expr "$1" : '.=\(.*\)$'`"
      eval $var=\"$val\"
      ;;
    *)
      echo Usage: $0 h=%h n=%n o=\'%o\' s=\'%s\' w=%w
      exit 1
      ;;
  esac
  shift
done

sfx="`expr "$O" : '.*\.\(.*\)$'`"

case "${N}-${O}" in
  0-${S}R.$sfx)
    # Stereo, no animation
    test -f "${S}L.$sfx" &&
      composite -depth 8 -stereo "${S}R.$sfx" "${S}L.$sfx" "${S}A.$sfx"
    ;;
  *-${S}R*.$sfx)
    # Stereo, animation frame
    digits=`expr "$O" : "${S}R\([0-9][0-9]*\)\."`
    test -f "${S}L${digits}.$sfx" &&
      composite -depth 8 -stereo "${S}R${digits}.$sfx" "${S}L${digits}.$sfx"
"${S}A${digits}.$sfx"
    ;;
esac

exit 0


Post a reply to this message


Attachments:
Download 'imagemagic.jpg' (68 KB)

Preview of image 'imagemagic.jpg'
imagemagic.jpg


 

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.