Papervision3D effects with perlinNoise ()

Monday, June 9, 2008

Exploiting the effect generated by perlinNoise() you can create ripple effects and waves with Papervision3D.

Download the source

To compile the source you need both Papervision3D and Undolibrary - now you can find as ZIP package directly in the Download section of Google Code.

Related Post

Flash CS3: template for class Document

Friday 2 May, 2008

This is the template that I use for class paper a generic project Flash CS3:

Actionscript:
  1. package (
  2. / *
  3. ** @ Name: MioDocumento.as
  4. ** @ Description: [description]
  5. ** @ Author: undo = =
  6. ** @ Web: http://www.undolog.com
  7. ** @ Email: @ g.fazioli undolog.com - g (dot) Fazioli (at) undolog (dot) com
  8. ** @ Ver: 1.0
  9. * /
  10. .*; import flash. display .*;
  11. .*; import flash. .* events;
  12. MioDocumento extends MovieClip { public class MioDocumento extends MovieClip (
  13. / *
  14. ** @ Var private
  15. * /
  16. MainFive ( ) : void { public function MainFive (): void (
  17. , init ) ; addEventListener (Event. ADDED_TO_STAGE, init);
  18. )
  19. / *
  20. ** @ Name: init ()
  21. ** @ Description: trigged when added to stage
  22. * /
  23. e :Event ) : void { protected function init (e: Event): void (
  24. / / Todo
  25. )
  26. ) / / Constructor
  27. ) / / Package

Related Post