Lines Matching defs:firstPointOffset
855 void TouchGuider::GetPointOffset(MMI::PointerEvent &event, std::vector<float> &firstPointOffset,
894 firstPointOffset.push_back(xPointF - xPointDownF); // firstOffsetX
895 firstPointOffset.push_back(yPointF - yPointDownF); // firstOffsetY
904 std::vector<float> firstPointOffset;
906 GetPointOffset(event, firstPointOffset, secondPointOffset);
907 if (firstPointOffset.size() != SCREEN_AXIS_NUM || secondPointOffset.size() != SCREEN_AXIS_NUM) {
911 float firstOffsetX = firstPointOffset[0];
912 float firstOffsetY = firstPointOffset[1];
934 std::vector<float> firstPointOffset;
936 GetPointOffset(event, firstPointOffset, secondPointOffset);
937 if (firstPointOffset.size() != SCREEN_AXIS_NUM || secondPointOffset.size() != SCREEN_AXIS_NUM) {
942 firstPointOffset[0], firstPointOffset[1], secondPointOffset[0], secondPointOffset[1]);
943 if (hypot(firstPointOffset[0], firstPointOffset[1]) >= multiFingerGestureRecognizer_.GetTouchSlop() &&