mikera.matrixx.impl.VectorMatrixM3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vectorz Show documentation
Show all versions of vectorz Show documentation
Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.
package mikera.matrixx.impl;
import mikera.transformz.marker.ISpecialisedTransform;
import mikera.vectorz.AVector;
import mikera.vectorz.Op;
import mikera.vectorz.Vector3;
/**
* Specialised N*3 Matrix with Vector3 row components
*
* @author Mike
*
*/
public final class VectorMatrixM3 extends AVectorMatrix implements ISpecialisedTransform {
private static final long serialVersionUID = -8148184725377519520L;
private final Vector3[] rowData;
public VectorMatrixM3(int rowCount) {
super(rowCount,3);
rowData=new Vector3[rowCount];
for (int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy