Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ClosestPoint

The closest point on the bounding box.
Read time 1 minuteLast updated 9 days ago

Definition

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

ClosestPoint(Vector3)

The closest point on the bounding box.
public readonly Vector3 ClosestPoint(Vector3 point)

Parameters

point

Arbitrary point.

Returns

Type

Description

Vector3The point on the bounding box or inside the bounding box.

Remarks

If the point is inside the bounding box, unmodified point position will be returned.

ClosestPoint(Vector3)

The closest point on the bounding box.
public readonly Vector3 ClosestPoint(in Vector3 point)

Parameters

point

Arbitrary point.

Returns

Type

Description

Vector3The point on the bounding box or inside the bounding box.

Remarks

If the point is inside the bounding box, unmodified point position will be returned.