getTruncateFeetFromInches property

int getTruncateFeetFromInches

Converts a given number of inches to feet, returns the whole number of feet

Implementation

int get getTruncateFeetFromInches {
  return (this / 12).truncate();
}