// ==========================================================================
// $Id: bounds.cpp,v 1.1 2011/10/19 03:24:40 jlang Exp $
// CSI2372 example Code for lecture 7
// ==========================================================================
// (C)opyright:
//
//   Jochen Lang
//   EECS, University of Ottawa
//   800 King Edward Ave.
//   Ottawa, On., K1N 6N5
//   Canada. 
//   http://www.eecs.uottawa.ca
// 
// Creator: jlang (Jochen Lang)
// Email:   jlang@eecs.uottawa.ca
// ==========================================================================
// $Log: bounds.cpp,v $
// Revision 1.1  2011/10/19 03:24:40  jlang
// Added code for lecture 7
//
// Revision 1.1  2011/09/27 17:22:20  jlang
// Added bounding shape example
//
//
// ==========================================================================
#include <iostream>
#include "bounds.h" 


using std::cout;
using std::endl;


bool Bounds::enclose( Point2D extrema[], int _size ) {
  return false;
}

bool Bounds::isInside( const Point2D& _pt ) const {
  return false;
}

void Bounds::print() const {
  cout << "Inside Bounds." << endl;
};

