Mathf
.CeilToInt
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
Mathf
Mathf
.CeilToInt
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
Mathf
All Members
Class Variables
Deg2Rad
Epsilon
Infinity
NegativeInfinity
PI
Rad2Deg
Class Functions
Abs
Acos
Approximately
Asin
Atan
Atan2
Ceil
CeilToInt
Clamp
Clamp01
ClosestPowerOfTwo
Cos
DeltaAngle
Exp
Floor
FloorToInt
InverseLerp
IsPowerOfTwo
Lerp
LerpAngle
Log
Log10
Max
Min
MoveTowards
MoveTowardsAngle
NextPowerOfTwo
PingPong
Pow
Repeat
Round
RoundToInt
Sign
Sin
SmoothDamp
SmoothDampAngle
SmoothStep
Sqrt
Tan
static
function
CeilToInt (f :
float
) :
int
Description
Returns the smallest integer greater to or equal to
f
.
JavaScripts
JavaScript
C#
Boo
// Prints 10
Debug.Log
(
Mathf.CeilToInt
(10.0));
// Prints 11
Debug.Log
(
Mathf.CeilToInt
(10.2));
// Prints 11
Debug.Log
(
Mathf.CeilToInt
(10.7));
// Prints -10
Debug.Log
(
Mathf.CeilToInt
(-10.0));
// Prints -10
Debug.Log
(
Mathf.CeilToInt
(-10.2));
// Prints -10
Debug.Log
(
Mathf.CeilToInt
(-10.7));
using UnityEngine;
using System.Collections;
public
class
example :
MonoBehaviour
{
void
Awake
() {
Debug.Log
(
Mathf.CeilToInt
(10.0F));
Debug.Log
(
Mathf.CeilToInt
(10.2F));
Debug.Log
(
Mathf.CeilToInt
(10.7F));
Debug.Log
(
Mathf.CeilToInt
(-10.0F));
Debug.Log
(
Mathf.CeilToInt
(-10.2F));
Debug.Log
(
Mathf.CeilToInt
(-10.7F));
}
}
import
UnityEngine
import
System.Collections
class
example(
MonoBehaviour
):
def
Awake
():
Debug.Log
(
Mathf.CeilToInt
(10.0F))
Debug.Log
(
Mathf.CeilToInt
(10.2F))
Debug.Log
(
Mathf.CeilToInt
(10.7F))
Debug.Log
(
Mathf.CeilToInt
(-10.0F))
Debug.Log
(
Mathf.CeilToInt
(-10.2F))
Debug.Log
(
Mathf.CeilToInt
(-10.7F))