/** * Neave Imagination // Imagination Point * * Copyright (C) 2008 Paul Neave * http://www.neave.com/ * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation at http://www.gnu.org/licenses/gpl.html */ package // com.neave.imagination { internal class lib_present_graphic_imagination_com_neave_imagination_ImaginationPoint { // Position variables internal var x:Number; internal var y:Number; // Movement variables internal var dx:Number; internal var dy:Number; // Other variables internal var size:Number; internal var color:uint; /** * Declares a 'Neave Imagination' point, a point with extra properties * * @param x The x position * @param y The y position * @param dx The movement in the x-axis * @param dy The movement in the y-axis * @param size The size of the line * @param color The colour of the line */ public function lib_present_graphic_imagination_com_neave_imagination_ImaginationPoint(x:Number, y:Number, dx:Number, dy:Number, size:Number, color:uint) { this.x = x; this.y = y; this.dx = dx; this.dy = dy; this.size = size; this.color = color; } } }