Lines Matching defs:axis
274 * Rescale the coord between the two axis ranges.
342 /* calculate the other axis as well based on info from the old
635 * Clip an axis to its bounds, which are declared in the call to
641 AxisInfoPtr axis;
646 axis = pDev->valuator->axes + axisNum;
649 if (axis->max_value <= axis->min_value)
652 if (*val < axis->min_value)
653 *val = axis->min_value;
654 if (*val > axis->max_value)
655 *val = axis->max_value;
659 * Clip every axis in the list of valuators to its bounds.
716 * @param valuators Valuator data for each axis between @first and
754 * @param valuators Valuator data for each axis between @first and
800 * @param valuators Valuator data for each axis between @first and
820 * @param x Pointer to current x-axis value, may be modified.
821 * @param y Pointer to current y-axis value, may be modified.
822 * @param x_frac Fractional part of current x-axis value, may be modified.
823 * @param y_frac Fractional part of current y-axis value, may be modified.