Math
Summary
Provides useful mathematical functions.
Methods
Name Description
int Ceiling(float) Returns the smallest integer value which is greater or equal to the specified floating point number.
int Floor(float) Returns the largest integer value which is lesser or equal to the specified floating point number.
int Max(int,int) Retrieves the greater of the specified integers.
short Max(short,short) Retrieves the greater of the specified short integers.
float Max(float,float) Retrieves the greater of the specified floating point numbers.
int Min(int,int) Retrieves the lesser of the specified integers.
short Min(short,short) Retrieves the lesser of the specified short integers.
float Min(float,float) Retrieves the lesser of the specified floating point numbers.
int Round(float) Rounds the specified floating point value to the nearest integer value.

Return to: Index