Record Class GuiTransform.AxisAligned

java.lang.Object
java.lang.Record
com.render.api.gui.effects.GuiTransform.AxisAligned
Record Components:
scaleX - horizontal scale
scaleY - vertical scale
offsetX - horizontal translation
offsetY - vertical translation
Enclosing class:
GuiTransform

public static record GuiTransform.AxisAligned(float scaleX, float scaleY, float offsetX, float offsetY) extends Record
Resolved portable axis-aligned transform used by paint and input.
  • Constructor Details

    • AxisAligned

      public AxisAligned(float scaleX, float scaleY, float offsetX, float offsetY)
      Creates an instance of a AxisAligned record class.
      Parameters:
      scaleX - the value for the scaleX record component
      scaleY - the value for the scaleY record component
      offsetX - the value for the offsetX record component
      offsetY - the value for the offsetY record component
  • Method Details

    • transform

      public GuiTransform.Point transform(float x, float y)
    • inverse

      public GuiTransform.Point inverse(float x, float y)
    • 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
    • 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.
    • scaleX

      public float scaleX()
      Returns the value of the scaleX record component.
      Returns:
      the value of the scaleX record component
    • scaleY

      public float scaleY()
      Returns the value of the scaleY record component.
      Returns:
      the value of the scaleY record component
    • offsetX

      public float offsetX()
      Returns the value of the offsetX record component.
      Returns:
      the value of the offsetX record component
    • offsetY

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