fix codeformat
This commit is contained in:
parent
efa0737660
commit
70712bdab6
1 changed files with 21 additions and 8 deletions
|
|
@ -15,14 +15,27 @@ export var vowelFormant = {
|
||||||
en: { freqs: [600, 1480, 2450, 3200, 3300], gains: [1, 0.15, 0.0708, 0.0316, 0.02995], qs: [40, 60, 100, 120, 120] },
|
en: { freqs: [600, 1480, 2450, 3200, 3300], gains: [1, 0.15, 0.0708, 0.0316, 0.02995], qs: [40, 60, 100, 120, 120] },
|
||||||
an: { freqs: [700, 1050, 2500, 3000, 3300], gains: [1, 0.1, 0.0708, 0.0316, 0.02995], qs: [40, 60, 100, 120, 120] },
|
an: { freqs: [700, 1050, 2500, 3000, 3300], gains: [1, 0.1, 0.0708, 0.0316, 0.02995], qs: [40, 60, 100, 120, 120] },
|
||||||
on: { freqs: [500, 1080, 2350, 3000, 3300], gains: [1, 0.1, 0.0708, 0.0316, 0.02995], qs: [40, 60, 100, 120, 120] },
|
on: { freqs: [500, 1080, 2350, 3000, 3300], gains: [1, 0.1, 0.0708, 0.0316, 0.02995], qs: [40, 60, 100, 120, 120] },
|
||||||
get æ() { return this.ae; },
|
get æ() {
|
||||||
get ø() { return this.oe; },
|
return this.ae;
|
||||||
get ɑ() { return this.aa; },
|
},
|
||||||
get å() { return this.aa; },
|
get ø() {
|
||||||
get ö() { return this.oe; },
|
return this.oe;
|
||||||
get ü() { return this.ue; },
|
},
|
||||||
get ı() { return this.y; },
|
get ɑ() {
|
||||||
|
return this.aa;
|
||||||
|
},
|
||||||
|
get å() {
|
||||||
|
return this.aa;
|
||||||
|
},
|
||||||
|
get ö() {
|
||||||
|
return this.oe;
|
||||||
|
},
|
||||||
|
get ü() {
|
||||||
|
return this.ue;
|
||||||
|
},
|
||||||
|
get ı() {
|
||||||
|
return this.y;
|
||||||
|
},
|
||||||
};
|
};
|
||||||
if (typeof GainNode !== 'undefined') {
|
if (typeof GainNode !== 'undefined') {
|
||||||
class VowelNode extends GainNode {
|
class VowelNode extends GainNode {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue