Record Class UVPair

java.lang.Object
java.lang.Record
net.minecraft.client.model.geom.builders.UVPair

public record UVPair(float u, float v) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final float
    The field for the u record component.
    private final float
    The field for the v record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    UVPair(float u, float v)
    Creates an instance of a UVPair record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    static long
    pack(float u, float v)
     
    Returns a string representation of this record class.
    float
    u()
    Returns the value of the u record component.
    static float
    unpackU(long packedUV)
     
    static float
    unpackV(long packedUV)
     
    float
    v()
    Returns the value of the v record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • u

      private final float u
      The field for the u record component.
    • v

      private final float v
      The field for the v record component.
  • Constructor Details

    • UVPair

      public UVPair(float u, float v)
      Creates an instance of a UVPair record class.
      Parameters:
      u - the value for the u record component
      v - the value for the v record component
  • Method Details

    • toString

      public 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
    • pack

      public static long pack(float u, float v)
    • unpackU

      public static float unpackU(long packedUV)
    • unpackV

      public static float unpackV(long packedUV)
    • 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
    • equals

      public final 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 the compare method from their corresponding wrapper classes.
      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.
    • u

      public float u()
      Returns the value of the u record component.
      Returns:
      the value of the u record component
    • v

      public float v()
      Returns the value of the v record component.
      Returns:
      the value of the v record component