| constructors-point-rectangle/boiled-down-for-notes/rect.h - The Rectangle class. | Lecture 4 - slide 6 : 41 Program 3 |
#include "point.h"
class Rectangle{
private:
Point upper_left, lower_right;
public:
Rectangle();
Rectangle(Point p1, Point p2);
Rectangle(double x1, double y1, double x2, double y2);
// other methods
};