Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


CeilToInt

Converts a Vector3 to a Vector3Int by doing a Ceiling to each value.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule

CeilToInt(Vector3)

Converts a Vector3 to a Vector3Int by doing a Ceiling to each value.
public static Vector3Int CeilToInt(Vector3 v)

Parameters

The Vector3 to convert.

Returns

Type

Description

Vector3IntThe converted vector as a Vector3Int.

Remarks

As there is a conversion of float to integer, there is a loss of precision.

CeilToInt(Vector3)

Converts a Vector3 to a Vector3Int by doing a Ceiling to each value.
public static Vector3Int CeilToInt(in Vector3 v)

Parameters

The Vector3 to convert.

Returns

Type

Description

Vector3IntThe converted vector as a Vector3Int.

Remarks

As there is a conversion of float to integer, there is a loss of precision.