Guest User

DrawLineExample.java

a guest
Feb 11th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. import java.applet.*;
  2. import java.awt.*;
  3.  
  4. public class DrawLineExample extends Applet
  5. {
  6.     public void paint (Graphics g)
  7.     {
  8.         int x1 = 10;
  9.         int y1 = 20;
  10.         int x2 = 50;
  11.         int y2 = 60;
  12.         g.drawLine(x1, y1, x2, y2);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment