Question: c++ Question) Suppose that we will implement a software that uses two dimensional virtual coordinate system. X and Y coordinates will define a grid where
c++

Question) Suppose that we will implement a software that uses two dimensional virtual coordinate system. X and Y coordinates will define a grid where the starting point is (0,0) as below: 10.01) Write a Point class to represent a location in this coordinate system. Point class will have integer x and integer y as private member data. The horizontal axis has limits between 0... 511 and the vertical axis has limits between 0 -- 255. Write the following functions as well: Point class with private members (4pts) Constructors ( default and with parameters) (4pts) Check the range as well using the limits created above (read NOTE). (2 pts) Create static, const variables to define the limits given above. (4 pts) Get and set methods for all private member data (8 pts) o Check the range as well using the limits created above (read NOTE). (4 pts) Overload output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
