Java Code

/** Example showing coordinate system
 *  @author : E.S.Boese
 *  @version: Fall 2008
 */
import java.awt.*;
import javax.swing.*;
public class Coords extends JApplet
{
	public void paint( Graphics g )
	{
		super.paint( g );
		g.drawString( "(0,0)",      0,  0 );
		g.drawString( "(100,10)", 100, 10 );
		g.drawString( "(20,50)",   20, 50 );
		g.drawString( "(190,90)", 190, 90 );
	}
}

©2007- by E.S.Boese. All Rights Reserved