Class Matrix2x2F
java.lang.Object
com.io7m.jtensors.core.unparameterized.matrices.Matrix2x2F
- All Implemented Interfaces:
MatrixComputationalType,Matrix2x2FType,MatrixReadable2x2FType,MatrixReadableFType
public final class Matrix2x2F extends java.lang.Object implements Matrix2x2FType
The type of 2x2
float-typed matrices.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMatrix2x2F.BuilderBuilds instances of typeMatrix2x2F. -
Method Summary
Modifier and Type Method Description static Matrix2x2F.Builderbuilder()Creates a builder forMatrix2x2F.static Matrix2x2FcopyOf(Matrix2x2FType instance)Creates an immutable copy of aMatrix2x2FTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofMatrix2x2Fthat have equal attribute values.inthashCode()Computes a hash code from attributes:r0c0,r0c1,r1c0,r1c1.static Matrix2x2Fof(float r0c0, float r0c1, float r1c0, float r1c1)Construct a new immutableMatrix2x2Finstance.floatr0c0()floatr0c1()floatr1c0()floatr1c1()java.lang.StringtoString()Prints the immutable valueMatrix2x2Fwith attribute values.Matrix2x2FwithR0c0(float value)Copy the current immutable object by setting a value for ther0c0attribute.Matrix2x2FwithR0c1(float value)Copy the current immutable object by setting a value for ther0c1attribute.Matrix2x2FwithR1c0(float value)Copy the current immutable object by setting a value for ther1c0attribute.Matrix2x2FwithR1c1(float value)Copy the current immutable object by setting a value for ther1c1attribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.jtensors.core.unparameterized.matrices.MatrixReadable2x2FType
rowColumn
-
Method Details
-
r0c0
public float r0c0()- Specified by:
r0c0in interfaceMatrix2x2FType- Specified by:
r0c0in interfaceMatrixReadable2x2FType- Returns:
- The value at row 0 column 0
-
r0c1
public float r0c1()- Specified by:
r0c1in interfaceMatrix2x2FType- Specified by:
r0c1in interfaceMatrixReadable2x2FType- Returns:
- The value at row 0 column 1
-
r1c0
public float r1c0()- Specified by:
r1c0in interfaceMatrix2x2FType- Specified by:
r1c0in interfaceMatrixReadable2x2FType- Returns:
- The value at row 1 column 0
-
r1c1
public float r1c1()- Specified by:
r1c1in interfaceMatrix2x2FType- Specified by:
r1c1in interfaceMatrixReadable2x2FType- Returns:
- The value at row 1 column 1
-
withR0c0
Copy the current immutable object by setting a value for ther0c0attribute. A value strict bits equality used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for r0c0- Returns:
- A modified copy of the
thisobject
-
withR0c1
Copy the current immutable object by setting a value for ther0c1attribute. A value strict bits equality used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for r0c1- Returns:
- A modified copy of the
thisobject
-
withR1c0
Copy the current immutable object by setting a value for ther1c0attribute. A value strict bits equality used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for r1c0- Returns:
- A modified copy of the
thisobject
-
withR1c1
Copy the current immutable object by setting a value for ther1c1attribute. A value strict bits equality used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for r1c1- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofMatrix2x2Fthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:r0c0,r0c1,r1c0,r1c1.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueMatrix2x2Fwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
Construct a new immutableMatrix2x2Finstance.- Parameters:
r0c0- The value for ther0c0attributer0c1- The value for ther0c1attributer1c0- The value for ther1c0attributer1c1- The value for ther1c1attribute- Returns:
- An immutable Matrix2x2F instance
-
copyOf
Creates an immutable copy of aMatrix2x2FTypevalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable Matrix2x2F instance
-
builder
Creates a builder forMatrix2x2F.Matrix2x2F.builder() .setR0c0(float) // requiredr0c0.setR0c1(float) // requiredr0c1.setR1c0(float) // requiredr1c0.setR1c1(float) // requiredr1c1.build();- Returns:
- A new Matrix2x2F builder
-