Mathf.Min
static function Min(a: float, b: float): float;
static float Min(float a, float b);
static def Min(a as float, b as float) as float
static function Min(params values: float[]): float;
static float Min(params float[] values);
static def Min(*values as float[]) as float
Description

Returns the smallest of two or more values.

	// prints 1.2
	print(Mathf.Min(1.2, 2.4));
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        print(Mathf.Min(1.2F, 2.4F));
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		print(Mathf.Min(1.2F, 2.4F))

static function Min(a: int, b: int): int;
static int Min(int a, int b);
static def Min(a as int, b as int) as int
static function Min(params values: int[]): int;
static int Min(params int[] values);
static def Min(*values as int[]) as int
Description

Returns the smallest of two or more values.

	// prints 1
	print(Mathf.Min(1, 2));
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        print(Mathf.Min(1, 2));
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		print(Mathf.Min(1, 2))