Home | History | Annotate | Download | only in misc

Lines Matching full:100

28         >>> calcQuadraticBounds((0, 0), (50, 100), (100, 0))
29 (0, 0, 100, 50.0)
30 >>> calcQuadraticBounds((0, 0), (100, 0), (100, 100))
31 (0.0, 0.0, 100, 100)
49 >>> calcCubicBounds((0, 0), (25, 100), (75, 100), (100, 0))
50 (0, 0, 100, 75.0)
51 >>> calcCubicBounds((0, 0), (50, 0), (100, 50), (100, 100))
52 (0.0, 0.0, 100, 100)
53 >>> print "%f %f %f %f" % calcCubicBounds((50, 0), (0, 100), (100, 100), (50, 0))
77 >>> printSegments(splitLine((0, 0), (100, 100), 50, True))
79 ((50.0, 50.0), (100, 100))
80 >>> printSegments(splitLine((0, 0), (100, 100), 100, True))
81 ((0, 0), (100, 100))
82 >>> printSegments(splitLine((0, 0), (100, 100), 0, True))
84 ((0.0, 0.0), (100, 100))
85 >>> printSegments(splitLine((0, 0), (100, 100), 0, False))
87 ((0.0, 0.0), (100, 100))
114 >>> printSegments(splitQuadratic((0, 0), (50, 100), (100, 0), 150, False))
115 ((0, 0), (50, 100), (100, 0))
116 >>> printSegments(splitQuadratic((0, 0), (50, 100), (100, 0), 50, False))
119 >>> printSegments(splitQuadratic((0, 0), (50, 100), (100, 0), 25, False))
122 >>> printSegments(splitQuadratic((0, 0), (50, 100), (100, 0), 25, True))
127 >>> printSegments(splitQuadratic((0, 0), (50, 100), (100, 0), 50, True))
146 >>> printSegments(splitCubic((0, 0), (25, 100), (75, 100), (100, 0), 150, False))
147 ((0, 0), (25, 100), (75, 100), (100, 0))
148 >>> printSegments(splitCubic((0, 0), (25, 100), (75, 100), (100, 0), 50, False))
151 >>> printSegments(splitCubic((0, 0), (25, 100), (75, 100), (100, 0), 25, True))
169 >>> printSegments(splitQuadraticAtT((0, 0), (50, 100), (100, 0), 0.5))
172 >>> printSegments(splitQuadraticAtT((0, 0), (50, 100), (100, 0), 0.5, 0.75))
185 >>> printSegments(splitCubicAtT((0, 0), (25, 100), (75, 100), (100, 0), 0.5))
188 >>> printSegments(splitCubicAtT((0, 0), (25, 100), (75, 100), (100, 0), 0.5, 0.75))