All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mikera.matrixx.impl.VectorMatrixM3 Maven / Gradle / Ivy

Go to download

Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.

There is a newer version: 0.67.0
Show newest version
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