Version: 2022.3
LanguageEnglish
  • C#

Mathf

struct in UnityEngine

/

Implemented in:UnityEngine.CoreModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Description

A collection of common math functions.

Static Properties

Deg2RadDegrees-to-radians conversion constant (Read Only).
EpsilonA tiny floating point value (Read Only).
InfinityA representation of positive infinity (Read Only).
NegativeInfinityA representation of negative infinity (Read Only).
PIThe well-known 3.14159265358979... value (Read Only).
Rad2DegRadians-to-degrees conversion constant (Read Only).

Static Methods

AbsReturns the absolute value of f.
AcosReturns the arc-cosine of f - the angle in radians whose cosine is f.
ApproximatelyCompares two floating point values and returns true if they are similar.
AsinReturns the arc-sine of f - the angle in radians whose sine is f.
AtanReturns the arc-tangent of f - the angle in radians whose tangent is f.
Atan2Returns the angle in radians whose Tan is y/x.
CeilReturns the smallest integer greater to or equal to f.
CeilToIntReturns the smallest integer greater to or equal to f.
ClampClamps the given value between the given minimum float and maximum float values. Returns the given value if it is within the minimum and maximum range.
Clamp01Clamps value between 0 and 1 and returns value.
ClosestPowerOfTwoReturns the closest power of two value.
CorrelatedColorTemperatureToRGBConvert a color temperature in Kelvin to RGB color.
CosReturns the cosine of angle f.
DeltaAngleCalculates the shortest difference between two given angles given in degrees.
ExpReturns e raised to the specified power.
FloatToHalfEncode a floating point value into a 16-bit representation.
FloorReturns the largest integer smaller than or equal to f.
FloorToIntReturns the largest integer smaller to or equal to f.
GammaToLinearSpaceConverts the given value from gamma (sRGB) to linear color space.
HalfToFloatConvert a half precision float to a 32-bit floating point value.
InverseLerpDetermines where a value lies between two points.
IsPowerOfTwoReturns true if the value is power of two.
LerpLinearly interpolates between a and b by t.
LerpAngleSame as Lerp but makes sure the values interpolate correctly when they wrap around 360 degrees.
LerpUnclampedLinearly interpolates between a and b by t with no limit to t.
LinearToGammaSpaceConverts the given value from linear to gamma (sRGB) color space.
LogReturns the logarithm of a specified number in a specified base.
Log10Returns the base 10 logarithm of a specified number.
MaxReturns largest of two or more values.
MinReturns the smallest of two or more values.
MoveTowardsMoves a value current towards target.
MoveTowardsAngleSame as MoveTowards but makes sure the values interpolate correctly when they wrap around 360 degrees.
NextPowerOfTwoReturns the next power of two that is equal to, or greater than, the argument.
PerlinNoiseGenerate 2D Perlin noise.
PerlinNoise1DGenerates a 1D pseudo-random pattern of float values across a 2D plane.
PingPongPingPong returns a value that will increment and decrement between the value 0 and length.
PowReturns f raised to power p.
RepeatLoops the value t, so that it is never larger than length and never smaller than 0.
RoundReturns f rounded to the nearest integer.
RoundToIntReturns f rounded to the nearest integer.
SignReturns the sign of f.
SinReturns the sine of angle f.
SmoothDampGradually changes a value towards a desired goal over time.
SmoothDampAngleGradually changes an angle given in degrees towards a desired goal angle over time.
SmoothStepInterpolates between min and max with smoothing at the limits.
SqrtReturns square root of f.
TanReturns the tangent of angle f in radians.