System.Drawing.Pen.setupMorseCode C# (CSharp) Méthode

setupMorseCode() private méthode

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