org.jzy3d.plot3d.builder
Class Mapper

java.lang.Object
  extended by org.jzy3d.plot3d.builder.Mapper
Direct Known Subclasses:
BufferedImageMapper

public abstract class Mapper
extends Object


Constructor Summary
Mapper()
           
 
Method Summary
 double[] f(double[][] xy)
          Default implementation providing iterative call to f(double x, double y).
 double[] f(double[] x, double[] y)
          Default implementation providing iterative call to f(double x, double y).
abstract  double f(double x, double y)
           
 float[] fAsFloat(double[][] xy)
          Default implementation providing iterative call to f(double x, double y).
 float[] fAsFloat(double[] x, double[] y)
          Default implementation providing iterative call to f(double x, double y).
 float[] fAsFloat(float[][] xy)
          Default implementation providing iterative call to f(double x, double y).
 float[] fAsFloat(float[] x, float[] y)
          Default implementation providing iterative call to f(double x, double y).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Mapper

public Mapper()
Method Detail

f

public abstract double f(double x,
                         double y)

f

public double[] f(double[] x,
                  double[] y)
Default implementation providing iterative call to f(double x, double y).


f

public double[] f(double[][] xy)
Default implementation providing iterative call to f(double x, double y).


fAsFloat

public float[] fAsFloat(double[] x,
                        double[] y)
Default implementation providing iterative call to f(double x, double y).


fAsFloat

public float[] fAsFloat(float[] x,
                        float[] y)
Default implementation providing iterative call to f(double x, double y).


fAsFloat

public float[] fAsFloat(double[][] xy)
Default implementation providing iterative call to f(double x, double y).


fAsFloat

public float[] fAsFloat(float[][] xy)
Default implementation providing iterative call to f(double x, double y).