flash on 2011-9-26
♥0 |
Line 28 |
Modified 2011-09-26 10:28:26 |
MIT License
archived:2017-03-30 22:04:28
ActionScript3 source code
/**
* Copyright bradsedito ( http://wonderfl.net/user/bradsedito )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/y44d
*/
package
{
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import com.greensock.*;
import com.greensock.easing.*;
import net.hires.debug.Stats;
public class Node3D extends Sprite
{
public var _id : uint;
public var _point : Point;
public function Node3D()
{
function Node(id:uint,x:Number,y:Number):void
{
_id = id;
_point = new Point(x,y);
}
}
function get id() :uint {
return _id;
}
function get point() : Point {
return _point;
}
}
}