Inheritance diagram for org.math.plot.plots.VectorLayerPlot:
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 |
org.math.plot.plots.VectorLayerPlot.VectorLayerPlot | ( | Plot | p, | |
double | v[][] | |||
) |
Create a vector fiels based on data of a plot
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 }