public void TestDotSpatialAffineCoordinateSequence()
 {
     var csf = new NetTopologySuite.Geometries.Implementation.DotSpatialAffineCoordinateSequence(
         new[] { 0d, 0d, 10d, 10d, 10d, 0d, 0d, 0d, }, new []{ 1d, 2, 3, 4 }, new [] { 4, 3, 2, 1d} );
     var csr = csf.Reversed();
     DoTest(csf, csr);
 }
        public void TestDotSpatialAffineCoordinateSequence()
        {
            var csf = new NetTopologySuite.Geometries.Implementation.DotSpatialAffineCoordinateSequence(
                new[] { 0d, 0d, 10d, 10d, 10d, 0d, 0d, 0d, }, new [] { 1d, 2, 3, 4 }, new [] { 4, 3, 2, 1d });
            var csr = csf.Reversed();

            DoTest(csf, csr);
        }