Record Class ModelRotation.class_12352

java.lang.Object
java.lang.Record
net.minecraft.client.render.model.json.ModelRotation.class_12352
Record Components:
x -
y -
z -
All Implemented Interfaces:
ModelRotation.class_12353
Enclosing class:
ModelRotation

@Environment(CLIENT) public static record ModelRotation.class_12352(float x, float y, float z) extends Record implements ModelRotation.class_12353
Mappings:
Namespace Name
named net/minecraft/client/render/model/json/ModelRotation$class_12352
intermediary net/minecraft/class_789$class_12352
official hmf$a
named x
intermediary comp_5247
official a
named y
intermediary comp_5248
official b
named z
intermediary comp_5249
official c
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final float
    The field for the x record component.
    private final float
    The field for the y record component.
    private final float
    The field for the z record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    class_12352(float x, float y, float z)
    Creates an instance of a class_12352 record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
     
    final String
    Returns a string representation of this record class.
    float
    x()
    Returns the value of the x record component.
    float
    y()
    Returns the value of the y record component.
    float
    z()
    Returns the value of the z record component.

    Methods inherited from class java.lang.Object

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

    • x

      private final float x
      The field for the x record component.
    • y

      private final float y
      The field for the y record component.
    • z

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

    • class_12352

      public class_12352(float x, float y, float z)
      Creates an instance of a class_12352 record class.
      Parameters:
      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

    • method_76652

      public Matrix4f method_76652()
      Specified by:
      method_76652 in interface ModelRotation.class_12353
      Mappings:
      Namespace Name Mixin selector
      named method_76652 Lnet/minecraft/client/render/model/json/ModelRotation$class_12353;method_76652()Lorg/joml/Matrix4f;
      intermediary method_76652 Lnet/minecraft/class_789$class_12353;method_76652()Lorg/joml/Matrix4f;
      official a Lhmf$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. All components in this record class 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.
    • x

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

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

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