package be.nascom.flash.threeD{ import flash.events.Event; public class graphic_player_10_cube_be_nascom_flash_threeD_Rotation3dEvent extends Event{ public static const ROTATION_COMMAND:String="graphic_player_10_cube_be_nascom_flash_threeD_Rotation3dEvent.rotation_command"; public var rotationX:Number; public var rotationY:Number; public var rotationZ:Number; public function graphic_player_10_cube_be_nascom_flash_threeD_Rotation3dEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false){ super(type, bubbles, cancelable); } override public function toString():String{ return "graphic_player_10_cube_be_nascom_flash_threeD_Rotation3dEvent{type:"+type+" , rotationX:"+rotationX+" , rotationY:"+rotationY+" , rotationZ:"+rotationZ+"}" } override public function clone():Event{ var c:graphic_player_10_cube_be_nascom_flash_threeD_Rotation3dEvent=new graphic_player_10_cube_be_nascom_flash_threeD_Rotation3dEvent(type,bubbles,cancelable); c.rotationX=this.rotationX; c.rotationY=this.rotationY; c.rotationZ=this.rotationZ; return c; } } }