public void DOS_RadialWaveDistortionTest_05()
        {
            double m = 0.5;

            for (int n = 3; n <= 12; n++)
            {
                double s          = (n % 2 == 1 ? 0.25 : (n % 4 == 2 ? 0.00 : 0.5 / n));
                string testObject = string.Format("{0}_<{1};{2:0.00}>", "RadialWaveDistortion", n, s);

                SWA_Ariadne_Outlines_DistortedOutlineShape_DistortionAccessor target;
                target = SWA_Ariadne_Outlines_DistortedOutlineShapeAccessor.RadialWaveDistortion(0, 0, n, s, m);

                double x, y;

                TestDistortion(testObject, target, 0, -1, 0, -2);

                SWA.Utilities.Geometry.PolarToRect(1, 2.0 * Math.PI * (0.75 + 0.5 / n), out x, out y);
                TestDistortionFixpoint(testObject, target, x, y);
            }
        }