Enum OctTreeNode.OctTreeZone

    • Enum Constant Detail

      • NORTH_WEST_FRONT

        public static final OctTreeNode.OctTreeZone NORTH_WEST_FRONT
        This is the index of the child that correspond to the voxel at north-west and front position.
      • NORTH_WEST_BACK

        public static final OctTreeNode.OctTreeZone NORTH_WEST_BACK
        This is the index of the child that correspond to the voxel at north-west and back position.
      • NORTH_EAST_FRONT

        public static final OctTreeNode.OctTreeZone NORTH_EAST_FRONT
        This is the index of the child that correspond to the voxel at north-east and front position.
      • NORTH_EAST_BACK

        public static final OctTreeNode.OctTreeZone NORTH_EAST_BACK
        This is the index of the child that correspond to the voxel at north-east and back position.
      • SOUTH_WEST_FRONT

        public static final OctTreeNode.OctTreeZone SOUTH_WEST_FRONT
        This is the index of the child that correspond to the voxel at south-west and front position.
      • SOUTH_WEST_BACK

        public static final OctTreeNode.OctTreeZone SOUTH_WEST_BACK
        This is the index of the child that correspond to the voxel at south-west and back position.
      • SOUTH_EAST_FRONT

        public static final OctTreeNode.OctTreeZone SOUTH_EAST_FRONT
        This is the index of the child that correspond to the voxel at south-east and front position.
      • SOUTH_EAST_BACK

        public static final OctTreeNode.OctTreeZone SOUTH_EAST_BACK
        This is the index of the child that correspond to the voxel at south-east and back position.
    • Method Detail

      • values

        public static OctTreeNode.OctTreeZone[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (OctTreeNode.OctTreeZone c : OctTreeNode.OctTreeZone.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OctTreeNode.OctTreeZone valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • fromInteger

        @Pure
        public static OctTreeNode.OctTreeZone fromInteger​(int index)
        Replies the zone corresponding to the given index. The index is the same as the ordinal value of the enumeration. If the given index does not correspond to an ordinal value, null is replied.
        Parameters:
        index - the index.
        Returns:
        the zone or null