Lines Matching refs:points
194 " custom ... custom motion filter, use --custom-points and --custom-step with this argument\n"
195 "--custom-points=\"<double>;...;<double>\" ... n points defining a custom acceleration function\n"
236 .points = {0.0, 1.0},
266 {"custom-points", 1, 0, OPT_CUSTOM_POINTS },
327 double *points = double_array_from_string(optarg,
330 if (!points ||
334 "Invalid --custom-points\n"
335 "Please provide at least 2 points separated by a semicolon\n"
336 " e.g. --custom-points=\"1.0;1.5\"\n");
337 free(points);
341 memcpy(custom_func.points,
342 points,
343 sizeof(*points) * npoints);
344 free(points);
383 custom_func.points);