Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
imitelis authored Aug 16, 2023
1 parent fbf663d commit 17c1d24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ class Symbol {
/* this.characters = `αβγδεζηθικλμνξοπρστυφχψω`; Greek lowercase alphabet */
/* this.characters = `ハミヒーウシナモニサワツオリアホテマケメエカキムユラセネスタヌヘヲイクコソチトノフヤヨルレロン`; Katakana alphabet */
/* this.characters = `01`; Binary alphabet */
/* this.characters = `日ヲアウエオカキケコサシスセソタツテナニヌネハヒホマミムメモヤユラリワTHEMATRIXBCDFGHJKLMRNOPQXYWZ00000011111123456789:;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ :;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ `; The Matrix alphabet */
this.characters = `日ヲアウエオカキケコサシスセソタツテナニヌネハヒホマミムメモヤユラリワTHEMATRIXBCDFGHJKLMRNOPQXYWZ00000011111123456789:;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ :;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ `;
/* this.characters = `日ヲアウエオカキケコサシスセソタツテナニヌネハヒホマミムメモヤユラリワTHEMATRIXBCDFGHJKLMRNOPQXYWZ00000011111123456789:;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ :;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ `; Latin uppercase + Katakana + Binary alphabet */
this.characters = `日ヲアウエオカキケコサシスセソタツテナニヌネハヒホマミムメモヤユラリワTHEMATRIX00000011111123456789:;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ :;.,#@"'=*+-<>{}/&$¦|_λ? \` \\ `; /* The Matrix alphabet */
this.x = x;
this.y = y;
this.fontSize = fontSize;
this.text = ' ';
this.canvasHeight = canvasHeight;

}

draw(context){
this.text = this.characters.charAt(Math.floor(Math.random() * this.characters.length));
context.fillStyle = '#0aff0a';
Expand Down

0 comments on commit 17c1d24

Please sign in to comment.