Esempio n. 1
0
        public Phone(Nasality nasality, Symbol symbol = null, int diacriticImpact = 0)
        {
            this.Nasality = nasality;
            this.Symbol   = symbol;

            this.DiacriticImpact = diacriticImpact;
        }
Esempio n. 2
0
        public Vowel(Frontness frontness, Height height, Nasality nasality, Symbol symbol, Roundness roundness, Phonation phonation = Phonetics.Phonation.voiced, Rhoticity rhoticity = Phonetics.Rhoticity.nonRhotic, MannerOfArticulation mannerOfArticulation = Enums.MannerOfArticulation.vowel)
            : base()
        {
            this.MannerOfArticulation = mannerOfArticulation;

            this.Frontness = frontness;
            this.Height    = height;
            this.Nasality  = nasality;
            this.Phonation = phonation;
            this.Rhoticity = rhoticity;
            this.Roundness = roundness;
            this.Symbol    = symbol;
        }
Esempio n. 3
0
 public Vowel(Nasality nasality) : base()
 {
     this.Nasality = nasality; this.MannerOfArticulation = Enums.MannerOfArticulation.vowel;
 }