Class POrthonormalized3D<T>
java.lang.Object
com.io7m.jtensors.orthonormalization.POrthonormalized3D<T>
- Type Parameters:
T- A phantom type parameter
- All Implemented Interfaces:
POrthonormalized3DType<T>
A set of vectors that are orthogonal to each other and are normalized.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> POrthonormalized3D.Builder<T> builder()Creates a builder forPOrthonormalized3D.static <T> POrthonormalized3D<T> copyOf(POrthonormalized3DType<T> instance) Creates an immutable copy of aPOrthonormalized3DTypevalue.booleanThis instance is equal to all instances ofPOrthonormalized3Dthat have equal attribute values.inthashCode()Computes a hash code from attributes:v0,v1,v2.static <T> POrthonormalized3D<T> Construct a new immutablePOrthonormalized3Dinstance.toString()Prints the immutable valuePOrthonormalized3Dwith attribute values.v0()v1()v2()final POrthonormalized3D<T> Copy the current immutable object by setting a value for thev0attribute.final POrthonormalized3D<T> Copy the current immutable object by setting a value for thev1attribute.final POrthonormalized3D<T> Copy the current immutable object by setting a value for thev2attribute.
-
Method Details
-
v0
- Specified by:
v0in interfacePOrthonormalized3DType<T>- Returns:
- Vector 0
-
v1
- Specified by:
v1in interfacePOrthonormalized3DType<T>- Returns:
- Vector 1
-
v2
- Specified by:
v2in interfacePOrthonormalized3DType<T>- Returns:
- Vector 2
-
withV0
Copy the current immutable object by setting a value for thev0attribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for v0- Returns:
- A modified copy of the
thisobject
-
withV1
Copy the current immutable object by setting a value for thev1attribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for v1- Returns:
- A modified copy of the
thisobject
-
withV2
Copy the current immutable object by setting a value for thev2attribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for v2- Returns:
- A modified copy of the
thisobject
-
equals
This instance is equal to all instances ofPOrthonormalized3Dthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:v0,v1,v2. -
toString
Prints the immutable valuePOrthonormalized3Dwith attribute values. -
of
Construct a new immutablePOrthonormalized3Dinstance.- Type Parameters:
T- generic parameter T- Parameters:
v0- The value for thev0attributev1- The value for thev1attributev2- The value for thev2attribute- Returns:
- An immutable POrthonormalized3D instance
-
copyOf
Creates an immutable copy of aPOrthonormalized3DTypevalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Type Parameters:
T- generic parameter T- Parameters:
instance- The instance to copy- Returns:
- A copied immutable POrthonormalized3D instance
-
builder
Creates a builder forPOrthonormalized3D.POrthonormalized3D.<T>builder() .setV0(com.io7m.jtensors.core.parameterized.vectors.PVector3D<T>) // requiredv0.setV1(com.io7m.jtensors.core.parameterized.vectors.PVector3D<T>) // requiredv1.setV2(com.io7m.jtensors.core.parameterized.vectors.PVector3D<T>) // requiredv2.build();- Type Parameters:
T- generic parameter T- Returns:
- A new POrthonormalized3D builder
-