Animation Module No: CS/CGV/20

Total Page:16

File Type:pdf, Size:1020Kb

Animation Module No: CS/CGV/20 MODULE - 20 e-PG Pathshala Subject: Computer Science Paper: Computer Graphics and Visualization Module: Animation Module No: CS/CGV/20 Quadrant 1– e-text Objectives: To understand the basic terminology of animation To understand the principles behind popular techniques of animation Discussion: Animation in simple terms is ‘any time sequence of visual changes in a scene’. Visual changes may be – basic transformations like translation, rotation, scaling, transparency, surface texture, shape, color, etc. When a series of images are played at quick succession, the effect is an animation. Frame rate defines the number of frames played in a second. With the advent of animation software, it has become easier for animators to design, implement and test animation sequences. The software offers a rich set of ready-made functionalities to create interactive rich, smoother animation sequences in short time. The master animators define the important frames / key frames and the software automatically interpolates the desired frames. Animation is fundamentally computer created. Animation sequences can be either 2D or 2 ½ D or 3D or 4D. 2D animation involves simple 2D images and they are played in succession at the desired frame rates. 2 ½ D animation is an extension of 2D animation, in which a feel of 3D is created in 2D. 3D animation adds the 3rd dimension to give a feel of real world objects. In 4D other special effects are added to a 3D animation sequence like, smell, touch, environment, etc.. There are four stages to create an animation. They are Storyboard layout Object definitions Key-frame specifications Generation of in-betweens A storyboard is a visual / graphical layout of an animation. It gives us a preview of the actual animation. Then properties and behaviour for each of the objects is defined. The properties include, dimension, position, color, texture, shape, etc..The behaviour is the role attached to the object or animation character. The behaviour defines, how an object should respond when an event occurs. Later Key-frames are defined by the master animator to tell the software that the other frames are to be computed by it automatically by assuming key-frames as reference. Key-frames are the important frames where there is a considerable change in the course of animation. Once these frames are defined, the software automatically interpolates the frames between two key frames. The automatic generation of in-betweens is called tweening. Frame rate is an important attribute of animation. Animations that involve rapid action sequences require higher frame rates for a smoother, jerk-free animation. Frame rates for animation start at a minimum of 12 fps, and can go up to any higher value. Once the frame rates are decided, the same if applied for an entire animation sequence. The following are some of the common techniques of animation. Frame by Frame Key-frame Onion Skinning Rotoscoping Squash and Stretch Path-Based (Sprite) Secondary action Morphing Motion Capture Kinematics Frame-by-Frame animation: In this technique each individual frame is separately edited and when played back in quick succession, we experience animation. Key-frames and Tweening: In this technique as described earlier Key frames are defined by the master animator, and the software automatically interpolates the in-betweens in the process called tweening. The number of in-betweens is decided by the frame rates required. The interpolation may be linear or non- linear. In linear interpolation, the objects position is interpolated along a straight line between two key-frames. In non-linear interpolation, the objects path may be interpolated along curves for smoother and realistic animation. Onion skinning: In this, onion skinned versions (semi-transparent) of a few previous positions of an object are shown so as to enable correct positioning of the object in the current frame. Often it is required to know the previous position of an object, to determine the correct current position for the desired animation sequence. It is sufficient to show onion skinned versions of two or three previous frames for editing the current frame. Since the immediate previous frame is important, its near opaque version is provided, and progressively the opaqueness is reduced for the other previous frames. Squash and Stretch: In this technique, the objects’ shape is squeezed / stretched as per requirement. This effect is desired to give the audience a feeling that the object is fast approaching a point or about to hit a point and also imitates objects that have elastic properties. The figure below shows the effect for a ball, as it approaches a firm obstruction it gets squeezed and when it re- bounces it gains its shape back and gets stretched. Morphing: Morphing is another interesting technique that is used to perform transformation between two different shapes. This is sometimes referred to as ‘shape-tweening’. Here we choose an initial shape in the first key frame and final shape in the second key-frame and the software automatically interpolates the possible in-between shapes depending on the number of frames / frame-rate prescribed, which is shown in figure below. It is not possible to perform morphing from between any two random shapes. It is made possible if the number of vertices that define the objects (initial and the target) match, i.e. both the objects should have been defined with the same number of vertices. The example below shows, two key frames, key-frame k and key-frame k+1. Keyframe k has two vertices, while keyframe k+1 has three vertices. Now to perform morphing between these two shapes we should ensure that both these shapes are defined with the same no. of vertices. The solution is to add an extra vertex to an edge of the initial shape and interpolate to form the new shape. Another example below shows a triangle to be morphed to a quadrilateral. The suitability of two shapes involved in morphing can be checked either at the vertex level or at the edge level for such standard shapes. vertex: Let Vk and Vk +1 denote the number of vertices in the two consecutive frames. Define Vmax=max(Vk , Vk +1), where Vmax identifies the maximum no. of vertices among the two. Vmin=min(Vk , Vk+1) where Vmin defines the minimum no. of vertices among the two Nls=(Vmax -1)mod (Vmin-1) , where Nls defines the number of line segments Np = int (Vmax -1) / (Vmin -1) , where Np defines the number of vertices to be added The two simple steps of the procedure to add the desired no. of vertices is given below. Add Np points to Nls line sections of keyframemin Add Np-1 points to the remaining edges of keyframemin. For example If Vk=3, and Vk+1=4, Nls= Np=1. So add one point to one edge of keyframe k. No points would be added to remaining edges of keyframe k. The above figures show acceleration and decceleration modeled using trigonometric functions. Acceleration is modeled by a function and the corresponding in-between spacing is adjusted as per the function. The second figure above, shows deceleration function and the corresponding in-between spacing. The figure above (left) shows how to combine acceleration and deceleration functions, and the corresponding spacing. The figure above (right) shows approximating the motion of a bouncing ball with a damped sine function. The path that should guide the object can be either formed using mathematical function or can be drawn. This kind of animation is sometimes called as path-based animation or sprite animation. Kinematics and dynamics: Kinematics is imitating human like motion. Here the human like motion is superimposed on artificially modeled characters to achieve this effect. As shown in the figure below, the human hands, legs and body have various joints, and the movement involves bending at the joints and take motion. This motion can be created in two ways, either by using forward kinematics or by using Inverse kinematics. Forward Kinematics: This refers to the use of the kinematic equations of a robot to compute the position of the end- effector from specified values for the joint parameters. The figure below shows an illustration of a robotic arm, with one end stuck to the base and the free other end called the end-effector, whose position is to be decided whenever we want it to make some movement. To make the end-effector position itself exactly for a task, we adjust the angles of the shoulder, elbow extension, arms of the device. The animator specifies joint angles say θ1, θ2 etc., and the computer finds the positions of the end-effector say X. Inverse Kinematics: The reverse process that computes the joint parameters that achieve a specified position of the end-effector is known as inverse kinematics. Here the animator Specifies end-effector positions: X and the computer finds joint angles: θ1 and θ2. This is called goal-directed motion. Motion Capture: This is a technology where the data corresponding to the performances of actual real world characters are superimposed on characters artificially created using computers. The real world characters perform on a systematically positioned stage, which is captured by many Infrared cameras surrounding the performer. At various joints of the performer body, reflective objects are stuck, so that the reflected beam is recorded by the infrared cameras. At any point in time during the performance, information from 3 cameras is recorded and stored in a file. This data is later applied onto the modeled characters to achieve an exact imitation of real characters. This technology is less used since the cost of installation and operational requirements are quite high. Summary: Learnt techniques of animation .
Recommended publications
  • AIM Awards Level 3 Certificate in Creative and Digital Media (QCF) Qualification Specification V2 ©Version AIM Awards 2 – 2014May 2015
    AIM Awards Level 3 Certificate in Creative and Digital Media (QCF) AIM Awards Level 3 Certificate In Creative And Digital Media (QCF) Qualification Specification V2 ©Version AIM Awards 2 – 2014May 2015 AIM Awards Level 3 Certificate in Creative and Digital Media (QCF) 601/3355/7 2 AIM Awards Level 3 Certificate In Creative And Digital Media (QCF) Qualification Specification V2 © AIM Awards 2014 Contents Page Section One – Qualification Overview 4 Section Two - Structure and Content 9 Section Three – Assessment and Quality Assurance 277 Section Four – Operational Guidance 283 Section Five – Appendices 285 Appendix 1 – AIM Awards Glossary of Assessment Terms 287 Appendix 2 – QCF Level Descriptors 290 3 AIM Awards Level 3 Certificate In Creative And Digital Media (QCF) Qualification Specification V2 © AIM Awards 2014 Section 1 Qualification Overview 4 AIM Awards Level 3 Certificate In Creative And Digital Media (QCF) Qualification Specification V2 © AIM Awards 2014 Section One Qualification Overview Introduction Welcome to the AIM Awards Qualification Specification. We want to make your experience of working with AIM Awards as pleasant as possible. AIM Awards is a national Awarding Organisation, offering a large number of Ofqual regulated qualifications at different levels and in a wide range of subject areas. Our qualifications are flexible enough to be delivered in a range of settings, from small providers to large colleges and in the workplace both nationally and internationally. We pride ourselves on offering the best possible customer service, and are always on hand to help if you have any questions. Our organisational structure and business processes enable us to be able to respond quickly to the needs of customers to develop new products that meet their specific needs.
    [Show full text]
  • Jobs and Education
    Vol. 3 Issue 3 JuneJune1998 1998 J OBS AND E DUCATION ¥ Animation on the Internet ¥ Glenn VilppuÕs Life Drawing ¥ CanadaÕs Golden Age? ¥ Below the Radar WHO IS JARED? Plus: Jerry BeckÕs Essential Library, ASIFA and Festivals TABLE OF CONTENTS JUNE 1998 VOL.3 NO.3 4 Editor’s Notebook It’s the drawing stupid! 6 Letters: [email protected] 7 Dig This! 1001 Nights: An Animation Symphony EDUCATION & TRAINING 8 The Essential Animation Reference Library Animation historian Jerry Beck describes the ideal library of “essential” books on animation. 10 Whose Golden Age?: Canadian Animation In The 1990s Art vs. industry and the future of the independent filmmaker: Chris Robinson investigates this tricky bal- ance in the current Canadian animation climate. 15 Here’s A How de do Diary: March The first installment of Barry Purves’ production diary as he chronicles producing a series of animated shorts for Channel 4. An Animation World Magazine exclusive. 20 Survey: It Takes Three to Tango Through a series of pointed questions we take a look at the relationship between educators, industry representatives and students. School profiles are included. 1998 33 What’s In Your LunchBox? Kellie-Bea Rainey tests out Animation Toolworks’ Video LunchBox, an innovative frame-grabbing tool for animators, students, seven year-olds and potato farmers alike! INTERNETINTERNET ANIMATIONANIMATION 38 Who The Heck is Jared? Well, do you know? Wendy Jackson introduces us to this very funny little yellow fellow. 39 Below The Digital Radar Kit Laybourne muses about the evolution of independent animation and looks “below the radar” for the growth of new emerging domains of digital animation.
    [Show full text]
  • Animation 1 Animation
    Animation 1 Animation The bouncing ball animation (below) consists of these six frames. This animation moves at 10 frames per second. Animation is the rapid display of a sequence of static images and/or objects to create an illusion of movement. The most common method of presenting animation is as a motion picture or video program, although there are other methods. This type of presentation is usually accomplished with a camera and a projector or a computer viewing screen which can rapidly cycle through images in a sequence. Animation can be made with either hand rendered art, computer generated imagery, or three-dimensional objects, e.g., puppets or clay figures, or a combination of techniques. The position of each object in any particular image relates to the position of that object in the previous and following images so that the objects each appear to fluidly move independently of one another. The viewing device displays these images in rapid succession, usually 24, 25, or 30 frames per second. Etymology From Latin animātiō, "the act of bringing to life"; from animō ("to animate" or "give life to") and -ātiō ("the act of").[citation needed] History Early examples of attempts to capture the phenomenon of motion drawing can be found in paleolithic cave paintings, where animals are depicted with multiple legs in superimposed positions, clearly attempting Five images sequence from a vase found in Iran to convey the perception of motion. A 5,000 year old earthen bowl found in Iran in Shahr-i Sokhta has five images of a goat painted along the sides.
    [Show full text]
  • Pre Visit Activity 2
    Animation Pre Visit Activity 2. Types of Animation. Basic Types of Animation: 1. • Traditional animation (also called cel animation or hand-drawn animation) was the process used for most animated films of the 20th century. The individual frames of a traditionally animated film are photographs of drawings, which are first drawn on paper. To create the illusion of movement, each drawing differs slightly from the one before it. The animators' drawings are traced or photocopied onto transparent acetate sheets called cels, which are filled in with paints in assigned colors or tones on the side opposite the line drawings. The completed character cels are photographed one-by-one onto motion picture film against a painted background by a rostrum camera. 2. • Stop-motion animation is used to describe animation created by physically manipulating real-world objects and photographing them one frame of film at a time to create the illusion of movement. There are many different types of stop-motion animation, usually named after the type of media used to create the animation. • Puppet animation typically involves stop-motion puppet figures interacting with each other in a constructed environment, in contrast to the real-world interaction in model animation. The puppets generally have an armature inside of them to keep them still and steady as well as constraining them to move at particular joints • Clay animation, or Plasticine animation often abbreviated as claymation, uses figures made of clay or a similar malleable material to create stop-motion animation. The figures may have armature or wire frame inside of them, similar to the related puppet animation (below), that can be manipulated in order to pose the figures.
    [Show full text]
  • Using Dragonframe 4.Pdf
    Using DRAGONFRAME 4 Welcome Dragonframe is a stop-motion solution created by professional anima- tors—for professional animators. It's designed to complement how the pros animate. We hope this manual helps you get up to speed with Dragonframe quickly. The chapters in this guide give you the information you need to know to get proficient with Dragonframe: “Big Picture” on page 1 helps you get started with Dragonframe. “User Interface” on page 13 gives a tour of Dragonframe’s features. “Camera Connections” on page 39 helps you connect cameras to Drag- onframe. “Cinematography Tools” on page 73 and “Animation Tools” on page 107 give details on Dragonframe’s main workspaces. “Using the Timeline” on page 129 explains how to use the timeline in the Animation window to edit frames. “Alternative Shooting Techniques (Non Stop Motion)” on page 145 explains how to use Dragonframe for time-lapse. “Managing Your Projects and Files” on page 149 shows how to use Dragonframe to organize and manage your project. “Working with Audio Clips” on page 159 and “Reading Dialogue Tracks” on page 171 explain how to add an audip clip and create a track reading. “Using the X-Sheet” on page 187 explains our virtual exposure sheet. “Automate Lighting with DMX” on page 211 describes how to use DMX to automate lights. “Adding Input and Output Triggers” on page 241 has an overview of using Dragonframe to trigger events. “Motion Control” on page 249 helps you integrate your rig with the Arc Motion Control workspace or helps you use other motion control rigs.
    [Show full text]
  • Vector Graphics Animation with Time-Varying Topology
    Vector Graphics Animation with Time-Varying Topology Boris Dalstein∗ Rémi Ronfard Michiel van de Panne University of British Columbia Inria, Univ. Grenoble Alpes, LJK, France University of British Columbia key key key key inbetween inbetween inbetween inbetween vertex closed edge open edge face vertex closed edge open edge face 11number 3 10 2 10 3 9 1 space-time time visualization time-slices visualization Legend Space-time visualization Time-slices visualization Figure 1: A space-time continuous 2D animation depicting a rotating torus, created without 3D tools. First, the animator draws key cells (in blue) using 2D vector graphics tools. Then, he specifies how to interpolate them using inbetween cells (in green). Our contribution is a novel data structure, called Vector Animation Complex (VAC), which enables such interaction paradigm. Abstract 1 Introduction We introduce the Vector Animation Complex (VAC), a novel data A fundamental difference between raster graphics and vector graph- structure for vector graphics animation, designed to support the ics is that the former is a discrete representation, while the latter is a modeling of time-continuous topological events. This allows fea- continuous representation. Instead of storing individual pixels that tures of a connected drawing to merge, split, appear, or disappear at our eyes readily interpret as curves, vector graphics stores curves desired times via keyframes that introduce the desired topological that can be rendered at any resolution. As display devices spanning change. Because the resulting space-time complex directly captures a wide range of resolutions proliferate, such resolution-independent the time-varying topological structure, features are readily edited in representations are increasing in importance.
    [Show full text]
  • CHI 2004 Paper
    Vienna, Austria ׀ Paper 24-29 April ׀ CHI 2004 Animaatiokone: an Installation for Creating Clay Animation Perttu Hämäläinen Mikko Lindholm, Ari Nykänen Johanna Höysniemi Helsinki University of Technology University of Art and Design Helsinki University of Tampere P.O.Box 5400, FIN-02015 HUT, Hämeentie 135C, FIN-00560 Helsinki, Kanslerinrinne 1, FIN-33014 UTA, Finland Finland Finland [email protected] [email protected], [email protected] [email protected] Abstract make animating as easy as possible, so that novice users This paper describes Animaatiokone, an installation for could experiment and learn about clay animation in a casual experimenting and learning about stop-motion animation. and fun environment, for example when waiting for a Located in a movie theater, it allows people to create clay movie in the lobby of a movie theater. The installation is animation while waiting for a movie. Collaboration based on a PC computer, a webcam, and a microphone. between users is supported, for example, by sharing of clay Our goal was also to support collaborative storytelling, actors. The installation’s user interface allows even inspired by the work of Cassell and Ryokai 514 and beginners to create and edit animation with help of Benford et al. 2 among others. The animations form a automatic onion-skinning and simple controls developed continuous story: The next animator can continue from through iterative testing and prototyping. In test use, the where the previous one finished or start a new scene, but installation has been popular and hundreds of animations the previous animations cannot be deleted. The overhead have been created and made available via the installation’s display allows other people to watch the animator at work homepage http://www.animaatiokone.net.
    [Show full text]
  • The Efficiency Issues on the Animation Production Stages
    THE EFFICIENCY ISSUES ON THE ANIMATION PRODUCTION STAGES WAN MUHAMMAD BIN WAN ABDUL AZIZ MASTER OF ART 2017 The Efficiency Issues On The Animation Production Stages by WAN MUHAMMAD BIN WAN ABDUL AZIZ A thesis submitted in fulfillment of the requirements for the degree of Master of Art Faculty of Creative Technology and Heritage UNIVERSITI MALAYSIA KELANTAN 2017 THESIS DECLARATION I hereby certify that the work embodied in this thesis is the result of the original research and has not been submitted for a higher degree to any other University or Institution. OPEN ACCESS I agree that my thesis is to be made immediately available as hardcopy or on-line open access (full text). EMBRAGOES I agree that my thesis is to be made available as hardcopy or on-line (full text) for a period approved by the Post Graduate Committee. Dated form___________ until _____________ CONFIDENTIAL (Contains confidential information under Official Secret Act 1972)* RESTRICTED (Contains restricted information as specified by the organization where research was done)* I acknowledge that University Malaysia Kelantan reserves the right as follows. 1. The thesis is the property of University Malaysia Kelantan. 2. The library of University Malaysia Kelantan has the right to make copies for the purpose of research only. 3. The library has the right to make copies of the thesis for academic exchange. ________________________ ___________________________ SIGNATURE SIGNATURE OF SUPERVISOR 850425-03-5219 DR NIK ZULKARNAEN BIN KHIDZIR Date: Date: i ACKNOWLEDGEMENT Author the opportunity to express the gracefully to Allah s.w.t for giving a strength to complete writing thesis.
    [Show full text]
  • Toon Boom Studio Is the Best 2D Animation Software to Learn And
    BONE ANIMATION Toon Boom Studio is the best 2D animation software to learn and Apply a skeletal bone structure to your draw- ing, picture or puppet character and animate create animation with. them with ease. Bend body parts to create gestures and walk cycles much faster, while preserving proportion and volume. Ideal for students and hobbyists looking for an easy-to-use animation program, excellent for teachers and educational TRADITIONAL ANIMATION institutions, Studio makes all animation techniques accessible to If your talent translates best on paper, then Studio is for you. Scan-in drawings with no loss users, offering them the most creative and rewarding experience. of quality using any TWAIN supported device, then use Studio's proven technology to take your illustrations into the digital world! STOP-MOTION ANIMATION Create remarkable stop-motion animation using any object you'd like to bring to life. Insert fun backgrounds using Chroma Key, or use time- lapse imagery to generate unique visuals. Add audio and easily export to the web! CUT-OUT ANIMATION Draw, create or import elements to build characters and store them all in your personal library, then apply Studio's powerful transform tool and motion paths to set timing and create movement. TRADIGITAL ANIMATION Developed by animators for animators, Toon Boom Studio offers all the traditional anima- tion features at the tip of your digital pen. A 100% paperless workflow with no sacrifices in features! ROTOSCOPING ANIMATION Animating has never been easier, or as much fun! Studio allows you to import live-action video to then trace and colour in your char- Studio 6 now offers leading edge features to acters.
    [Show full text]
  • Edexcel BTEC Levels 4 and 5 Higher Nationals Specification in Creative Media Production
    Edexcel BTEC Levels 4 and 5 Higher Nationals specification in Creative Media Production Contents Unit 1: Contextual Studies for Creative Media Production 1 Unit 2: Research Techniques for Creative Media Production 5 Unit 3: Project Design, Implementation and Evaluation 11 Unit 4: Special Subject Investigation for Creative Media Production 15 Unit 5: Practical Skills for Radio Production 19 Unit 6: Practical Skills for Moving Image Production 23 Unit 7: Practical Skills for Journalism 29 Unit 8: Practical Skills for Computer Game Animation 33 Unit 9: Practical Skills for Computer Game Design 37 Unit 10: Radio Studies 41 Unit 11: Film Studies 45 Unit 12: Television Studies 49 Unit 13: Journalism Studies 53 Unit 14: Computer Games Studies 57 Unit 15: Career Development for the Radio Industry 61 Unit 16: Career Development for the Moving Image Industries 65 Unit 17: Career Development for Journalism 71 Unit 18: Career Development for the Computer Games Industry 77 Unit 19: Speech Package Production for Radio 83 Unit 20: Radio Magazine Programme Production 89 Unit 21: Radio Commercial Production 93 Unit 22: Audio Books, Audio Guides and Talking Newspapers 99 Unit 23: Music Sequence Production for Radio 103 Unit 24: Multi-track Recording for Radio Production 107 Unit 25: Radio Features Production 111 Unit 26: Script Writing for Factual Radio 117 Unit 27: Interview and Presentation Techniques for Radio 121 Unit 28: Producing Multi-platform Radio Programmes 127 Unit 29: Radio Studio Technology 131 Unit 30: Camera and Lighting Techniques for Moving
    [Show full text]
  • Measurement and Control of Statistics Learning Processes Based On
    A Comparative Approach to the Impact of 2D Animations and 3D Computer Animated Movies in Students’ Cognitive Process of Comprehension Stanca-Maria Iurean Babeș-Bolyai University of Cluj-Napoca, Faculty of Psychology and Science of Education, 7, Sindicatelor Street, 400029, Cluj-Napoca, Cluj County, Romania E-mail: stanca.maria.iurean[at]gmail.com Abstract Nowadays, Romanian children at least, are interested in animated movies, mostly 3D computer animated movies. The current paper presents a comparative approach to the impact of 2D animations and 3D computer animated movies in students’ cognitive process of comprehension. The study took place in two preparatory classes in a public educational institution from Cluj county and it presents data collected from teachers’ observation sheets and students’ tests during the implementation of curricular activities based on 2D animations and 3D computer animated movies. Teachers’ observation sheets and students’ tests were filled during a debriefing process of the watched movies. Therefore, the data collected from the two preparatory classes indicate the way these animated movie-based activities facilitate students’ process of comprehension. The main purpose of the study was the investigation of the way preparatory school students comprehend similar contents presented through 2D animated movies and through 3D computer animated movies. Keywords: 2D animations, 3D computer animated movies, debriefing, comprehension 1. Introduction Media is an alternative resource of information. Stories, myths and fairy tales are used as a role model by children to help them understand themselves and their surrounding. Modern animated movies for children offer information about nature, science, Universe and many other useful areas. Their stories also have an impact on personal development.
    [Show full text]
  • The Animation Guide
    The Animation Guide Pascack Valley Regional High School District www.team1676.com Table of Contents I. Introduction II. What Is Animation, and Why Do I, an Artist on Robotics Team, Claim It’s Just As Difficult As Building A Robot? III. General Team Structure IV. Different Types of Animation Team Members May Want to Do V. Recommended Software V.a. Recommended Software for 2D Animation Vb.. Recommended Software for Stop Motion Animation V.c. Recommended Video Editing Software VI. 3D Animation Production Pipeline VII. Animation 101 I. Introduction Hello! This document is a how-to-guide on things animation. It is a lot of information to take in, but we hope your team can use it as a guide to succeed in the exciting world of animation. It consists of everything from technical aspects for mentors such as recommended software and general team management, to the nitty gritty tips for beginning animators. To create this guide, Team 1676 has collaborated with their alumnus, Cindy Lin. Cindy was on the Animation Sub-Division for 4 years and was leader for 3 years. Currently, she studies game design and animation at NYU Tisch School of the Arts. All of her personal comments regarding each section are italicized. II. What Is Animation What is Animation, and Why Do I, an Artist on a Robotics Team, Claim It’s Just As Difficult As Building A Robot? Animation is essentially the illusion of movement created by flipping through still images very, very quickly. One image is called a frame, just as in regular video and film.
    [Show full text]