Class Quaternion4F.Builder
java.lang.Object
com.io7m.jtensors.core.quaternions.Quaternion4F.Builder
- Enclosing class:
- Quaternion4F
public static final class Quaternion4F.Builder
extends java.lang.Object
Builds instances of type
Quaternion4F.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Method Summary
Modifier and Type Method Description Quaternion4Fbuild()Builds a newQuaternion4F.Quaternion4F.Builderfrom(Quaternion4FType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.quaternions.Quaternion4FTypeinstance.Quaternion4F.Builderfrom(QuaternionReadable4FType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.quaternions.QuaternionReadable4FTypeinstance.Quaternion4F.BuildersetW(float w)Initializes the value for thewattribute.Quaternion4F.BuildersetX(float x)Initializes the value for thexattribute.Quaternion4F.BuildersetY(float y)Initializes the value for theyattribute.Quaternion4F.BuildersetZ(float z)Initializes the value for thezattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.quaternions.QuaternionReadable4FTypeinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.quaternions.Quaternion4FTypeinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setX
Initializes the value for thexattribute.- Parameters:
x- The value for x- Returns:
thisbuilder for use in a chained invocation
-
setY
Initializes the value for theyattribute.- Parameters:
y- The value for y- Returns:
thisbuilder for use in a chained invocation
-
setZ
Initializes the value for thezattribute.- Parameters:
z- The value for z- Returns:
thisbuilder for use in a chained invocation
-
setW
Initializes the value for thewattribute.- Parameters:
w- The value for w- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newQuaternion4F.- Returns:
- An immutable instance of Quaternion4F
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-