animation a broad brush computer animation
play

Animation A broad Brush Computer Animation Traditional Methods - PowerPoint PPT Presentation

Animation A broad Brush Computer Animation Traditional Methods Cartoons, stop motion Keyframing Digital inbetweens Motion Capture What you record is what you get Simulation Animate what you can model (with equations)


  1. Animation – A broad Brush Computer Animation Traditional Methods • Cartoons, stop motion Keyframing • Digital inbetweens Motion Capture • What you record is what you get Simulation • Animate what you can model (with equations) Keyframing Keyframing How are we going to interpolate? Traditional animation technique Dependent on artist to generate ‘key’ frames Additional, ‘inbetween’ frames are drawn automatically by computer From “The computer in the visual arts”, Spalter, 1999

  2. Linear Interpolation Nonlinear Interpolation Simple, but discontinuous velocity Smooth ball trajectory and continuous velocity, but loss of timing Style or Easing Accuracy? Interpolating time captures accuracy of velocity Squash and stretch replaces motion blur stimuli and adds life-like intent Adjust the timing of the inbetween frames. Can be automated by adjusting the stepsize of parameter, t.

  3. Traditional Motivation Ease-in and ease-out is like squash and stretch Can we automate the inbetweens for these? “The Illusion of Life, Disney Animation” Thomas and Johnson Examples Procedural Inanimate video game objects • GT Racer cars • Soapbox about why this is so cool Special effects • Explosions, water, secondary motion • Phantom Menace CG droids after they were cut in half http://jet.ro/dismount www.sodaplay.com

  4. Procedural Animation Procedural Animation Strengths Very general term for a technique that Animation can be generated ‘on the fly’ puts more complex algorithms behind Dynamic response to user the scenes Write-once, use-often Technique attempts to consolidate Algorithms provide accuracy and artistic efforts in algorithms and exhaustive search that animators heuristics cannot Allows for optimization and physical simulation Procedural Animation Particle Systems Weaknesses � Particle systems provide a powerful We’re not great at boiling human skill framework for animating numerous down to algorithms similar elementary “objects” at the same time. Those objects are called particles. • How do we move when juggling? Using a lot of particles with simple Difficult to generate physics allow us to model complex phenomena such as: Expensive to compute • Fireworks Difficult to force system to generate a • Waterfalls particular solution • Smoke • Fire • Bicycles will fall down • Flocking • Clothes, etc. Cornell CS 468 Andrew Butts •16

  5. Introduction Typical Particle system Particle animation routine ParticleSystem() typedef struct / / Create A Structure For Particle 1. Animate a particle System { bool active; / / Active (Yes/ No) A particle is float life; / / Particle Life described by float fade; / / Fade Speed While animation not finished 2. float r; / / Red Value physical body float g; / / Green Value attributes, float b; / / Blue Value 3. Do Delete expired particles such as: float x; / / X Position float y; / / Y Position 4. Create new particles Mass, Position, float z; / / Z Position float xi; / / X Direction Velocity, float yi; / / Y Direction 5. Simulate Physics Acceleration, float zi; / / Z Direction Color, Life float xg; / / X Gravity 6. Update particle attributes float yg; / / Y Gravity time. float zg; / / Z Gravity } 7. Render particles particles; / / Particles Structure

  6. initAll(){ for(int i = 0; i <= MAX_PARTICLES; i++){ Example - Firew ork Particles[i].x = rand() % WORLD_WIDTH; During the explosion phase, each particle has its own mass, Particles[i].y = rand() % WORLD_HEIGHT; velocity and acceleration Particles[i].z = rand() % WORLD_DEPTH;}} attributes modified according to a random, radially centered initEntity(int index){ speed component. Particles[index].x = rand() % WORLD_WIDTH; Particles[index].y = rand() % WORLD_HEIGHT; Particles[index].z = rand() % WORLD_DEPTH;} Firewor render(){ k for(int i = 0; i <= MAX_PARTICLES; i++){ Gravity draw_rain_texture(Particles[i].x, Particles[i].y, Particles[i].z); }} Field update(){ for(int i = 0; i <= MAX_PARTICLES; i++) { Particles[i].y =- (rand() % 2) - 2.5; During the rocket phase, all if (collisiondetect(Particles[i])) { initEntity(i); } particles flock together. The speed of the particles inside }} the illusory rocket is determined by the initial launch speed to which we subtract the influence of gravity Physics Particle system - Applications Using this general particle system F = m*a framework, there are various animation effects that can be simulated such as force a =F/m field (wind, pressure, gravity), viscosity, a = g = 9.81 m/s collisions, etc. a(t + dt) = - gz where z is upward unit vector Rendering particles as points is v(t+dt) = v(t) + a(t) dt straightforward, but we can also draw tiny x(t+dt) = x(t) + v(t)dt + ½ a(t^2)dt segments for giving the illusion of motion blur, or even performing ray casting for obtaining volumetric effects.

  7. The QuadParticles Class The QuadParticles Class Although many particle systems can be modeled with points and lines, moving to quadrilaterals (quads) combined with textures allows many more interesting effects. The texture can contain extra surface detail, and can be partially transparent in order to break up the regularity of the quad shape. A quad can be assigned a normal and a Material node component to allow it to be affected by lighting in the scene. The only danger with these additional features is that they may slow down rendering by too much. For example, we want to map the texture to each quad (each particle), but do not want to use more than one QuadArray and one Texture2D object. Forces Forces A = F/m Typically, have multiple independent forces. • Particle masses won’t change • For each force, add its contribution to each • But need to evaluate F at every time step. particle. • The force on one particle may depend on the • Need a force accumulator variable per particle positions of all the others • Or accumulate force in the acceleration variable, and divide by m after all forces are accumulated

  8. Forces Forces Example forces Earth Gravity • Earth gravity, air resistance • f = -9.81*(particle mass in Kg)*Y • Springs, mutual gravitation Drag • Force fields • f = -k*v • Wind Uniform Wind • Attractors/Repulsors • f = k • Vortices Forces Forces Simple Random Wind Attractors/Repulsors • After each timestep, add a random offset to • Special force object at position x the direction • Only affects particles within a certain distance Noisy Random Wind • Within the radius, distance-squared falloff • Acts within a bounding box • if |x-p| < d v = (x-p)/|x-p| • Define a grid of random directions in the box f = ± k/|x| 2 * x • Trilinear interpolation to get f else • After each timestep, add a random offset to f = 0 each direction and renormalize • Use the regular grid optimization from lecture

  9. Emitters Emitters What is it?! Regulating particles • Object with position, orientation • At “birth,” reset the particle’s parameters • Free to set them arbitrarily! • Regulates particle “birth” and “death” • For “death,” a few possibilities • Usually 1 per particle system • If a particle is past a certain age, reset it. • More than 1 can make controlling particle death inconvenient • Keep an index into the particle array, and reset a group of K particles at each timestep. • Should allocate new particles only once! • Recycle their objects or array positions. Emitters Rendering Fountain Spheres are easy but boring. • Given the emitter position and direction, we • Combine points, lines, and alpha blending for have a few possibilities: moderately interesting effects. • Choose particle velocity by jittering the direction Render oriented particle meshes vector • Store rotation info per-particle • Choose random spherical coordinates for the • Keep meshes facing “forward” along their direction vector paths Demo • Can arbitrarily pick “up” vector • http://www.delphi3d.net/download/vp_sprite.zip

  10. Rendering Rendering Render billboards (one method) Render billboards • Draws an image-plane aligned, diamond-shaped • Want to represent particles by textures quad • Should always face the viewer • Given a particle at p, and the eye’s basis (u,v,w), draw a quad with vertices: • Should get smaller with distance q0 = eye.u • Want to avoid OpenGL’s 2d functions q1 = eye.v q2 = -eye.u q3 = -eye.v • Translate it to p • Will probably want alpha blending enabled for smoke, fire, pixie dust, etc. See the Red Book for more info. Simulation Loop Recap A recap of the loop: • Initialize/Emit particles • Run integrator (evaluate derivatives) • Update particle states • Render • Repeat! Particle Illusion Demo • www.wondertouch.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend