/*
	A basic extension of the java.applet.Applet class
 */

import java.awt.*;
import java.applet.*;
import curve.*;

public class QuadraticPoint extends java.applet.Applet
{
  DrawCurve drawCurve;
  QuadraticPointCurve quadraticPointCurve;
  public void init()
  {
	// This code is automatically generated by Visual Cafe when you add
	// components to the visual environment. It instantiates and initializes
	// the components. To modify the code, only use code syntax that matches
	// what Visual Cafe can generate, or Visual Cafe may be unable to back
	// parse your Java file into its visual environment.
	//{{INIT_CONTROLS
		setLayout(new BorderLayout(0,0));
		setSize(600,400);
		//}}
  	drawCurve=new DrawCurve();
	  quadraticPointCurve=new QuadraticPointCurve(drawCurve);
    add("East",quadraticPointCurve);
  	add("Center",drawCurve);
	}

  //{{DECLARE_CONTROLS
	//}}

}
