1: public class PlotSine extends Plotter { 2: public double func(double x) { 3: return Math.sin(x); 4: } 5: }