Record Class BoneTransform

java.lang.Object
java.lang.Record
foundry.veil.api.client.necromancer.animation.keyframed.BoneTransform

public record BoneTransform(float x, float y, float z, float qx, float qy, float qz, float qw, float sx, float sy, float sz) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    BoneTransform(float x, float y, float z, float qx, float qy, float qz, float qw, float sx, float sy, float sz)
    Creates an instance of a BoneTransform 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.
    float
    qw()
    Returns the value of the qw record component.
    float
    qx()
    Returns the value of the qx record component.
    float
    qy()
    Returns the value of the qy record component.
    float
    qz()
    Returns the value of the qz record component.
    float
    sx()
    Returns the value of the sx record component.
    float
    sy()
    Returns the value of the sy record component.
    float
    sz()
    Returns the value of the sz record component.
    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
  • Constructor Details

    • BoneTransform

      public BoneTransform(float x, float y, float z, float qx, float qy, float qz, float qw, float sx, float sy, float sz)
      Creates an instance of a BoneTransform 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
      qx - the value for the qx record component
      qy - the value for the qy record component
      qz - the value for the qz record component
      qw - the value for the qw record component
      sx - the value for the sx record component
      sy - the value for the sy record component
      sz - the value for the sz record component
  • Method Details

    • 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 '=='.
      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.
    • 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
    • qx

      public float qx()
      Returns the value of the qx record component.
      Returns:
      the value of the qx record component
    • qy

      public float qy()
      Returns the value of the qy record component.
      Returns:
      the value of the qy record component
    • qz

      public float qz()
      Returns the value of the qz record component.
      Returns:
      the value of the qz record component
    • qw

      public float qw()
      Returns the value of the qw record component.
      Returns:
      the value of the qw record component
    • sx

      public float sx()
      Returns the value of the sx record component.
      Returns:
      the value of the sx record component
    • sy

      public float sy()
      Returns the value of the sy record component.
      Returns:
      the value of the sy record component
    • sz

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