Record Class Vec4
java.lang.Object
java.lang.Record
dev.engine.core.math.Vec4
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionVec4(float x, float y, float z, float w) Creates an instance of aVec4record class. -
Method Summary
Modifier and TypeMethodDescriptionfloatfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floatlength()floatnegate()static Vec4scale(float s) final StringtoString()Returns a string representation of this record class.floatw()Returns the value of thewrecord component.floatx()Returns the value of thexrecord component.xyz()floaty()Returns the value of theyrecord component.floatz()Returns the value of thezrecord component.
-
Field Details
-
ZERO
-
ONE
-
-
Constructor Details
-
Vec4
public Vec4(float x, float y, float z, float w) Creates an instance of aVec4record 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
-
of
-
add
-
sub
-
scale
-
negate
-
dot
-
lengthSquared
public float lengthSquared() -
length
public float length() -
normalize
-
xyz
-
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
-