Siven a class Point2D and an abstract class Shape2D: from_future_ import annotations from abc import ABC, abstractmethod from dataclasses import dataclass import math @dataclass class Point2D: X: float

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

In python, what is the code for this??

Given a class Point2D and an abstract class Shape2D:
fromfuture_ import annotations
from abc import ABC, abstractmethod
from dataclasses import dataclass
import math
edataclass
class Point2D:
X: float
y: float
def distance(self, other: Point2D) -> float:
return math.sqrt((self.x other.x)**2 + (self.y other.y)**2)
class Shape2D(ABC):
@abstractmethod
def get perimeter(self) -> float:
""Returns the perimeter of the 2D shape""
@abstractmethod
def get_points(self) -> list [Point2D]:
**"returns a list of points defining the 2D shape"""
implement a class Rectangle that:
Transcribed Image Text:Given a class Point2D and an abstract class Shape2D: fromfuture_ import annotations from abc import ABC, abstractmethod from dataclasses import dataclass import math edataclass class Point2D: X: float y: float def distance(self, other: Point2D) -> float: return math.sqrt((self.x other.x)**2 + (self.y other.y)**2) class Shape2D(ABC): @abstractmethod def get perimeter(self) -> float: ""Returns the perimeter of the 2D shape"" @abstractmethod def get_points(self) -> list [Point2D]: **"returns a list of points defining the 2D shape""" implement a class Rectangle that:
implement a class Rectangle that:
• Inherits from Shape2D
Implements a constructor accepting 4 points of type Point2D
• Implements get perimeter(self) -> float from the parent class returning the
size of the perimeter of the rectangle
• Implements get_points(self) -> list[Point2D] from the parent class returning a
list of all points of the rectangle
Note that Point2D has a distance() method to measure the distance from self to
another point.
Transcribed Image Text:implement a class Rectangle that: • Inherits from Shape2D Implements a constructor accepting 4 points of type Point2D • Implements get perimeter(self) -> float from the parent class returning the size of the perimeter of the rectangle • Implements get_points(self) -> list[Point2D] from the parent class returning a list of all points of the rectangle Note that Point2D has a distance() method to measure the distance from self to another point.
Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY