Question: Write the following functions: # Return true if point ( x 2 , y 2 ) is on the left side of the directed line

Write the following functions:
# Return true if point (x2, y2) is on the left side of the directed line from (x0, y0) to (x1, y1)
def leftOfTheLine(x0, y0, x1, y1, x2, y2):
# Return true if point (x2, y2) is on the same line from (x0, y0) to (x1, y1)
def onTheSameLine(x0, y0, x1, y1, x2, y2):
# Return true if point (x2, y2) is on the line segment from (x0, y0) to (x1, y1)
def rightOfTheLine(x0, y0, x1, y1, x2, y2):
Write a main function that prompts the user to enter the three points for p0, p1, and p2 and
displays whether p2 is on the left of the line from p0 to p1, on the right, on the same line, or on
the line segment.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!