/** * */ package wblut.math; // TODO: Auto-generated Javadoc /** * The Interface WB_Function4D. * * @param <T> the generic type * @author Frederik Vanhoutte, W:Blut */ public interface WB_Function4D<T> { /** * F. * * @param x the x * @param y the y * @param z the z * @param w the w * @return result */ public T f(double x, double y, double z, double w); }