Page Summary
-
Plane.Type is an enum used for filtering based on the normal vector of a plane.
-
It defines different types of planes including HORIZONTAL_DOWNWARD_FACING, HORIZONTAL_UPWARD_FACING, and VERTICAL.
-
Plane.Type inherits methods from java.lang.Enum and java.lang.Object.
-
It also inherits methods from the Constable and Comparable interfaces.
public static final enum
Plane.Type
Simple summary of the normal vector of a plane, for filtering purposes.
Inherited Methods
Enum Values
public static final Plane.Type HORIZONTAL_DOWNWARD_FACING
HORIZONTAL_DOWNWARD_FACING
public static final Plane.Type HORIZONTAL_DOWNWARD_FACING
A horizontal plane facing downward (e.g. a ceiling).
public static final Plane.Type HORIZONTAL_UPWARD_FACING
HORIZONTAL_UPWARD_FACING
public static final Plane.Type HORIZONTAL_UPWARD_FACING
A horizontal plane facing upward (e.g. floor or tabletop).
public static final Plane.Type VERTICAL
VERTICAL
public static final Plane.Type VERTICAL
A vertical plane (e.g. a wall).