Class S2Projections.FaceSiTi

  • Enclosing class:
    S2Projections

    static final class S2Projections.FaceSiTi
    extends java.lang.Object
    A [face, si, ti] position. This is package private for now, since we may want to rework the class to use 32-bit ints instead.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int face
      The face on which the position exists.
      long si
      The si coordinate.
      long ti
      The ti coordinate.
    • Constructor Summary

      Constructors 
      Constructor Description
      FaceSiTi​(int face, long si, long ti)
      Package private constructor.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • face

        public final int face
        The face on which the position exists.
      • si

        public final long si
        The si coordinate. See S2Projections for details.
      • ti

        public final long ti
        The ti coordinate. See S2Projections for details.
    • Constructor Detail

      • FaceSiTi

        FaceSiTi​(int face,
                 long si,
                 long ti)
        Package private constructor. Only S2 should create these for now.