POV-Ray : Newsgroups : povray.newusers : animation question Server Time
6 Sep 2024 14:16:58 EDT (-0400)
  animation question (Message 1 to 4 of 4)  
From: James RIchard Oliver
Subject: animation question
Date: 11 May 1998 19:22:30
Message: <6j8fpr$6so$1@oz.aussie.org>
I am a newbie with what is probably a really stupid question. I would like
to make a text object spin in place. The way I have it written, though, it
disappears after my first frame never to reappear. Could someone enlighten
me?

The following is the relevant part of my file =====

text
{
  ttf          // font type (only TrueType format for now)
  "c:\windows\fonts\verdanab.ttf",  // Microsoft Windows-format TrueType
font file name
  "Hello",   // the string to create
  .75,           // the extrusion depth
  0            // offset
pigment {color Red} finish {metallic brilliance 1 refraction 1} scale .35
translate -.75*x translate 4*y translate -145*z
rotate 0*y
rotate <0,360*clock,0> }


==== Thanks in advance!

Richard Oliver


Post a reply to this message

From: Jerry Anning
Subject: Re: animation question
Date: 12 May 1998 02:05:55
Message: <3557E6C3.A2F1FEC7@dhol.com>
James RIchard Oliver wrote:
> 
> I am a newbie with what is probably a really stupid question. I would like
> to make a text object spin in place. The way I have it written, though, it
> disappears after my first frame never to reappear. Could someone enlighten
> me?
> 
> The following is the relevant part of my file =====
> 
> text
> {
>   ttf          // font type (only TrueType format for now)
>   "c:\windows\fonts\verdanab.ttf",  // Microsoft Windows-format TrueType
> font file name
>   "Hello",   // the string to create
>   .75,           // the extrusion depth
>   0            // offset
> pigment {color Red} finish {metallic brilliance 1 refraction 1} scale .35
> translate -.75*x translate 4*y translate -145*z
> rotate 0*y
> rotate <0,360*clock,0> }

For starters, rotate 0*y and refraction 1 are doing you no good. 
Instead of refraction 1, you may want reflection 1 (to turn the object
into a mirror).  Refraction has no effect if the color contains no
transparency.  What does your camera statement look like?  If you are
using standard POV orientation, translate -145*z may be putting the
object behind the camera unless it is really far back.  The real cause
of your problem, in all likelihood, is that you are doing
transformations in the wrong order.  Unless you know what you are doing
and want to move an object, the best order is scale, rotate, translate.
Rotate rotates the object about the point <0,0,0>.  If the object is not
centered at that point, it doesn't spin in place as you want, it
*orbits*.  With that large translation, even if your camera is well
back, even a small rotation may be taking the object out of view. 
Guessing that translate -.75*x is intended to center the text, the
sequence of transformations you probably want is:

scale .35
translate -.75*x
translate 4*y // since you are rotating around y, this is ok.
rotate <0, 360*clock, 0>
translate -145*x

If this doesn't solve the problem write me or repost and include info on
the location of lights and camera or, preferably, the whole file.

Jerry Anning
cle### [at] dholcom


Post a reply to this message

From: Jerry Anning
Subject: Re: animation question
Date: 12 May 1998 02:12:14
Message: <3557E83E.AD3D9552@dhol.com>
Jerry Anning wrote:

> scale .35
> translate -.75*x
> translate 4*y // since you are rotating around y, this is ok.
> rotate <0, 360*clock, 0>
> translate -145*x

Oops! Typo!  That should have been:

scale .35
translate 4*y
rotate <0, 360*clock, 0>
translate -145*z // <--z instead of x

Jerry Anning
cle### [at] dholcom


Post a reply to this message

From: Jerry Anning
Subject: Re: animation question
Date: 12 May 1998 02:14:58
Message: <3557E8E2.FA379E90@dhol.com>
Jerry Anning wrote:

> Oops! Typo!  That should have been:
> 
> scale .35
> translate 4*y
> rotate <0, 360*clock, 0>
> translate -145*z // <--z instead of x

Did it again!  Try:

scale .35
translate -.75*x // <-- left this out last time
translate 4*y
rotate <0, 360*clock, 0>
translate -145*z

Jerry Anning
cle### [at] dholcom


Post a reply to this message

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