getFeetFromInches property

double getFeetFromInches

Converts a given number of inches to feet, returns feet as a double

Implementation

double get getFeetFromInches {
  return (this / 12);
}