views:

47

answers:

1

Some pseudo-code for accomplishing a linear fisheye distortion of a MovieClip's contents would be very appreciated.

The attached illustration shows how the "fisheye effect" is automatically applied to an area around the mouse-pointer.

The Flare toolkit has examples of both Bifocal and Fisheye distortion here.

distorted movieclip

+2  A: 

The DisplacementMapFilter can be used to do this.

DisplacementMapFilter(bmp,offset,1,2,75,75,"ignore")

Will give pleasing results.

Will