Posts tagged canvas

Imperfect Circles – Aesthetic imperfection with fractal subdivision

Getting a computer to draw a shape in the way that a human would requires programming in some imperfection. I show you how a fractal subdivision algorithm can be used to draw some pleasantly imperfect circles.

Fire Trails – colorful fading trails in a particle effect

I modify an earlier particle effect to create colorful, fiery trails behind the particles as they fly around and bounce off circular walls.

Bouncing particles off a circular boundary

How do you bounce particles off a circular wall? I present a simple example and discuss some of the vector mathematics behind the code.

HTML5 3D particles in a 2D canvas, sprite sheet optimized

More pretty parametric curve built out of particles. I optimize my code which creates 3D particles in a 2D canvas, by using a sprite sheet. During the testing of this effect, I have observed some interesting browser differences.

Parametric Particles – more HTML5 3D in a 2D canvas

Playing with my 3D particle code some more, I draw a parametric curve which rotates in space and slowly dissolves away.

Dusty Sphere – HTML5 3D particles in a 2D canvas

Drawing 3D objects in a 2D canvas is rather straightforward if the objects are simple dots and you’re not worried about depth-sorting. I show you a simple example of a sphere made out of dust particles which fly around and fade away. I also discuss how to properly select a point at random on a sphere, in such a way as to ensure an even distribution of points.

HTML5 Canvas – A Simple Sprite Sheet Example

A simple example to illustrate the use of a sprite sheet for CPU-efficient animations. We create a sprite sheet at run time, fill it with individual frames of an animation of a growing circle, then copy from this sprite sheet later when we wish to animate a large number of circles.

HTML5 Canvas Particle Clock 2 – Sprite sheet optimized

A newly optimized clock made of particles. The particles take the form of digits which fly into place to form the correct time. This example features many more particles than our previous example.

HTML5 Canvas Particle Clock

A little HTML5 canvas experiment: a digital clock created from particles. The particles take the form of numerals which slide into place to display the correct current time. A repelling force pushes inactive particles away from the time display particles. Full source code available for you to experiment with.

Nova – HTML5 Canvas Particles

A celestial particle effect with pleasing color changes, enhanced by the Fast Blur code from quasimondo.