| Package | Description |
|---|---|
| com.io7m.jtensors.bytebuffered.parameterized |
ByteBuffer backed parameterized tensors. |
| com.io7m.jtensors.parameterized |
Parameterized vector and matrix types.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
PMatrixByteBuffered4x4DType<T0,T1>
The type of
PMatrix4x4DType values that are also byte
buffered. |
| Modifier and Type | Class and Description |
|---|---|
class |
PMatrixByteBufferedM4x4D<T0,T1>
A 4x4 matrix type with
double elements, packed into a ByteBuffer. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PMatrix4x4DType<T0,T1>
The type of 4x4 matrices with
double elements. |
interface |
PMatrixDirect4x4DType<T0,T1>
The type of 4x4 matrices with
double elements that are backed by
direct byte buffers. |
interface |
PMatrixDirectReadable4x4DType<T,U>
'Read' interface to 4x4 direct-memory matrices with
double elements. |
| Modifier and Type | Class and Description |
|---|---|
class |
PMatrixDirectM4x4D<T0,T1>
The default implementation of the
PMatrixDirect4x4DType interface. |
class |
PMatrixHeapArrayM4x4D<T0,T1>
The default implementation of the
PMatrix4x4DType interface. |
class |
PMatrixI4x4D<T0,T1>
An immutable 4x4 matrix type.
|
| Modifier and Type | Method and Description |
|---|---|
static <T0,T1,M extends PMatrixWritable4x4DType<T0,T1>> |
PMatrixM4x4D.copy(PMatrixReadable4x4DType<T0,T1> input,
M output)
Copy the contents of the matrix
input to the matrix output,
completely replacing all elements. |
static <T0,T1,MOUT extends PMatrixWritable4x4DType<T1,T0>> |
PMatrixM4x4D.invert(PMatrixM4x4D.ContextPM4D context,
PMatrixReadable4x4DType<T0,T1> m,
MOUT out)
Calculate the inverse of the matrix
m, saving the resulting matrix
to out. |
static <T0,T1,T2,MOUT extends PMatrixWritable4x4DType<T0,T2>> |
PMatrixM4x4D.multiply(PMatrixReadable4x4DType<T1,T2> m0,
PMatrixReadable4x4DType<T0,T1> m1,
MOUT out)
Multiply the matrix
m0 with the matrix m1, writing the
result to out. |
static <T0,T1,T2,MOUT extends PMatrixWritable4x4DType<T0,T2>> |
PMatrixM4x4D.multiply(PMatrixReadable4x4DType<T1,T2> m0,
PMatrixReadable4x4DType<T0,T1> m1,
MOUT out)
Multiply the matrix
m0 with the matrix m1, writing the
result to out. |
static <T0,T1,V extends PVectorWritable4DType<T1>> |
PMatrixM4x4D.multiplyVector4D(PMatrixM4x4D.ContextPM4D context,
PMatrixReadable4x4DType<T0,T1> m,
PVectorReadable4DType<T0> v,
V out)
Multiply the matrix
m with the vector v, writing the
resulting vector to out. |
static <T0,T1> PMatrixI4x4D<T0,T1> |
PMatrixI4x4D.newFromReadable(PMatrixReadable4x4DType<T0,T1> m)
Construct a new immutable 4x4 matrix from the given readable 4x4 matrix.
|
static <T0,T1> PMatrix4x4DType<T0,T1> |
PMatrixHeapArrayM4x4D.newMatrixFrom(PMatrixReadable4x4DType<T0,T1> m) |
static <T0,T1> PMatrixDirect4x4DType<T0,T1> |
PMatrixDirectM4x4D.newMatrixFrom(PMatrixReadable4x4DType<T0,T1> m) |
Copyright © 2017 <code@io7m.com> http://io7m.com