// CS1101 (AY2007/8 Semester 1)
// Lab 5 Exercise 1
// MyCuboid.java (partial code)
// This class defines MyCuboid: a cubic box represented
// by two opposite vertices.
// Written by: Aaron Tan

public class MyCuboid {

   // Data members
   private MyPoint3D vertex1;
   private MyPoint3D vertex2;

   // Constructors
   // Default constructor: create a cuboid with vertices (0,0,0) and (1,1,1)
   public MyCuboid() {
      // fill in the code;
   }

   // Alternative constructor
   public MyCuboid(int pt1X, int pt1Y, int pt1Z,
                   int pt2X, int pt2Y, int pt2Z) {

      // fill in the code;
   }

//-------------------------------------------------
//  Methods:
//------------------------------------------------
   
   // fill in the code

}


