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

import java.util.*;

public class Lab3Ex1 {

   //-----------------------------------------------------
   // main method used to test the MyTriangle class
   //-----------------------------------------------------
   public static void main (String [] args)  {

       Scanner scanner = new Scanner(System.in);
       double v1X, v1Y, v2X, v2Y, v3X, v3Y;

       // fill in your code 
   }

   // fill in other necessary methods

}


