inchesToDot static method

double inchesToDot(
  1. double resolution,
  2. double inches
)

Implementation

static double inchesToDot(double resolution, double inches) {
  return inches / resolution;
}