Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.Abs

static function Abs(f: float): float;

Description

Returns the absolute value of f.

	// prints 10.5
	print(Mathf.Abs(-10.5));
static function Abs(value: int): int;

Description

Returns the absolute value of value.

	// prints 10
	print(Mathf.Abs(-10));