
-----------------------------------
Neospud
Mon Nov 13, 2006 10:27 pm

shape drawing
-----------------------------------
I need some help with my code for a shape drawing class. This is what i have so farimport java.awt.*;

    public class circle implements shapeInt
   {
      private int xCordCenterPoint;
      private int yCordCenterPoint;
      private Color c;
      private int radius;
      private int xcords

please note that the circle is just one of my few examples.  My the contains method at the bottom.  As part of the assignment given i'm not allowed to use the polygon class to draw the polygon.  Any idea on what to do.  I've been searching the awi ref online but i can't find what i need.  I need to do this contains method for a circle rectangle square and oval...if that makes a difference
