Lines Matching refs:rec1
241 const Rec& rec1 = fTouches[1]; in touchMoved() local
243 float scale = this->computePinch(rec0, rec1); in touchMoved()
246 fLocalM.setTranslate(-center(rec0.fStartX, rec1.fStartX), in touchMoved()
247 -center(rec0.fStartY, rec1.fStartY)); in touchMoved()
249 fLocalM.postTranslate(center(rec0.fLastX, rec1.fLastX), in touchMoved()
250 center(rec0.fLastY, rec1.fLastY)); in touchMoved()
296 float SkTouchGesture::computePinch(const Rec& rec0, const Rec& rec1) { in computePinch() argument
297 double dx = rec0.fStartX - rec1.fStartX; in computePinch()
298 double dy = rec0.fStartY - rec1.fStartY; in computePinch()
301 dx = rec0.fLastX - rec1.fLastX; in computePinch()
302 dy = rec0.fLastY - rec1.fLastY; in computePinch()