$max ) swap( $min, $max ); // Clamp the value. $x = $value; $x = min( $x, $max ); $x = max( $x, $min ); return $x; } /* PRIVATE */ /** * Only use this class as a utility.. */ private function __construct() { // Intentionally blank.. } } ?>