System.Drawing.Pen.setupMorseCode C# (CSharp) 메소드

setupMorseCode() 개인적인 메소드

private setupMorseCode ( float morse ) : nfloat[]
morse float
리턴 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;
        }