mikera.transformz.ALinearTransform 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.transformz;
import mikera.transformz.impl.IdentityTranslation;
/**
* Abstract base class representing a linear transfrom.
*
* AMatrix is the main implementation
*
* @author Mike
*
*/
public abstract class ALinearTransform extends AAffineTransform {
@Override
public boolean isLinear() {
return true;
}
@Override
public IdentityTranslation getTranslation() {
return Transformz.identityTranslation(outputDimensions());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy