Back to project page AnkiStats.
The source code is released under:
GNU General Public License
If you think the Android project AnkiStats listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from w w w .j a v a 2s . c o m */ package com.wildplot.android.rendering.interfaces; /** * Interface for functions with two dependent variables * */ public interface Function3D { /** * calculate function value with given x and y values * @param x given x value * @param y given y value * @return function value calculated with given x and y values */ public double f(double x, double y); }