flash on 2015-2-12

by hemingway
♥0 | Line 15 | Modified 2015-02-12 12:54:16 | MIT License
play

ActionScript3 source code

/**
 * Copyright hemingway ( http://wonderfl.net/user/hemingway )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/uGx9F
 */

package {
    import flash.display.Sprite;
    import flash.display.Bitmap;
    import flash.display.BitmapData;
    
    public class FlashTest extends Sprite {
        private var _p:Vector.<Vector.<int>>;
        private var _canvas:Bitmap;
        private var _data:BitmapData;
        
        public function FlashTest() {
            this._data = new BitmapData(465, 465, true);
            this._canvas = new Bitmap(this._data);
            this._p = new Vector.<int>(new <int> []);
        }
    }
}