Lines Matching refs:point
93 … lv_indev_get_gesture_primary_point(lv_indev_gesture_recognizer_t * recognizer, lv_point_t * point) in lv_indev_get_gesture_primary_point() argument
96 point->x = recognizer->info->motions[0].point.x; in lv_indev_get_gesture_primary_point()
97 point->y = recognizer->info->motions[0].point.y; in lv_indev_get_gesture_primary_point()
102 point->x = 0; in lv_indev_get_gesture_primary_point()
103 point->y = 0; in lv_indev_get_gesture_primary_point()
127 …d lv_indev_get_gesture_center_point(lv_indev_gesture_recognizer_t * recognizer, lv_point_t * point) in lv_indev_get_gesture_center_point() argument
130 point->x = 0; in lv_indev_get_gesture_center_point()
131 point->y = 0; in lv_indev_get_gesture_center_point()
135 point->x = recognizer->info->center.x; in lv_indev_get_gesture_center_point()
136 point->y = recognizer->info->center.y; in lv_indev_get_gesture_center_point()
166 data->point.x = cur_pnt.x; in lv_indev_set_gesture_data()
167 data->point.y = cur_pnt.y; in lv_indev_set_gesture_data()
187 data->point.x = cur_pnt.x; in lv_indev_set_gesture_data()
188 data->point.y = cur_pnt.y; in lv_indev_set_gesture_data()
234 … i, touch->id, touch->state, touch->point.x, touch->point.y, r->info->finger_cnt); in lv_indev_gesture_detect_pinch()
448 motion->start_point.x = touch->point.x; in process_touch_event()
449 motion->start_point.y = touch->point.y; in process_touch_event()
450 motion->point.x = touch->point.x; in process_touch_event()
451 motion->point.y = touch->point.y; in process_touch_event()
487 motion->point.x = touch->point.x; in process_touch_event()
488 motion->point.y = touch->point.y; in process_touch_event()
525 x += motion->point.x; in gesture_update_center_point()
526 y += motion->point.y; in gesture_update_center_point()
542 delta_x[i] = motion->point.x - g->center.x; in gesture_update_center_point()
543 delta_y[i] = motion->point.y - g->center.y; in gesture_update_center_point()
580 center_x += motion->point.x; in gesture_calculate_factors()
581 center_y += motion->point.y; in gesture_calculate_factors()
602 d_x = (motion->point.x - center_x); in gesture_calculate_factors()
603 d_y = (motion->point.y - center_y); in gesture_calculate_factors()