// CS1101 (AY2007/8 Semester 1)
// Lab 5 Exercise 1
// MyPoint3D.java (partial code)
// This class defines MyPoint3D, whose coordinates are integer values.
// Written by: Aaron Tan

public class MyPoint3D {

//----------------------------------
//    Data members
//----------------------------------
   private int x;
   private int y;
   private int z;

//----------------------------------
//    Constructors
//----------------------------------
   /**
    * Default constructor
    * To assign 0 to all coordinates
    */
   public MyPoint3D( ) {
       // fill in the code
   }

   /**
    * Alternative constructor
    */
   public MyPoint3D(int xInit, int yInit, int zInit) {
       // fill in the code
   }
   
//-------------------------------------------------
//      Public Methods:
//------------------------------------------------
   
   // fill in the code

}

