Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          constructors-point-rectangle/boiled-down-for-notes/point.h - The Point class.Lecture 4 - slide 6 : 41
Program 1

class Point {
private: 
  double x, y;

public:
  Point();                    
  Point(double x);            
  Point(double x, double y);  

  // other methods
};