package com.aderowbotham.utils.calc { /** * @project ajr_utils * This is required by CalcTools * @author Ade Rowbotham | www.aderowbotham.com * @copyright 2008 **/ public class CalcReturnObject { //variables can be set internally (by CalcTools) internal var mainAxis:String; internal var polarity:int; internal var velocity:Number; // internal function CalcReturnObject() { // // } //getters public function getMainAxis():String{ return mainAxis; } public function getPolarity():int{ return polarity; } public function getVelocity():Number{ return velocity; } } }