Settings

The page will reload to apply your changes.
Theme

ASCII Art Font

ASCII Art Menu

Original Usenet message from alt.ascii-art.animation, 25 Mar 1994.
SLOWING DOWN ANIMATION

A while back someone posted a program for which can be used for slowing
down animations.  I have yet to try it so I cannot say one way or the 
other.  However, I have another program called slow_cat which is 
also used to slow down animations, but I haven't seen it work yet!!!!

Hopefully this one which I am reposting will do....

ENJOY!


PS... If you are interested in getting a copy of Slow_Cat you can E-Mail
me at loo...@cats.ucsc.edu.

Happy Animating 
Article 146 of alt.ascii-art.animation:
From: raj...@osc.edu (Raja Daoud)
Subject: Re: Slow down the animation
Date: 1 Mar 1994 17:37:04 -0500

lin...@training.asd.sgi.com (David Lindes) writes:
>unfortunately, on the system i'm currently on, i don't have usleep,
>or it's in a library other than what i'm compiling with, or
>something, [...]

If you're interested, you can roll your own usleep() using select():

#include <errno.h>
#include <sys/types.h>
#include <sys/time.h>

void
my_usleep(usec)

int                     usec;

{
        struct timeval  timeout;

        timeout.tv_sec = usec / 1000000;
        timeout.tv_usec = usec % 1000000;

        while ((select(0, (fd_set *) 0, (fd_set *) 0,
                (fd_set *) 0, &timeout) < 0) && (errno == EINTR));
}

Hope this helps.

--Raja


THERE YOU GO!

-- 

There is a destiny which makes us brothers;
  None goes his way alone.
All that we send into the lives of others,
  Comes back into our own.
                 
                    -EDWIN MARKHAM

Original message headers
X-Google-Language: ENGLISH,ASCII-7-bit
X-Google-Thread: fd588,fb19c49f0525ffdc,start
X-Google-Attributes: gidfd588,public
X-Google-ArrivalTime: 1994-03-25 13:57:44 PST
Path: gmd.de!xlink.net!howland.reston.ans.net!usc!nic-nac.CSU.net!newshub.sdsu.edu!darkstar.UCSC.EDU!cats.ucsc.edu!looster
From: loo...@cats.ucsc.edu (JASON LOO)
Newsgroups: alt.ascii-art.animation
Subject: SLOWING DOWN ANIMATION
Date: 25 Mar 1994 21:57:44 GMT
Organization: University of California; Santa Cruz
Lines: 62
Message-ID: <2mvmoo$lo...@darkstar.UCSC.EDU>
NNTP-Posting-Host: si.ucsc.edu
About this message. This message was posted publicly to the newsgroup alt.ascii-art.animation in 1994 and is mirrored here unchanged as part of the Historic Archives – only email addresses are masked. The artwork and text belong to their original authors: if you copy a piece, keep the artist's initials or signature intact and credit them where you can. Are you the author? Contact us to get your posts attributed, connected to your artist profile, or removed.

Report this message

Help us keep the archive clean and accurate. Reports are reviewed by a person – nothing is changed automatically.

Help classify this post