Searched refs:bezier_y (Results 1 – 1 of 1) sorted by relevance
/external/pdfium/xfa/src/fxgraphics/src/ |
D | fx_path_generator.cpp | 133 FX_FLOAT bezier_x, bezier_y; in ArcTo() local 135 bezier_y = y + FXSYS_Mul(height, FXSYS_Mul(px[0], sn) + FXSYS_Mul(py[0], cs)); in ArcTo() 136 m_pPathData->SetPoint(old_count, bezier_x, bezier_y, FXPT_BEZIERTO); in ArcTo() 138 bezier_y = y + FXSYS_Mul(height, FXSYS_Mul(px[1], sn) + FXSYS_Mul(py[1], cs)); in ArcTo() 139 m_pPathData->SetPoint(old_count + 1, bezier_x, bezier_y, FXPT_BEZIERTO); in ArcTo() 141 bezier_y = y + FXSYS_Mul(height, FXSYS_sin(start_angle + sweep_angle)); in ArcTo() 142 m_pPathData->SetPoint(old_count + 2, bezier_x, bezier_y, FXPT_BEZIERTO); in ArcTo()
|