Class Vector3D.Builder
java.lang.Object
com.io7m.jtensors.core.unparameterized.vectors.Vector3D.Builder
- Enclosing class:
- Vector3D
public static final class Vector3D.Builder
extends java.lang.Object
-
Method Summary
Modifier and Type Method Description Vector3Dbuild()Builds a newVector3D.Vector3D.Builderfrom(Vector3DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.Vector3DTypeinstance.Vector3D.Builderfrom(VectorReadable2DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2DTypeinstance.Vector3D.Builderfrom(VectorReadable3DType instance)Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable3DTypeinstance.Vector3D.BuildersetX(double x)Initializes the value for thexattribute.Vector3D.BuildersetY(double y)Initializes the value for theyattribute.Vector3D.BuildersetZ(double z)Initializes the value for thezattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable3DTypeinstance.- 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.unparameterized.vectors.Vector3DTypeinstance.- 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.unparameterized.vectors.VectorReadable2DTypeinstance.- 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
-
build
Builds a newVector3D.- Returns:
- An immutable instance of Vector3D
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-