Class PVector3D.Builder<T>
java.lang.Object
com.io7m.jtensors.core.parameterized.vectors.PVector3D.Builder<T>
-
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds a newPVector3D.final PVector3D.Builder<T> from(PVector3DType<T> instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVector3DTypeinstance.final PVector3D.Builder<T> from(PVectorReadable3DType<T> instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVectorReadable3DTypeinstance.final PVector3D.Builder<T> from(VectorReadable2DType instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2DTypeinstance.final PVector3D.Builder<T> from(VectorReadable3DType instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable3DTypeinstance.final PVector3D.Builder<T> setX(double x) Initializes the value for thexattribute.final PVector3D.Builder<T> setY(double y) Initializes the value for theyattribute.final PVector3D.Builder<T> setZ(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.parameterized.vectors.PVector3DTypeinstance.- 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
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVectorReadable3DTypeinstance.- 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 newPVector3D.- Returns:
- An immutable instance of PVector3D
- Throws:
IllegalStateException- if any required attributes are missing
-