├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── res ├── matrix_custom_blue.png ├── matrix_custom_blue_reverse.png ├── matrix_cyan_blocks.png ├── matrix_green.png ├── matrix_magenta_katakana.png ├── matrix_red.png └── matrix_showcase.mp4 └── src ├── colours.rs ├── main.rs └── rain.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/README.md -------------------------------------------------------------------------------- /res/matrix_custom_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_custom_blue.png -------------------------------------------------------------------------------- /res/matrix_custom_blue_reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_custom_blue_reverse.png -------------------------------------------------------------------------------- /res/matrix_cyan_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_cyan_blocks.png -------------------------------------------------------------------------------- /res/matrix_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_green.png -------------------------------------------------------------------------------- /res/matrix_magenta_katakana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_magenta_katakana.png -------------------------------------------------------------------------------- /res/matrix_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_red.png -------------------------------------------------------------------------------- /res/matrix_showcase.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/res/matrix_showcase.mp4 -------------------------------------------------------------------------------- /src/colours.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/src/colours.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/rain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitaniumBrain/rs-matrix/HEAD/src/rain.rs --------------------------------------------------------------------------------