IBounds.cs 217 B

12345678910111213
  1. namespace Rokid.UXR.Interaction {
  2. using UnityEngine;
  3. public interface IBounds
  4. {
  5. /// <summary>
  6. /// The world space axis-aligned bounding box (AABB)
  7. /// </summary>
  8. Bounds Bounds { get; }
  9. }
  10. }