/*
 * Jeffrey Ladino - jnl22@ccs.neu.edu
 *
 * File: shape2d.h
 *
 * Change Log
 ************
 ** July 27, 1999 - Jeff Ladino
 * Created.
 *
 */

#ifndef MY_SHAPE2D_H
#define MY_SHAPE2D_H

#include "matrix3d.h"
#include "simpledraw.h"

class shape2d{
 public:
  shape2d();
  shape2d(unsigned n);
  shape2d(const shape2d& source);

  vector3d& operator[](unsigned i);

  void draw(SimpleDraw& sd, matrix3d& m);
  void print();

 public:
  vector3d* point;
  unsigned points;

}; // end class shape2d

// ends #ifndef MY_SHAPE2D_H
#endif





