Exemplo n.º 1
0
        /// <summary>
        /// Extracts the note orientation given the specified clean note and actual octave for each part.
        /// </summary>
        /// <param name="cleanNote"></param>
        /// <param name="actualOctave"></param>
        /// <returns></returns>
        private char[] GetOrientations(Note[] cleanNote, Octave[] actualOctave)
        {
            char[] orientation = new char[2];

            orientation[0] = LayoutController.GetNoteOrientation(cleanNote[0], actualOctave[0]);
            orientation[1] = LayoutController.GetNoteOrientation(cleanNote[1], actualOctave[1]);

            return(orientation);
        }