package mikera.vectorz.functions; import mikera.transformz.ATransform; /** * Abstract base class representing an arbitrary vector function. * * Intended for overriding by external users want to create new forms of vector function * * @author Mike */ public abstract class VectorFunction extends ATransform { // no special implementation yet }