Record Class ImplicitTileCoordinate

java.lang.Object
java.lang.Record
com.gaia3d.process.tileprocess.tile.tileset.implicit.ImplicitTileCoordinate

public record ImplicitTileCoordinate(int level, int x, int y, int z) extends Record
  • Constructor Details

    • ImplicitTileCoordinate

      public ImplicitTileCoordinate(int level, int x, int y, int z)
      Creates an instance of a ImplicitTileCoordinate record class.
      Parameters:
      level - the value for the level record component
      x - the value for the x record component
      y - the value for the y record component
      z - the value for the z record component
  • Method Details

    • root

      public static ImplicitTileCoordinate root()
    • octreeChildIndex

      public static int octreeChildIndex(char childCode)
    • child

      public ImplicitTileCoordinate child(char childCode)
    • child

      public ImplicitTileCoordinate child(int childIndex, SubdivisionScheme subdivisionScheme)
    • ancestor

      public ImplicitTileCoordinate ancestor(int ancestorLevel)
    • toContentPath

      public String toContentPath(String rootCode)
    • toContentPath

      public String toContentPath(String rootCode, SubdivisionScheme subdivisionScheme)
    • toQuadtreeContentPath

      public String toQuadtreeContentPath(String rootCode)
    • localMortonIndex

      public int localMortonIndex(int localLevel, ImplicitTileCoordinate subtreeRoot, SubdivisionScheme subdivisionScheme)
    • equals

      public boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • level

      public int level()
      Returns the value of the level record component.
      Returns:
      the value of the level record component
    • x

      public int x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public int y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • z

      public int z()
      Returns the value of the z record component.
      Returns:
      the value of the z record component