static function Abs (f : float) : float
Description
Returns the absolute value of f.
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
print(
Mathf.Abs(-10.5F));
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
print(
Mathf.Abs(-10.5F))
static function Abs (value : int) : int
Description
Returns the absolute value of value.
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
print(
Mathf.Abs(-10));
}
}