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.
|
|
namespace UnityEngine.XR.ARSubsystems{ /// <summary>
/// Represents the alignment of a plane, e.g., whether it is horizontal or vertical.
/// </summary>
/// <seealso cref="BoundedPlane.classification"/>
public enum PlaneClassification { /// <summary>
/// The plane does not match any available classification
/// </summary>
None = 0,
/// <summary>
/// The plane is horizontal with an upward facing normal, e.g., a floor.
/// </summary>
Wall,
/// <summary>
/// The plane is classified as the floor.
/// </summary>
Floor,
/// <summary>
/// The plane is classified as the ceiling.
/// </summary>
Ceiling,
/// <summary>
/// The plane is classified as a table.
/// </summary>
Table,
/// <summary>
/// The plane is classified as a seat.
/// </summary>
Seat,
/// <summary>
/// The plane is classified as a door.
/// </summary>
Door,
/// <summary>
/// The plane is classified as a window.
/// </summary>
Window }}
|