Home | History | Annotate | Download | only in misc

Lines Matching full:100

132     >>> calcBounds([(0, 40), (0, 100), (50, 50), (80, 10)])
133 (0, 10, 80, 100)
134 >>> updateBounds((0, 0, 0, 0), (100, 100))
135 (0, 0, 100, 100)
136 >>> pointInRect((50, 50), (0, 0, 100, 100))
138 >>> pointInRect((0, 0), (0, 0, 100, 100))
140 >>> pointInRect((100, 100), (0, 0, 100, 100))
142 >>> not pointInRect((101, 100), (0, 0, 100, 100))
144 >>> list(pointsInRect([(50, 50), (0, 0), (100, 100), (101, 100)], (0, 0, 100, 100)))
152 >>> normRect((0, 10, 100, 200))
153 (0, 10, 100, 200)
154 >>> normRect((100, 200, 0, 10))
155 (0, 10, 100, 200)
174 >>> rectCenter((0, 0, 100, 200))
176 >>> rectCenter((0, 0, 100, 199.0))