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
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...
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:](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F03b967bc-2466-43eb-8186-77cca514d469%2F8273ad20-6db3-4dbe-ae05-ce0c31e55a0f%2F0pk14ng_processed.jpeg&w=3840&q=75)
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.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F03b967bc-2466-43eb-8186-77cca514d469%2F8273ad20-6db3-4dbe-ae05-ce0c31e55a0f%2Ffxz54n_processed.jpeg&w=3840&q=75)
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

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps with 3 images

Recommended textbooks for you

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 Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

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 Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

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
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education

Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY