| Abs | 
                    Returns the absolute value of f. | 
                  
    
                    | Acos | 
                    Returns the arc-cosine of f - the angle in radians whose cosine is f. | 
                  
    
                    | Approximately | 
                    類似している2 つのFloat型の値を比較します
 | 
                  
    
                    | Asin | 
                    Returns the arc-sine of f - the angle in radians whose sine is f. | 
                  
    
                    | Atan | 
                    Returns the arc-tangent of f - the angle in radians whose tangent is f. | 
                  
    
                    | Atan2 | 
                    Returns the angle in radians whose Tan is y/x.
 | 
                  
    
                    | Ceil | 
                    Returns the smallest integer greater to or equal to f. | 
                  
    
                    | CeilToInt | 
                    Returns the smallest integer greater to or equal to f. | 
                  
    
                    | Clamp | 
                    Clamps a value between a minimum float and maximum float value. | 
                  
    
                    | Clamp01 | 
                    Clamps value between 0 and 1 and returns value. | 
                  
    
                    | ClosestPowerOfTwo | 
                    Returns the closest power of two value. | 
                  
    
                    | Cos | 
                    Returns the cosine of angle f in radians. | 
                  
    
                    | DeltaAngle | 
                    Calculates the shortest difference between two given angles. | 
                  
    
                    | Exp | 
                    Returns e raised to the specified power. | 
                  
    
                    | Floor | 
                    Returns the largest integer smaller to or equal to f. | 
                  
    
                    | FloorToInt | 
                    Returns the largest integer smaller to or equal to f. | 
                  
    
                    | GammaToLinearSpace | 
                    ガンマから線形のカラー空間へ値を変換します | 
                  
    
                    | InverseLerp | 
                    2 つの値の Lerp 関数のパラメーターを算出します | 
                  
    
                    | IsPowerOfTwo | 
                    値が2 のべき乗のときに、trueを返す。 | 
                  
    
                    | Lerp | 
                    Interpolates between a and b by t. t is clamped between 0 and 1.
 | 
                  
    
                    | LerpAngle | 
                    Same as Lerp but makes sure the values interpolate correctly when they wrap around 360 degrees.
 | 
                  
    
                    | LinearToGammaSpace | 
                    Converts the given value from linear to gamma color space. | 
                  
    
                    | Log | 
                    Returns the logarithm of a specified number in a specified base. | 
                  
    
                    | Log10 | 
                    Returns the base 10 logarithm of a specified number. | 
                  
    
                    | Max | 
                    Returns largest of two or more values. | 
                  
    
                    | Min | 
                    Returns the smallest of two or more values. | 
                  
    
                    | MoveTowards | 
                    
        target  引数から target 引数まで、/maxDelta/ 引数のスピードで移動します。
 | 
                  
    
                    | MoveTowardsAngle | 
                    
        MoveTowards 関数と機能は同じだが、360 度の折り返しに対応しています
 | 
                  
    
                    | NextPowerOfTwo | 
                    値以上の最も近い2 のべき乗を返します | 
                  
    
                    | PerlinNoise | 
                    2D のパーリンノイズを生成します
 | 
                  
    
                    | PingPong | 
                    PingPongs the value t, so that it is never larger than length and never smaller than 0.
 | 
                  
    
                    | Pow | 
                    Returns f raised to power p. | 
                  
    
                    | Repeat | 
                    Loops the value t, so that it is never larger than length and never smaller than 0.
 | 
                  
    
                    | Round | 
                    Returns f rounded to the nearest integer.
 | 
                  
    
                    | RoundToInt | 
                    Returns f rounded to the nearest integer.
 | 
                  
    
                    | Sign | 
                    Returns the sign of f.
 | 
                  
    
                    | Sin | 
                    Returns the sine of angle f in radians. | 
                  
    
                    | SmoothDamp | 
                    Gradually changes a value towards a desired goal over time.
 | 
                  
    
                    | SmoothDampAngle | 
                    Gradually changes an angle given in degrees towards a desired goal angle over time.
 | 
                  
    
                    | SmoothStep | 
                    Interpolates between min and max with smoothing at the limits.
 | 
                  
    
                    | Sqrt | 
                    Returns square root of f. | 
                  
    
                    | Tan | 
                    Returns the tangent of angle f in radians. |