inchToAngstrom method

double inchToAngstrom(
  1. double inches
)

Implementation

double inchToAngstrom(double inches) {
  return inches * 2.54e8;
}