org.math.plot.plots.VectorLayerPlot Class Reference

Inheritance diagram for org.math.plot.plots.VectorLayerPlot:

org.math.plot.plots.LayerPlot org.math.plot.plots.Plot org.math.plot.plotObjects.Plotable org.math.plot.plotObjects.Noteable org.math.plot.plotObjects.Editable List of all members.

Detailed Description

Layer to add a vector field to an existing Plot

Definition at line 17 of file VectorLayerPlot.java.

Public Member Functions

 VectorLayerPlot (Plot p, double[][] v)
Override void setData (double[][] v)
Override double[][] getData ()
void plot (AbstractDrawer draw, Color c)

Static Public Member Functions

static void main (String[] args)

Static Public Attributes

static int RADIUS = 5

Package Attributes

double[][] V


Constructor & Destructor Documentation

org.math.plot.plots.VectorLayerPlot.VectorLayerPlot ( Plot  p,
double  v[][] 
)

Create a vector fiels based on data of a plot

Parameters:
p Base plot to support vector field
v Vector field of same lenght that p data

Definition at line 26 of file VectorLayerPlot.java.

References org.math.plot.plots.Plot.getData(), org.math.plot.plots.Plot.name, and org.math.plot.plots.VectorLayerPlot.V.

00026                                                      {
00027                 super("Vector of " + p.name, p);
00028                 if (v != null) {
00029                         Array.checkRowDimension(v, p.getData().length);
00030                         Array.checkColumnDimension(v, p.getData()[0].length);
00031                 }
00032                 V = v;
00033 
00034         }


The documentation for this class was generated from the following file:
Generated on Wed Sep 5 21:44:02 2007 for jmathplot by  doxygen 1.5.1