Python language
I need an answer to this question
with a proving and text, please
GeometricObject class :
class GeometricObject: def __init__(self, color="green",
filled=True): self.color = color self.filled = filled def
get_color(self): return self.color def set_color(self, color):
self.color = color def isfilled(self): return self.filled def
set_filled(self, filled): self.filled = filled def __str__(self):
return "color: " + self.color + \ " and filled: " +
str(self.filled)
Question IV (30 pts): Design a class named Triangle that extends the GeometricObject class given in the textbook. The Triangle class contains: Three float data fields named side1, sidez, and side3 to denote the three sides of the triangle. A constructor that creates a triangle with the specified side1, sidez, and side3 with default values 1.0. The accessor (getter) and mutator (setter) methods for all three data fields. The class should throw a RuntimeError exception if the three given sides cannot form a triangle (If one of sides is 0 or less than 0.) A method named getArea() that returns the area of this triangle. A method named getPerimeter() that returns the perimeter of this triangle. A method named__eq__(self, other) that checks whether two triangles are equal of not by comparing their three sides. For example, if a triangle has side lengths 4,1,3 and another one has side lengths 3,4,1 then they should be accepted equal. A method named__str__() that returns a string description for the triangle. The __str__() method is implemented as follows: return "Triangle: side1 = " + str(side1)+" side2 = " + str(side2)+" side3 = " + str(side3) Implement the Triangle class. Write a test program that generates triangles with three sides of the triangle, a color, and 1 or o to indicate whether the triangle is filled. The program should generate three Triangle objects. Two of these triangles should have the same side lengths. The program should display triangle's area, perimeter, color, and True or False to indicate whether the triangle is filled or not. The program should also compare triangles with each other whether they are equal or not. Note: Submit all your solutions within a ZIP or RAR file.
Python language I need an answer to this question with a proving and text, please GeometricObject class : class Geometri
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am