OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:calcCubicBounds
(Results
1 - 2
of
2
) sorted by null
/external/fonttools/Lib/fontTools/pens/
boundsPen.py
4
from fontTools.misc.bezierTools import
calcCubicBounds
, calcQuadraticBounds
68
bounds = unionRect(bounds,
calcCubicBounds
(
/external/fonttools/Lib/fontTools/misc/
bezierTools.py
9
"
calcCubicBounds
",
45
def
calcCubicBounds
(pt1, pt2, pt3, pt4):
49
>>>
calcCubicBounds
((0, 0), (25, 100), (75, 100), (100, 0))
51
>>>
calcCubicBounds
((0, 0), (50, 0), (100, 50), (100, 100))
53
>>> print "%f %f %f %f" %
calcCubicBounds
((50, 0), (0, 100), (100, 100), (50, 0))
Completed in 132 milliseconds