forked from AtsushiSakai/PythonRobotics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement visibility_road_map planner
- Loading branch information
1 parent
cfd8384
commit ee423e8
Showing
8 changed files
with
300 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
class Geometry: | ||
class Point: | ||
def __init__(self, x, y): | ||
self.x = x | ||
self.y = y | ||
|
||
@staticmethod | ||
def is_seg_intersect(p1, q1, p2, q2): | ||
|
||
def on_segment(p, q, r): | ||
if ((q.x <= max(p.x, r.x)) and (q.x >= min(p.x, r.x)) and | ||
(q.y <= max(p.y, r.y)) and (q.y >= min(p.y, r.y))): | ||
return True | ||
return False | ||
|
||
def orientation(p, q, r): | ||
val = (float(q.y - p.y) * (r.x - q.x)) - ( | ||
float(q.x - p.x) * (r.y - q.y)) | ||
if val > 0: | ||
return 1 | ||
elif val < 0: | ||
return 2 | ||
else: | ||
return 0 | ||
|
||
# Find the 4 orientations required for | ||
# the general and special cases | ||
o1 = orientation(p1, q1, p2) | ||
o2 = orientation(p1, q1, q2) | ||
o3 = orientation(p2, q2, p1) | ||
o4 = orientation(p2, q2, q1) | ||
|
||
if (o1 != o2) and (o3 != o4): | ||
return True | ||
if (o1 == 0) and on_segment(p1, p2, q1): | ||
return True | ||
if (o2 == 0) and on_segment(p1, q2, q1): | ||
return True | ||
if (o3 == 0) and on_segment(p2, p1, q2): | ||
return True | ||
if (o4 == 0) and on_segment(p2, q1, q2): | ||
return True | ||
|
||
return False |
Oops, something went wrong.