Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This topic lists the constructors of the Point class. For a complete class listing, see Point Class.
Overload list
| Constructor | Description |
|---|---|
| Point(Size&) | Creates a Point object using a Size object to initialize the X and Y data members. |
| Point(Point&) | Creates a new Point object and copies the data members from another Point object. |
| Point(INT,INT) | Creates a Point object using two integers to initialize the X and Y data members. |
| Point() | Creates a Point object and initializes the X and Y data members to zero. This is the default constructor. |