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
ConstructorDescriptionBoneTransform
(float x, float y, float z, float qx, float qy, float qz, float qw, float sx, float sy, float sz) Creates an instance of aBoneTransform
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.float
qw()
Returns the value of theqw
record component.float
qx()
Returns the value of theqx
record component.float
qy()
Returns the value of theqy
record component.float
qz()
Returns the value of theqz
record component.float
sx()
Returns the value of thesx
record component.float
sy()
Returns the value of thesy
record component.float
sz()
Returns the value of thesz
record component.final String
toString()
Returns a string representation of this record class.float
x()
Returns the value of thex
record component.float
y()
Returns the value of they
record component.float
z()
Returns the value of thez
record component.
-
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 aBoneTransform
record class.- Parameters:
x
- the value for thex
record componenty
- the value for they
record componentz
- the value for thez
record componentqx
- the value for theqx
record componentqy
- the value for theqy
record componentqz
- the value for theqz
record componentqw
- the value for theqw
record componentsx
- the value for thesx
record componentsy
- the value for thesy
record componentsz
- the value for thesz
record component
-
-
Method Details
-
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. -
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. -
equals
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 '=='. -
x
public float x()Returns the value of thex
record component.- Returns:
- the value of the
x
record component
-
y
public float y()Returns the value of they
record component.- Returns:
- the value of the
y
record component
-
z
public float z()Returns the value of thez
record component.- Returns:
- the value of the
z
record component
-
qx
public float qx()Returns the value of theqx
record component.- Returns:
- the value of the
qx
record component
-
qy
public float qy()Returns the value of theqy
record component.- Returns:
- the value of the
qy
record component
-
qz
public float qz()Returns the value of theqz
record component.- Returns:
- the value of the
qz
record component
-
qw
public float qw()Returns the value of theqw
record component.- Returns:
- the value of the
qw
record component
-
sx
public float sx()Returns the value of thesx
record component.- Returns:
- the value of the
sx
record component
-
sy
public float sy()Returns the value of thesy
record component.- Returns:
- the value of the
sy
record component
-
sz
public float sz()Returns the value of thesz
record component.- Returns:
- the value of the
sz
record component
-