inchToFoot method

double inchToFoot(
  1. double inches
)

Inches to other units

Implementation

// Inch to Foot
double inchToFoot(double inches) {
  return inches / 12.0;
}