Range
| Kind of class: | public class | 
|---|---|
| Package: | |
| Inherits from: | 
 | 
| Version: | 03/26/10 | 
| Author: | Aaron Clinger, Mike Creighton | 
| Classpath: | org.casalib.math.Range | 
| File last modified: | Friday, 20 May 2011, 00:59:44 | 
				► View source▼ Hide source	
	/*
    CASA Lib for ActionScript 3.0
    Copyright (c) 2011, Aaron Clinger & Contributors of CASA Lib
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    
    - Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    
    - Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    
    - Neither the name of the CASA Lib nor the names of its contributors
      may be used to endorse or promote products derived from this software
      without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/
package org.casalib.math {
    import org.casalib.math.Percent;
    
    /**
        Creates a standardized way of describing and storing an extent of variation/a value range.
        
        @author Aaron Clinger
        @author Mike Creighton
        @version 03/26/10
    */
    public class Range {
        protected var _end:Number;
        protected var _start:Number;
        
        
        /**
            Creates and defines a Range object.
            
            @param start: Beginning value of the range.
            @param end: Ending value of the range.
            @usageNote You are not required to define the range in the contructor you can do it at any point by calling {@link #setRange}.
        */
        public function Range(start:Number, end:Number) {
            super();
            
            this.setRange(start, end);
        }
        
        /**
            Defines or redefines range.
            
            @param start: Beginning value of the range.
            @param end: Ending value of the range.
        */
        public function setRange(start:Number, end:Number):void {
            this.start = start;
            this.end   = end;
        }
        
        /**
            The start value of the range.
        */
        public function get start():Number {
            return this._start;
        }
        
        public function set start(value:Number):void {
            this._start = value;
        }
        
        /**
            The end value of the range.
        */
        public function get end():Number {
            return this._end;
        }
        
        public function set end(value:Number):void {
            this._end = value;
        }
        
        /**
            The minimum or smallest value of the range.
        */
        public function get min():Number {
            return Math.min(this.start, this.end);
        }
        
        /**
            The maximum or largest value of the range.
        */
        public function get max():Number {
            return Math.max(this.start, this.end);
        }
        
        /**
            Determines if value is included in the range including the range's start and end values.
            
            @return Returns true if value was included in range; otherwise false.
        */
        public function isWithinRange(value:Number):Boolean {
            return (value <= this.max && value >= this.min);
        }
        
        /**
            Calculates the percent of the range.
            
            @param percent: A {@link Percent} object.
            @return The value the percent represent of the range.
        */
        public function getValueOfPercent(percent:Percent):Number {
            var min:Number;
            var max:Number;
            var val:Number;
            var per:Percent = percent.clone();
            
            if (this.start <= this.end) {
                min = this.start;
                max = this.end;
            } else {
                per.decimalPercentage = 1 - per.decimalPercentage;
                
                min = this.end;
                max = this.start;
            }
            
            val = Math.abs(max - min) * per.decimalPercentage + min;
            
            return val;
        }
        
        /**
            Returns the percentage the value represents out of the range.
            
            @param value: An integer.
            @return A Percent object.
        */
        public function getPercentOfValue(value:Number):Percent {
            return new Percent((value - this.min) / (this.max - this.min));
        }
        
        /**
            Determines if the range specified by the range parameter is equal to this range object.
            
            @param percent: A Range object.
            @return Returns true if ranges are identical; otherwise false.
        */
        public function equals(range:Range):Boolean {
            return this.start == range.start && this.end == range.end;
        }
        
        /**
            Determines if this range and the range specified by the range parameter overlap.
            
            @param A Range object.
            @return Returns true if this range contains any value of the range specified; otherwise false.
        */
        public function overlaps(range:Range):Boolean {
            if (this.equals(range) || this.contains(range) || range.contains(this) || this.isWithinRange(range.start) || this.isWithinRange(range.end))
                return true;
            
            return false;
        }
        
        /**
            Determines if this range contains the range specified by the range parameter.
            
            @param A Range object.
            @return Returns true if this range contains all values of the range specified; otherwise false.
        */
        public function contains(range:Range):Boolean {
            return this.start <= range.start && this.end >= range.end;
        }
        
        /**
            @return A new range object with the same values as this range.
        */
        public function clone():Range {
            return new Range(this.start, this.end);
        }
    }
}
	Creates a standardized way of describing and storing an extent of variation/a value range.
									Summary
					Constructor
					
							- 								
								Range
																(start:Number, end:Number)																- Creates and defines a Range object.
 
					Instance properties
					
									
							
					Instance methods
					
					- 								
								setRange
																(start:Number, end:Number) : void																- Defines or redefines range.
 
- 								
								isWithinRange
																(value:Number) : Boolean																- Determines if value is included in the range including the range's start and end values.
 
- 								
								getValueOfPercent
																(percent:Percent) : Number																- Calculates the percent of the range.
 
- 								
								getPercentOfValue
																(value:Number) : Percent																- Returns the percentage the value represents out of the range.
 
- 								
								equals
																(range:Range) : Boolean																- Determines if the range specified by the range parameter is equal to this range object.
 
- 								
								overlaps
																(range:Range) : Boolean																- Determines if this range and the range specified by the range parameter overlap.
 
- 								
								contains
																(range:Range) : Boolean																- Determines if this range contains the range specified by the range parameter.
 
- clone () : Range
Constructor
Range
							function Range(start:Number,
               end:Number)						
											Creates and defines a Range object.
			Parameters
						
					
					
	
		start:Beginning value of the range.	
						
		end  :Ending value of the range.	
					
			Usage note
					
					
					
	- You are not required to define the range in the contructor you can do it at any point by calling setRange.
Instance properties
end
							end:Number(read,write)						
											The end value of the range.
max
							max:Number(read)						
											The maximum or largest value of the range.
min
							min:Number(read)						
											The minimum or smallest value of the range.
start
							start:Number(read,write)						
											The start value of the range.
Instance methods
contains
							function contains(range:Range) : Boolean						
											Determines if this range contains the range specified by the range parameter.
			Parameters
						
					
					
	
		A:Range object.	
					
			Returns
					
					
					
	- 
					Returns trueif this range contains all values of the range specified; otherwisefalse.
equals
							function equals(range:Range) : Boolean						
											Determines if the range specified by the range parameter is equal to this range object.
			Parameters
						
					
					
	
		percent:A Range object.	
					
			Returns
					
					
					
	- 
					Returns trueif ranges are identical; otherwisefalse.
getPercentOfValue
							function getPercentOfValue(value:Number) : Percent						
											Returns the percentage the value represents out of the range.
			Parameters
						
					
					
	
		value:An integer.	
					
			Returns
					
					
					
	- A Percent object.
getValueOfPercent
							function getValueOfPercent(percent:Percent) : Number						
											Calculates the percent of the range.
			Returns
					
					
					
	- The value the percent represent of the range.
isWithinRange
							function isWithinRange(value:Number) : Boolean						
											Determines if value is included in the range including the range's start and end values.
			Returns
					
					
					
	- 
					Returns trueif value was included in range; otherwisefalse.
overlaps
							function overlaps(range:Range) : Boolean						
											Determines if this range and the range specified by the range parameter overlap.
			Parameters
						
					
					
	
		A:Range object.	
					
			Returns
					
					
					
	- 
					Returns trueif this range contains any value of the range specified; otherwisefalse.
setRange
							function setRange(start:Number,
                  end:Number) : void						
											Defines or redefines range.
			Parameters
						
					
					
	
		start:Beginning value of the range.	
						
		end  :Ending value of the range.