Lines Matching refs:rx
103 …mds, Array<Point>* pts, Point* cur, Point* curCtl, float x, float y, float rx, float ry, float ang… in _pathAppendArcTo() argument
129 rx = fabsf(rx); in _pathAppendArcTo()
141 rx2 = rx * rx; in _pathAppendArcTo()
150 rx *= lambdaRoot; in _pathAppendArcTo()
153 rx2 = rx * rx; in _pathAppendArcTo()
165 rx *= scale; in _pathAppendArcTo()
168 rx2 = rx * rx; in _pathAppendArcTo()
184 cxp = c * (rx * y1p / ry); in _pathAppendArcTo()
185 cyp = c * (-ry * x1p / rx); in _pathAppendArcTo()
200 at = tvg::atan2(((y1p - cyp) / ry), ((x1p - cxp) / rx)); in _pathAppendArcTo()
203 nat = tvg::atan2(((-y1p - cyp) / ry), ((-x1p - cxp) / rx)); in _pathAppendArcTo()
224 cosPhiRx = cosPhi * rx; in _pathAppendArcTo()
226 sinPhiRx = sinPhi * rx; in _pathAppendArcTo()