-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArea_Calculator.py
61 lines (54 loc) · 2.08 KB
/
Area_Calculator.py
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
"""Python CMD program, object-oriented shape class and subclasses, enter the shape's name, color and other attributes
to construct them and calculate the area and perimeter.
using Python version 3.11.4
@version : 1.0
@license: MIT License
@author : Arman Azarnik
contact me at : [email protected]
"""
import math
from Circle import Circle
from Square import Square
from Triangle import Triangle
from Rectangle import Rectangle
from Perimeter_Calculator import Perimeter_Calculator
class Area_Calculator:
"""
Area_Calculator class to claculate the area of different geometric shapes.
"""
def get_Area(Shape):
"""
function for calculating the area of different geometric shapes.
@param Shape: a geometric shape
@type Shape: Shape object
@return: calculated_Area
@rtype: double or string
@examples:
circle_1 = new Circle(3)
triangle_1 = new Triangle(2, 3, 4)
rectangle_1 = new Rectangle(4, 6)
square_1 = new Square(5)
>>> get_Area(circle_1)
28.274333882308138
>>> get_Area(triangle_1)
2.9047375096555625
>>> get_Area(rectangle_1)
24.0
>>> get_Area(square_1)
25.0
"""
calculated_Area = 0.0
if (isinstance(Shape, Circle)):
calculated_Area = Circle.get_radius(Shape) ** 2 * math.pi
elif (isinstance(Shape, Triangle)):
a, b, c = Triangle.get_sides(Shape)
semi_perimeter = Perimeter_Calculator.get_Perimeter(Shape) / 2
# Heron's formula for triangle area
calculated_Area = (math.sqrt(abs(semi_perimeter * (semi_perimeter - a) * (semi_perimeter - b) * (semi_perimeter - c))))
elif (isinstance(Shape, Rectangle)):
calculated_Area = Rectangle.get_width(Shape) * Rectangle.get_lenght(Shape)
elif (isinstance(Shape, Square)):
calculated_Area = Square.get_lenght(Shape) ** 2
else:
calculated_Area = "Shape not defiend"
return calculated_Area