inchToRod method

double inchToRod(
  1. double inches
)

Implementation

double inchToRod(double inches) {
  // Replace with the appropriate conversion factor if known
  return inches; // Currently set to the same value (unknown conversion)
}