예제 #1
0
 /// <summary>
 /// Returns the inverse of this conversion.
 /// </summary>
 /// <returns>IMathTransform that is the reverse of the current conversion.</returns>
 public override IMathTransform Inverse()
 {
     if (_inverse == null)
     {
         _inverse = new GeocentricTransform(this._Parameters, !_isInverse);
     }
     return(_inverse);
 }
예제 #2
0
 /// <summary>
 /// Returns the inverse of this conversion.
 /// </summary>
 /// <returns>IMathTransform that is the reverse of the current conversion.</returns>
 public override IMathTransform Inverse()
 {
     if (_inverse == null)
         _inverse = new GeocentricTransform(this._Parameters, !_isInverse);
     return _inverse;
 }