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
49 lines
1.2 KiB
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
|
|
}
|
|
}
|