getWidthRatio method

double getWidthRatio(
  1. double val
)

Implementation

double getWidthRatio(double val) {
  double res = (val / refWidth) * 100;
  double temp = res * blockSizeHorizontal;

  return temp;
}