Home
last modified time | relevance | path

Searched refs:p1p0 (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/graphics/qt/
DPathQt.cpp167 FloatPoint p1p0((p0.x() - p1.x()), (p0.y() - p1.y())); in addArcTo() local
169 float p1p0_length = sqrtf(p1p0.x() * p1p0.x() + p1p0.y() * p1p0.y()); in addArcTo()
172 double cos_phi = (p1p0.x() * p1p2.x() + p1p0.y() * p1p2.y()) / (p1p0_length * p1p2_length); in addArcTo()
182 FloatPoint ep((p0.x() + factor_max * p1p0.x()), (p0.y() + factor_max * p1p0.y())); in addArcTo()
189 FloatPoint t_p1p0((p1.x() + factor_p1p0 * p1p0.x()), (p1.y() + factor_p1p0 * p1p0.y())); in addArcTo()
191 FloatPoint orth_p1p0(p1p0.y(), -p1p0.x()); in addArcTo()
/external/webkit/WebCore/platform/graphics/cairo/
DPathCairo.cpp168 FloatPoint p1p0((p0.x() - p1.x()),(p0.y() - p1.y())); in addArcTo() local
170 float p1p0_length = sqrtf(p1p0.x() * p1p0.x() + p1p0.y() * p1p0.y()); in addArcTo()
173 double cos_phi = (p1p0.x() * p1p2.x() + p1p0.y() * p1p2.y()) / (p1p0_length * p1p2_length); in addArcTo()
183 FloatPoint ep((p0.x() + factor_max * p1p0.x()), (p0.y() + factor_max * p1p0.y())); in addArcTo()
190 FloatPoint t_p1p0((p1.x() + factor_p1p0 * p1p0.x()), (p1.y() + factor_p1p0 * p1p0.y())); in addArcTo()
192 FloatPoint orth_p1p0(p1p0.y(), -p1p0.x()); in addArcTo()