Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Ceil(float)

Returns the smallest integer greater than or equal to f.
Read time 1 minuteLast updated 8 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static float Ceil(float f)

Parameters

Returns

Type

Description

float

Examples

using UnityEngine;using System.Collections;public class ExampleClass : MonoBehaviour{ void Example() { // Prints 10 Debug.Log(Mathf.Ceil(10.0F)); // Prints 11 Debug.Log(Mathf.Ceil(10.2F)); // Prints 11 Debug.Log(Mathf.Ceil(10.7F)); // Prints -10 Debug.Log(Mathf.Ceil(-10.0F)); // Prints -10 Debug.Log(Mathf.Ceil(-10.2F)); // Prints -10 Debug.Log(Mathf.Ceil(-10.7F)); }}