System.Drawing.Pen.setupMorseCode C# (CSharp) Method

setupMorseCode() private method

private setupMorseCode ( float morse ) : nfloat[]
morse float
return nfloat[]
        nfloat[] setupMorseCode(float[] morse)
        {
            nfloat[] dashdots = new nfloat[morse.Length];
            for (int x = 0; x < dashdots.Length; x++)
            {
                dashdots[x] = morse[x] * width;
            }

            return dashdots;
        }