Class PVector2F.Builder<T>
java.lang.Object
com.io7m.jtensors.core.parameterized.vectors.PVector2F.Builder<T>
-
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds a newPVector2F.final PVector2F.Builder<T> from(PVector2FType<T> instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVector2FTypeinstance.final PVector2F.Builder<T> from(PVectorReadable2FType<T> instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVectorReadable2FTypeinstance.final PVector2F.Builder<T> from(VectorReadable2FType instance) Fill a builder with attribute values from the providedcom.io7m.jtensors.core.unparameterized.vectors.VectorReadable2FTypeinstance.final PVector2F.Builder<T> setX(float x) Initializes the value for thexattribute.final PVector2F.Builder<T> setY(float y) Initializes the value for theyattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedcom.io7m.jtensors.core.parameterized.vectors.PVectorReadable2FTypeinstance.- 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.VectorReadable2FTypeinstance.- 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.PVector2FTypeinstance.- 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
-
build
Builds a newPVector2F.- Returns:
- An immutable instance of PVector2F
- Throws:
IllegalStateException- if any required attributes are missing
-