00001 /* 00002 * Created on 5 juil. 07 by richet 00003 */ 00004 package org.math.plot.plots; 00005 00006 import org.math.plot.render.*; 00007 00008 public abstract class LayerPlot extends Plot { 00009 00010 Plot plot; 00011 00012 public LayerPlot(String name, Plot p) { 00013 super(name, p.color); 00014 plot = p; 00015 } 00016 00017 public double[] isSelected(int[] screenCoordTest, AbstractDrawer draw) { 00018 return null; 00019 } 00020 }