Archive for the ‘ Actionscript ’ Category

2 Interesting projects on Google Code

Blendmodes4flash: New blend modes 4 flash using Pixel Bender.

Vectorizationpackage: A library for client side Vectoriztion of Bitmap Images.

SoundFX a library for realtime Sound Effects

SoundFx by Antti Kupila is a actionscript3 library for realtime sound processing. By default it comes with a little amount of filters but it can be easy extended.

More info: out of the box audio filters with actionscript3

Function to normalizing an angle

A simple function to normalize angles.

1
2
3
4
5
public static function normalizeAngle(angle:Number):Number
{
    if(angle < 0 || angle > Math.PI * 2) return Math.abs((Math.PI * 2) - Math.abs(angle));
    else return angle;
}