summaryrefslogtreecommitdiff
path: root/2d/rect.scm
diff options
context:
space:
mode:
Diffstat (limited to '2d/rect.scm')
-rw-r--r--2d/rect.scm4
1 files changed, 0 insertions, 4 deletions
diff --git a/2d/rect.scm b/2d/rect.scm
index 7169302..bbccc0e 100644
--- a/2d/rect.scm
+++ b/2d/rect.scm
@@ -116,9 +116,5 @@ not overlap, a rect of size 0 is returned."
"Tests if the given point is within rect."
(and (>= x (rect-x rect))
(<= x (rect-x2 rect))
- (>= x (rect-x rect))
- (<= x (rect-x2 rect))
- (>= y (rect-y rect))
- (<= y (rect-y2 rect))
(>= y (rect-y rect))
(<= y (rect-y2 rect))))