package com.zehfernando.utils { /** * @author Zeh Fernando - z at zeh.com.br */ public class MathUtils { // Written from scratch, but Francis' ca.nectere.math.MathBase should be all one needs // This is just to make a separate class for the distribution of com.zehfernando.data.Color /** * Clamps a number to a range, by restricting it to a minimum and maximum values: if the passed value is lower than the minimum value, it's replaced by the minimum; if it's higher than the maximum value, it's replaced by the maximum; if not, it's unchanged. * @param __value The value to be clamped. * @param __min Minimum value allowed. * @param __max Maximum value allowed. * @return The newly clamped value. */ public static function clamp(__value:Number, __min:Number = 0, __max:Number = 1): Number { return __value < __min ? __min : __value > __max ? __max : __value; } /** * Maps a value from a range, determined by old minimum and maximum values, to a new range, determined by new minimum and maximum values. These minimum and maximum values are referential; the new value is not clamped by them. * @param __value The value to be re-mapped. * @param __oldMin The previous minimum value. * @param __oldMax The previous maximum value. * @param __newMin The new minimum value. * @param __newMax The new maximum value. * @return The new value, mapped to the new range. */ public static function map(__value:Number, __oldMin:Number, __oldMax:Number, __newMin:Number = 0, __newMax:Number = 1, __clamp:Boolean = false): Number { if (__oldMin == __oldMax) return __newMin; var p:Number = ((__value-__oldMin) / (__oldMax-__oldMin) * (__newMax-__newMin)) + __newMin; if (__clamp) p = __newMin < __newMax ? clamp(p, __newMin, __newMax) : clamp(p, __newMax, __newMin); return p; } /** * Clamps a value to a range, by restricting it to a minimum and maximum values but folding the value to the range instead of simply resetting to the minimum and maximum. It works like a more powerful Modulo function. * @param __value The value to be clamped. * @param __min Minimum value allowed. * @param __max Maximum value allowed. * @return The newly clamped value. * @example Some examples: *