Record Class Quat
java.lang.Object
java.lang.Record
dev.engine.core.math.Quat
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionQuat(float x, float y, float z, float w) Creates an instance of aQuatrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static QuatfromAxisAngle(Vec3 axis, float radians) final inthashCode()Returns a hash code value for this object.floatlength()floattoMat4()final StringtoString()Returns a string representation of this record class.floatw()Returns the value of thewrecord component.floatx()Returns the value of thexrecord component.floaty()Returns the value of theyrecord component.floatz()Returns the value of thezrecord component.
-
Field Details
-
IDENTITY
-
-
Constructor Details
-
Quat
public Quat(float x, float y, float z, float w) Creates an instance of aQuatrecord class.- Parameters:
x- the value for thexrecord componenty- the value for theyrecord componentz- the value for thezrecord componentw- the value for thewrecord component
-
-
Method Details
-
fromAxisAngle
-
mul
-
conjugate
-
lengthSquared
public float lengthSquared() -
length
public float length() -
normalize
-
rotate
-
slerp
-
toMat4
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
x
public float x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
y
public float y()Returns the value of theyrecord component.- Returns:
- the value of the
yrecord component
-
z
public float z()Returns the value of thezrecord component.- Returns:
- the value of the
zrecord component
-
w
public float w()Returns the value of thewrecord component.- Returns:
- the value of the
wrecord component
-