public DerivativeAltGraph(CalculusApplet applet, String f, String g, double a) {
    super();

    this.applet = applet;
    this.a = a;
    this.b = a;
    this.c = a;

    F.parseExpression(f);
    G.parseExpression(g);
  }