/// <summary>Get <see cref="ReciprocalArea"/> from <see cref="ReciprocalLength"/> times <see cref="ReciprocalLength"/>.</summary>
 public static ReciprocalArea operator *(ReciprocalLength reciprocalLength, ReciprocalLength other)
 {
     return(ReciprocalArea.FromInverseSquareMeters(reciprocalLength.InverseMeters * other.InverseMeters));
 }