function LineAngle( x1:Number, y1:Number, x2:Number, y2:Number) : Number { return (Math.atan2(y2-y1, x2-x1) * (180/Math.PI)); }