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

mikera.transformz.ASizedTransform 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.transformz;

public abstract class ASizedTransform extends ATransform {

	protected final int size;
	
	protected ASizedTransform(int size) {
		this.size=size;
	}

	@Override
	public int inputDimensions() {
		return size;
	}

	@Override
	public int outputDimensions() {
		return size;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy