SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

4 years ago
  1. namespace UnityEngine.XR.ARSubsystems
  2. {
  3. /// <summary>
  4. /// Represents the alignment of a plane, e.g., whether it is horizontal or vertical.
  5. /// </summary>
  6. /// <seealso cref="BoundedPlane.classification"/>
  7. public enum PlaneClassification
  8. {
  9. /// <summary>
  10. /// The plane does not match any available classification
  11. /// </summary>
  12. None = 0,
  13. /// <summary>
  14. /// The plane is horizontal with an upward facing normal, e.g., a floor.
  15. /// </summary>
  16. Wall,
  17. /// <summary>
  18. /// The plane is classified as the floor.
  19. /// </summary>
  20. Floor,
  21. /// <summary>
  22. /// The plane is classified as the ceiling.
  23. /// </summary>
  24. Ceiling,
  25. /// <summary>
  26. /// The plane is classified as a table.
  27. /// </summary>
  28. Table,
  29. /// <summary>
  30. /// The plane is classified as a seat.
  31. /// </summary>
  32. Seat,
  33. /// <summary>
  34. /// The plane is classified as a door.
  35. /// </summary>
  36. Door,
  37. /// <summary>
  38. /// The plane is classified as a window.
  39. /// </summary>
  40. Window
  41. }
  42. }