-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircle_Calculation(Template).cpp.cpp
More file actions
132 lines (112 loc) · 2.28 KB
/
Circle_Calculation(Template).cpp.cpp
File metadata and controls
132 lines (112 loc) · 2.28 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include <iostream>
#include <string>
#include<math.h>
using namespace std;
#define M_PI 3.14
enum eColor { none = 0, red, white, blue, yellow, green, black };
class Color
{
public:
Color(eColor color);
void setColor(eColor color);
eColor getColor() { return mColor; };
std::string getStrColor();
protected:
eColor mColor;
};
Color::Color(eColor _color)
{
mColor = _color;
}
void Color::setColor(eColor _color)
{
mColor = _color;
}
std::string Color::getStrColor()
{
switch(mColor)
{
case red:
return "red";
case white:
return "white";
case blue:
return "blue";
case yellow:
return "yellow";
case green:
return "green";
case black:
return "black";
case none:
default:
return "none";
}
}
template <typename T>
class Circle : public Color
{
public:
Circle(T centerX, T centerY, T radius, eColor color);
Circle(T centerX, T centerY, T radius);
Circle(T radius);
Circle();
T area();
T circumference();
T getX();
T getY();
T getRadius();
protected:
T x;
T y;
T radius;
};
template <typename T>
Circle<T>::Circle(T _x, T _y, T _radius, eColor _color)
: Color(_color)
{
x = _x;
y = _y;
radius = _radius;
}
template <typename T>
Circle<T>::Circle(T _x, T _y, T _radius)
: Color(none)
{
x = _x;
y = _y;
radius = _radius;
}
template <typename T>
Circle<T>::Circle(T _radius)
: Color(none)
{
x = static_cast<T>(0);
y = static_cast<T>(0);
radius = _radius;
}
template <typename T>
Circle<T>::Circle()
: Color(none)
{
x = static_cast<T>(0);
y = static_cast<T>(0);
radius = static_cast<T>(1);
}
template <typename T>
T Circle<T>::area()
{
return M_PI * radius * radius;
}
template <typename T>
T Circle<T>::circumference()
{
return static_cast<T>(2) * M_PI * radius;
}
int main(int argc, char* argv[])
{
Circle<float> circleA(0.0, 0.0, 10.0, white);
cout << "\nArea of Circle A :: " << circleA.area() << endl;
cout << "\nColor of Circle A :: " << circleA.getStrColor() << endl;
return 0;
}