mikera.transformz.ITransform 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.vectorz.AVector;
public interface ITransform {
/**
* Transforms the source vector, storing the result in the given destination vector
* @param source
* @param dest
*/
public void transform(AVector source, AVector dest);
/**
* Returns the number of dimensions required for input vectors
* @return
*/
public int inputDimensions();
/**
* Returns the number of dimensions required for output vectors
* @return
*/
public int outputDimensions();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy