Lines Matching refs:motion
41 struct device_float_coords motion;
55 motion.x = i;
56 motion.y = 0;
59 accel = filter_dispatch(filter, &motion, NULL, time);
71 struct device_float_coords motion;
79 printf("# set ylabel \"delta motion\"\n");
99 motion.x = dx;
100 motion.y = 0;
103 accel = filter_dispatch(filter, &motion, NULL, time);
117 struct device_float_coords motion;
125 printf("# set ylabel \"delta motion\"\n");
134 motion.x = *dx;
135 motion.y = 0;
138 accel = filter_dispatch(filter, &motion, NULL, time);
179 "--mode=<accel|motion|delta|sequence> \n"
181 " motion ... print motion to accelerated motion\n"
183 " sequence ... print motion for custom delta sequence\n"
184 "--maxdx=<double> ... in motion mode only. Stop increasing dx at maxdx\n"
185 "--steps=<double> ... in motion and delta modes only. Increase dx by step each round\n"
189 " linear ... the default motion filter\n"
191 " touchpad ... the touchpad motion filter\n"
193 " trackpoint... trackpoint motion filter\n"
194 " custom ... custom motion filter, use --custom-points and --custom-step with this argument\n"
284 else if (streq(optarg, "motion"))