/external/fonttools/Tests/pens/ |
D | t2CharStringPen_test.py | 67 pen.curveTo((10, 0), (20, 10), (20, 20)) 68 pen.curveTo((20, 30), (10, 40), (0, 40)) 82 pen.curveTo((115, 44), (115, 76), (95, 95)) 83 pen.curveTo((76, 114), (44, 115), (25, 95)) 97 pen.curveTo((20, 10), (50, 10), (60, 10)) 98 pen.curveTo((60, 20), (60, 50), (60, 60)) 99 pen.curveTo((50, 50), (40, 60), (30, 60)) 100 pen.curveTo((40, 50), (30, 40), (30, 30)) 101 pen.curveTo((30, 25), (25, 19), (20, 20)) 102 pen.curveTo((15, 20), (9, 25), (10, 30)) [all …]
|
D | perimeterPen_test.py | 9 pen.curveTo( (800, 393), (808, 399), (819, 412) ) 10 pen.curveTo( (818, 388), (774, 138), (489, 145) ) 11 pen.curveTo( (188, 145), (200, 398), (200, 421) ) 12 pen.curveTo( (209, 409), (220, 394), (254, 360) ) 17 pen.curveTo( (220, 394), (209, 409), (200, 421) ) 18 pen.curveTo( (200, 398), (188, 145), (489, 145) ) 19 pen.curveTo( (774, 138), (818, 388), (819, 412) ) 20 pen.curveTo( (808, 399), (800, 393), (771, 367) ) 25 pen.curveTo( (800, 393), (808, 399), (819, 412) ) 26 pen.curveTo( (818, 388), (774, 138), (489, 145) ) [all …]
|
D | areaPen_test.py | 11 pen.curveTo( (800, 393), (808, 399), (819, 412) ) 12 pen.curveTo( (818, 388), (774, 138), (489, 145) ) 13 pen.curveTo( (188, 145), (200, 398), (200, 421) ) 14 pen.curveTo( (209, 409), (220, 394), (254, 360) ) 19 pen.curveTo( (220, 394), (209, 409), (200, 421) ) 20 pen.curveTo( (200, 398), (188, 145), (489, 145) ) 21 pen.curveTo( (774, 138), (818, 388), (819, 412) ) 22 pen.curveTo( (808, 399), (800, 393), (771, 367) ) 27 pen.curveTo( (800, 393), (808, 399), (819, 412) ) 28 pen.curveTo( (818, 388), (774, 138), (489, 145) ) [all …]
|
D | pointInsidePen_test.py | 32 pen.moveTo((0,0)); pen.curveTo((9,1), (9,4), (0,5)) 33 pen.moveTo((10,5)); pen.curveTo((1,4), (1,1), (10,0)) 91 pen.curveTo( (825, 348) , (715, 184) , (614, 202) ) 135 pen.curveTo( (-55, 100) , (-100, 55) , (-100, 0) ) 136 pen.curveTo( (-100, -55) , (-55, -100) , (0, -100) ) 137 pen.curveTo( (55, -100) , (100, -55) , (100, 0) ) 138 pen.curveTo( (100, 55) , (55, 100) , (0, 100) ) 176 pen.curveTo( (487, 719) , (508, 783) , (556, 783) ) 178 pen.curveTo( (739, 783) , (749, 712) , (728, 697) ) 189 … pen.curveTo( (487.328125, 719.359375), (507.84375, 783.140625), (555.796875, 783.140625) ) [all …]
|
D | basePen_test.py | 43 pen.curveTo((50.0, 75.0), (60.0, 50.0), (50.0, 25.0), (0.0, 0.0)) 64 self.assertRaises(AssertionError, pen.curveTo) 69 pen.curveTo((1.0, 1.1)) 76 pen.curveTo((6.0, 3.0), (3.0, 6.0)) 84 pen.curveTo((1.0, 1.1), (2.0, 2.1), (3.0, 3.1), (4.0, 4.1))
|
D | boundsPen_test.py | 11 pen.curveTo((-50, 25), (-60, 50), (-50, 75), (0, 100)) 32 pen.curveTo((20, 10), (90, 40), (0, 0)) 55 pen.curveTo((20, 10), (90, 40), (0, 0))
|
D | recordingPen_test.py | 12 pen.curveTo((50.0, 75.0), (60.0, 50.0), (50.0, 0.0))
|
D | pointPen_test.py | 25 def curveTo(self, *pts): member in _TestSegmentPen 187 pen.curveTo((10, 20), (20, 20), (20, 10))
|
/external/fonttools/Lib/fontTools/pens/ |
D | teePen.py | 28 def curveTo(self, *points): member in TeePen 30 pen.curveTo(*points) 47 pen.curveTo((50, 75), (60, 50), (50, 25))
|
D | transformPen.py | 34 def curveTo(self, *points): member in TransformPen 35 self._outPen.curveTo(*self._transformPoints(points)) 64 pen.curveTo((50, 75), (60, 50), (50, 25), (0, 0))
|
D | basePen.py | 59 def curveTo(self, *points): member in AbstractPen 129 def curveTo(self, *points): member in NullPen 257 def curveTo(self, *points): member in BasePen 388 pen.curveTo((50, 75), (60, 50), (50, 25), (0, 0))
|
D | recordingPen.py | 53 def curveTo(self, *points): member in RecordingPen 98 pen.curveTo((50, 75), (60, 50), (50, 25))
|
D | filterPen.py | 68 def curveTo(self, *points): member in FilterPen 69 self._outPen.curveTo(*points)
|
D | reportLabPen.py | 32 self.path.curveTo(x1, y1, x2, y2, x3, y3)
|
D | pointPen.py | 193 pen.curveTo(*points) 235 def curveTo(self, *pts): member in SegmentToPointPen
|
/external/fonttools/Lib/fontTools/svgLib/path/ |
D | parser.py | 150 pen.curveTo((control1.real, control1.imag), 178 pen.curveTo((control1.real, control1.imag),
|
D | arc.py | 153 pen.curveTo(
|
/external/fonttools/Lib/fontTools/varLib/ |
D | interpolatable.py | 33 self._pen.curveTo(p1, p2, p3)
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowPath.java | 97 mPath.curveTo(x1, y1, x2, y2, mLastX = x3, mLastY = y3); in cubicTo() 379 mPath.curveTo(x1, y1, x2, y2, mLastX = x3, mLastY = y3); in rCubicTo()
|
/external/fonttools/Lib/fontTools/misc/ |
D | symfont.py | 193 pen.curveTo((200,250),(300,300),(250,350))
|
D | psCharStrings.py | 530 self.pen.curveTo(nextPoint(pt1), nextPoint(pt2), nextPoint(pt3))
|