Record Class ModelElementRotation.OfAxisAngle

java.lang.Object
java.lang.Record
net.minecraft.client.render.model.json.ModelElementRotation.OfAxisAngle
Record Components:
axis -
angle -
All Implemented Interfaces:
ModelElementRotation.RotationValue
Enclosing class:
ModelElementRotation

@Environment(CLIENT) public static record ModelElementRotation.OfAxisAngle(Direction.Axis axis, float angle) extends Record implements ModelElementRotation.RotationValue
Mappings:
Namespace Name
named net/minecraft/client/render/model/json/ModelElementRotation$OfAxisAngle
intermediary net/minecraft/class_789$class_12354
official hqd$c
named axis
intermediary comp_5250
official a
named angle
intermediary comp_5251
official b
  • Field Details

    • axis

      private final Direction.Axis axis
      The field for the axis record component.
    • angle

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

    • OfAxisAngle

      public OfAxisAngle(Direction.Axis axis, float angle)
      Creates an instance of a OfAxisAngle record class.
      Parameters:
      axis - the value for the axis record component
      angle - the value for the angle record component
  • Method Details

    • getMatrix

      public Matrix4f getMatrix()
      Specified by:
      getMatrix in interface ModelElementRotation.RotationValue
      Mappings:
      Namespace Name Mixin selector
      named getMatrix Lnet/minecraft/client/render/model/json/ModelElementRotation$RotationValue;getMatrix()Lorg/joml/Matrix4f;
      intermediary method_76652 Lnet/minecraft/class_789$class_12353;method_76652()Lorg/joml/Matrix4f;
      official a Lhqd$b;a()Lorg/joml/Matrix4f;
    • 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 object)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • axis

      public Direction.Axis axis()
      Returns the value of the axis record component.
      Returns:
      the value of the axis record component
    • angle

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