// CS1101 (AY2007/8 Semester 1)
// Lab 3 Exercise 1
// MyTriangle.java (Incomplete code)
// Aaron Tan

class MyTriangle {

   // Codes for triangle types
   public static final int IS_EQUILATERAL = 0;
   // fill in the other two constants

   // Data members - do NOT change these data members
   private Point2D.Double vertex1, vertex2, vertex3;  // the 3 vertices
   private int triangleType;            // triangle type: 0 = equilateral;
                                        // 1 = isosceles; 2 = scalene

   // Constructors
   public MyTriangle() {
      // fill in your code
   }

   public MyTriangle(double v1X, double v1Y, double v2X, double v2Y,
                     double v3X, double v3Y) {
      // fill in your code
   }

//-----------------------------------------------------------------
//      Methods:
//-----------------------------------------------------------------
   
   // fill in the required methods

}

