Sponsored Content
Full Discussion: 3d animation
Special Forums UNIX Desktop Questions & Answers 3d animation Post 15708 by aloysius1001 on Monday 18th of February 2002 10:46:39 PM
Old 02-18-2002
3d animation

What are the benefits to using UNIX for 3d animation. I am looking into the field, and most places require a strong background in UNIX. Why is this?
 

8 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Graphics And Animation

DOES ANYBODY KNOW WHY C OR ANY OTHER UNIX LANGUAGE IS USED IN THREE DIMENSIONAL ANIMATION AND RENDERING (5 Replies)
Discussion started by: aloysius1001
5 Replies

2. What is on Your Mind?

unix.com Flash animation

I realy Love the look of the Flash animation at top of the forum, very sweet. But it uses all of my cpu power :( even winamp starts getting little skips. Then i have to scroll down and hide the nice animation :( Maybe someone could try to tune it a little bit. Thats on a 1,6 Ghz... (0 Replies)
Discussion started by: Lazzar
0 Replies

3. UNIX for Dummies Questions & Answers

script animation

I have read hundreds of the postings and cannot find the answer to my question...so I hope that someone is able to answer it for me. I am writing a script in bash, and would like to add animation. I have a gif file that I would like to open and have displayed on the screen. Can this be done? Of... (0 Replies)
Discussion started by: debit
0 Replies

4. Shell Programming and Scripting

Shell Script Animation

Hi, I want to write a shell script which can do some animation The animation is as follows it is like a progress barwhich hould gone on inresing with time & at the end of the line there should be the progess Eg == - 10%... (2 Replies)
Discussion started by: wojtyla
2 Replies

5. Shell Programming and Scripting

Gnuplot shell script controlled animation

Hi, I am looking for basic shell script to feed Gnuplot with live data, to arrange basic animation. I mean one-liner one variable real function. Any idea or experiences from the past, generating Gnuplot animation on dumb terminal (ASCII only) ? Or please refer me to a nice web site. ... (7 Replies)
Discussion started by: darius2
7 Replies

6. Shell Programming and Scripting

While loop animation

This is just for fun but i can't work it out I want to animate this dotted line in a shell script. .................................................................................. I want it to start at one dot like this . and end up printing them all. I think I need a while loop... (5 Replies)
Discussion started by: digitalviking
5 Replies

7. What is on Your Mind?

Forum Description Animation with jQuery

I found that the pages that lists all the forums were too cluttered with the forum descriptions, so I added a bit of jQuery to hide the forum descriptions and to fade them in and out on mouseover: <script> $(document).ready(function() { jQuery(".neo-forum-description").hide();... (2 Replies)
Discussion started by: Neo
2 Replies

8. What is on Your Mind?

Forum Display - Thread Preview Text Animation

Instead of the slow and not readable tooltips with the preview of the thread content in forum view, I have added the preview with mouseover (see attached movie). Let me know if you want a different kind of preview (animation, duration font-color, size, etc,) Thanks. <script>... (29 Replies)
Discussion started by: Neo
29 Replies
Prima::Image::AnimateGIF(3)				User Contributed Perl Documentation			       Prima::Image::AnimateGIF(3)

NAME
Prima::Image::AnimateGIF - animate gif files DESCRIPTION
The module provides high-level access to GIF animation sequences. SYNOPSIS
use Prima qw(Application Image::AnimateGIF); my $x = Prima::Image::AnimateGIF->load($ARGV[0]); die $@ unless $x; my ( $X, $Y) = ( 0, 100); my $background = $::application-> get_image( $X, $Y, $x-> size); $::application-> begin_paint; while ( my $info = $x-> next) { my $frame = $background-> dup; $frame-> begin_paint; $x-> draw( $frame, 0, 0); $::application-> put_image( $X, $Y, $frame); $::application-> sync; select(undef, undef, undef, $info-> {delay}); } $::application-> put_image( $X, $Y, $g); new $CLASS, %OPTIONS Creates an empty animation container. If $OPTIONS{images} is given, it is expected to be an array of images, best if loaded from gif files with "loadExtras" and "iconUnmask" parameters set ( see Prima::image-load for details). load $SOURCE, %OPTIONS Loads GIF animation sequence from file or stream $SOURCE. Options are the same as understood by "Prima::Image::load", and are passed down to it. add $IMAGE Appends an image frame to the container. bgColor Return the background color specified by the GIF sequence as the preferred background color to use when there is no specific background to superimpose the animation to. current Return index of the current frame draw $CANVAS, $X, $Y Draws the current composite frame on $CANVAS at the given coordinates. height Returns height of the composite frame. icon Creates and returns an icon object off the current composite frame. image Creates and returns an image object off the current composite frame. The transparent pixels on the image are replaced with the preferred background color. is_stopped Returns true if the animation sequence was stopped, false otherwise. If the sequence was stopped, the only way to restart it is to call "reset". length Returns total animation length (without repeats) in seconds. loopCount [ INTEGER ] Sets and returns number of loops left, undef for indefinite. masks Return the AND and XOR masks, that can be used to display the current composite frame. next Advances one animation frame. The step triggers changes to the internally kept AND and XOR masks that create effect of transparency, if needed. The method return a hash, where the following field are initialized: left, bottom, right, top Coordinates of the changed area since the last frame was updated. delay Time ins seconds how long the frame is expected to be displayed. reset Resets the animation sequence. This call is necessary either when image sequence was altered, or when sequence display restart is needed. size Returns width and height of the composite frame. total Return number fo frames width Returns width of the composite frame. SEE ALSO
Prima::image-load, "/www.the-labs.com/GIFMerge/ " in http: AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>. perl v5.14.2 2009-02-24 Prima::Image::AnimateGIF(3)
All times are GMT -4. The time now is 10:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy