Index: src/Common/GeoAPI/CoordinateSystems/IGeographicTransform.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/GeoAPI/CoordinateSystems/IGeographicTransform.cs (.../IGeographicTransform.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/GeoAPI/CoordinateSystems/IGeographicTransform.cs (.../IGeographicTransform.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -19,41 +19,41 @@ namespace GeoAPI.CoordinateSystems { - /// - /// The IGeographicTransform interface is implemented on geographic transformation - /// objects and implements datum transformations between geographic coordinate systems. - /// - public interface IGeographicTransform : IInfo - { - /// - /// Gets or sets source geographic coordinate system for the transformation. - /// - IGeographicCoordinateSystem SourceGCS { get; set; } + /// + /// The IGeographicTransform interface is implemented on geographic transformation + /// objects and implements datum transformations between geographic coordinate systems. + /// + public interface IGeographicTransform : IInfo + { + /// + /// Gets or sets source geographic coordinate system for the transformation. + /// + IGeographicCoordinateSystem SourceGCS { get; set; } - /// - /// Gets or sets the target geographic coordinate system for the transformation. - /// - IGeographicCoordinateSystem TargetGCS { get; set; } + /// + /// Gets or sets the target geographic coordinate system for the transformation. + /// + IGeographicCoordinateSystem TargetGCS { get; set; } - /// - /// Returns an accessor interface to the parameters for this geographic transformation. - /// - IParameterInfo ParameterInfo { get; } + /// + /// Returns an accessor interface to the parameters for this geographic transformation. + /// + IParameterInfo ParameterInfo { get; } - /// - /// Transforms an array of points from the source geographic coordinate system - /// to the target geographic coordinate system. - /// - /// Points in the source geographic coordinate system - /// Points in the target geographic coordinate system + /// + /// Transforms an array of points from the source geographic coordinate system + /// to the target geographic coordinate system. + /// + /// Points in the source geographic coordinate system + /// Points in the target geographic coordinate system List Forward(List points); - /// - /// Transforms an array of points from the target geographic coordinate system - /// to the source geographic coordinate system. - /// - /// Points in the target geographic coordinate system - /// Points in the source geographic coordinate system + /// + /// Transforms an array of points from the target geographic coordinate system + /// to the source geographic coordinate system. + /// + /// Points in the target geographic coordinate system + /// Points in the source geographic coordinate system List Inverse(List points); - } -} + } +} \ No newline at end of file