public interface Function3D extends java.io.Serializable
y = f(x, z).
XYZDatasetUtils.sampleFunction(Function3D, String, Range, double, Range, double)
method. In addition, any Function3D instance can be plotted
by a SurfaceRenderer.| Modifier and Type | Method and Description |
|---|---|
double |
getValue(double x,
double z)
Returns the value of the function ('y') for the specified inputs ('x'
and 'z').
|
double getValue(double x, double z)
x - the x-value.z - the z-value.