Searched refs:solveQuadratic (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathRoots.h | 85 template <class T> int solveQuadratic (T a, T b, T c, T x[2]); 116 solveQuadratic (T a, T b, T c, T x[2]) in solveQuadratic() function 208 return solveQuadratic (b, c, d, x); in solveCubic()
|
/external/fonttools/Lib/fontTools/misc/ |
D | bezierTools.py | 62 xRoots = [t for t in solveQuadratic(ax3, bx2, cx) if 0 <= t < 1] 63 yRoots = [t for t in solveQuadratic(ay3, by2, cy) if 0 <= t < 1] 133 solutions = solveQuadratic(a[isHorizontal], b[isHorizontal], 256 def solveQuadratic(a, b, c, function 297 return solveQuadratic(b, c, d)
|
/external/fonttools/Lib/fontTools/pens/ |
D | pointInsidePen.py | 8 from fontTools.misc.bezierTools import solveQuadratic, solveCubic 180 solutions = sorted(solveQuadratic(a, b, c - y))
|
/external/opencv3/modules/features2d/src/ |
D | evaluation.cpp | 48 template<typename _Tp> static int solveQuadratic(_Tp a, _Tp b, _Tp c, _Tp& x1, _Tp& x2) in solveQuadratic() function 147 solveQuadratic(1., -(a+c), ac_b2, x1, x2); in EllipticKeyPoint()
|