Esempio n. 1
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. 2
0
 public Phone(Rhoticity rhoticity, Symbol symbol = null, int diacriticImpact = 0)
 {
     this.Retroflex       = rhoticity;
     this.Symbol          = symbol;
     this.DiacriticImpact = diacriticImpact;
 }