-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoint.cpp
62 lines (53 loc) · 1.47 KB
/
point.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/***********************************************************************
* Source File:
* Point : The representation of a position on the screen
************************************************************************/
#include "point.h"
#include <cassert>
/******************************************
* POINT : CONSTRUCTOR WITH X,Y
* Initialize the point to the passed position
*****************************************/
Point::Point(float x, float y) : x(0.0), y(0.0)
{
setX(x);
setY(y);
}
/*******************************************
* POINT : SET X
* Set the x position if the value is within range
*******************************************/
void Point::setX(float x)
{
this->x = x;
}
/*******************************************
* POINT : SET Y
* Set the y position if the value is within range
*******************************************/
void Point::setY(float y)
{
this->y = y;
}
/******************************************
* POINT insertion
* Display coordinates on the screen
*****************************************/
std::ostream & operator << (std::ostream & out, const Point & pt)
{
out << "(" << pt.getX() << ", " << pt.getY() << ")";
return out;
}
/*******************************************
* POINT extraction
* Prompt for coordinates
******************************************/
std::istream & operator >> (std::istream & in, Point & pt)
{
float x;
float y;
in >> x >> y;
pt.setX(x);
pt.setY(y);
return in;
}