├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── co-interior-angles ├── .import │ ├── Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.md5 │ ├── Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex │ ├── Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.md5 │ ├── Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex │ ├── Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.md5 │ ├── Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex │ ├── Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.md5 │ ├── Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5 │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5 │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5 │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5 │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5 │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.md5 │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.stex │ ├── not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.md5 │ ├── not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.stex │ ├── parallel.svg-203c953969e65ee1fec3cc20e72dc04b.md5 │ ├── parallel.svg-203c953969e65ee1fec3cc20e72dc04b.stex │ ├── post.png-c1a343af9d83f8cd14ed38cb8da716a0.md5 │ ├── post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex │ ├── restore.svg-aff43abaab739166462bfaabaf792888.md5 │ └── restore.svg-aff43abaab739166462bfaabaf792888.stex ├── Main.gd ├── Main.tscn ├── README.md ├── default_env.tres ├── export_presets.cfg ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ └── Roboto-Regular.ttf ├── icon.ico ├── icon.png ├── icon.png.import ├── icons │ ├── circle_half.svg │ ├── circle_half.svg.import │ ├── close_red.svg.import │ ├── eye_closed.svg │ ├── eye_closed.svg.import │ ├── eye_opened.svg │ ├── eye_opened.svg.import │ ├── move.svg │ ├── move.svg.import │ ├── not_parallel.svg │ ├── not_parallel.svg.import │ ├── parallel.svg │ ├── parallel.svg.import │ ├── restore.svg │ └── restore.svg.import ├── project.godot └── resources │ └── co-interior-angles.gif ├── supplementary-angles ├── .import │ ├── Covert_Image.svg-c035358dde78338b4fe75b06492776ce.md5 │ ├── Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5 │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex │ ├── circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.md5 │ ├── circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex │ ├── drawing.svg-75ad4506d48842d2e08a653ae29e3ced.md5 │ ├── drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5 │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5 │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5 │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5 │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.md5 │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.stex │ ├── post.png-c1a343af9d83f8cd14ed38cb8da716a0.md5 │ ├── post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex │ ├── restore.svg-aff43abaab739166462bfaabaf792888.md5 │ └── restore.svg-aff43abaab739166462bfaabaf792888.stex ├── Main.gd ├── Main.tscn ├── README.md ├── Supplementary Angles.VisualElementsManifest.xml ├── default_env.tres ├── export_presets.cfg ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ └── Roboto-Regular.ttf ├── icon.ico ├── icon.png ├── icon.png.import ├── icons │ ├── circle_half.svg │ ├── circle_half.svg.import │ ├── circle_quarter.svg │ ├── circle_quarter.svg.import │ ├── close_red.svg.import │ ├── eye_closed.svg │ ├── eye_closed.svg.import │ ├── eye_opened.svg │ ├── eye_opened.svg.import │ ├── fullscreen.svg │ ├── fullscreen.svg.import │ ├── fullscreen_exit.svg │ ├── fullscreen_exit.svg.import │ ├── move.svg │ ├── move.svg.import │ ├── restore.svg │ └── restore.svg.import ├── project.godot └── resources │ ├── Covert_Image.svg │ ├── Covert_Image.svg.import │ ├── drawing.svg │ ├── drawing.svg.import │ ├── post.png │ ├── post.png.import │ └── supplementary-angles.gif ├── triangle-angles ├── .gitignore ├── .import │ ├── Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.md5 │ ├── Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex │ ├── Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.md5 │ ├── Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex │ ├── Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.md5 │ ├── Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex │ ├── Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.md5 │ ├── Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5 │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5 │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5 │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5 │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5 │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.md5 │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.stex │ ├── post.png-c1a343af9d83f8cd14ed38cb8da716a0.md5 │ ├── post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex │ ├── restore.svg-aff43abaab739166462bfaabaf792888.md5 │ └── restore.svg-aff43abaab739166462bfaabaf792888.stex ├── Main.gd ├── Main.tscn ├── README.md ├── default_env.tres ├── export_presets.cfg ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ └── Roboto-Regular.ttf ├── icon.ico ├── icon.png ├── icon.png.import ├── icons │ ├── circle_half.svg │ ├── circle_half.svg.import │ ├── close_red.svg.import │ ├── eye_closed.svg │ ├── eye_closed.svg.import │ ├── eye_opened.svg │ ├── eye_opened.svg.import │ ├── fullscreen.svg │ ├── fullscreen.svg.import │ ├── fullscreen_exit.svg │ ├── fullscreen_exit.svg.import │ ├── move.svg │ ├── move.svg.import │ ├── restore.svg │ └── restore.svg.import ├── project.godot └── resources │ ├── Cover_Image.svg │ ├── Cover_Image.svg.import │ ├── Covert_Image.svg.import │ ├── Embed BG.svg │ ├── Embed BG.svg.import │ ├── Embed_BG.png │ ├── Embed_BG.png.import │ ├── Embed_BG.webp │ ├── Embed_BG.webp.import │ ├── drawing.svg.import │ ├── post.png │ ├── post.png.import │ └── triangle-angles.gif ├── unit-circle ├── .import │ ├── Cover_Image.svg-9a5de24cc5512196f3a831c336522029.md5 │ ├── Cover_Image.svg-9a5de24cc5512196f3a831c336522029.stex │ ├── Embed BG.svg-bda90289637bc58a9b698921bad70d99.md5 │ ├── Embed BG.svg-bda90289637bc58a9b698921bad70d99.stex │ ├── Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.md5 │ ├── Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.stex │ ├── Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.md5 │ ├── Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.stex │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5 │ ├── circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5 │ ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5 │ ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5 │ ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5 │ ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.md5 │ ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.stex │ ├── post.png-4ed35b6149727115c823aadf4402932f.md5 │ ├── post.png-4ed35b6149727115c823aadf4402932f.stex │ ├── restore.svg-aff43abaab739166462bfaabaf792888.md5 │ ├── restore.svg-aff43abaab739166462bfaabaf792888.stex │ ├── screenshot.png-baa65133a881efe9ae3e18489806054a.md5 │ ├── screenshot.png-baa65133a881efe9ae3e18489806054a.stex │ ├── unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.md5 │ └── unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.stex ├── Main.gd ├── Main.tscn ├── README.md ├── default_env.tres ├── export_presets.cfg ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ └── Roboto-Regular.ttf ├── icon.ico ├── icon.png ├── icon.png.import ├── icons │ ├── circle_half.svg │ ├── circle_half.svg.import │ ├── close_red.svg.import │ ├── eye_closed.svg │ ├── eye_closed.svg.import │ ├── eye_opened.svg │ ├── eye_opened.svg.import │ ├── fullscreen.svg │ ├── fullscreen.svg.import │ ├── fullscreen_exit.svg │ ├── fullscreen_exit.svg.import │ ├── move.svg │ ├── move.svg.import │ ├── restore.svg │ ├── restore.svg.import │ ├── unit-circle.svg │ └── unit-circle.svg.import ├── project.godot └── resources │ ├── Cover_Image.svg │ ├── Cover_Image.svg.import │ ├── Covert_Image.svg.import │ ├── Embed BG.svg │ ├── Embed BG.svg.import │ ├── Embed_BG.png │ ├── Embed_BG.png.import │ ├── Embed_BG.webp │ ├── Embed_BG.webp.import │ ├── drawing.svg.import │ ├── post.png │ ├── post.png.import │ ├── post.svg │ ├── screenshot.gif │ ├── screenshot.png │ └── screenshot.png.import └── vertical-angles ├── .import ├── Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.md5 ├── Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.stex ├── circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.md5 ├── circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.stex ├── circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.md5 ├── circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex ├── drawing.svg-003f43763096fc9a9f39dd73a8c74e25.md5 ├── drawing.svg-003f43763096fc9a9f39dd73a8c74e25.stex ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5 ├── eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5 ├── eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5 ├── fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5 ├── fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 ├── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.md5 ├── move.svg-769d9a61af1be19356fb6cc2fedb4397.stex ├── post.png-4ed35b6149727115c823aadf4402932f.md5 ├── post.png-4ed35b6149727115c823aadf4402932f.stex ├── restore.svg-aff43abaab739166462bfaabaf792888.md5 ├── restore.svg-aff43abaab739166462bfaabaf792888.stex ├── square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.md5 └── square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.stex ├── Main.gd ├── Main.tscn ├── README.md ├── Supplementary Angles.VisualElementsManifest.xml ├── default_env.tres ├── export_presets.cfg ├── fonts └── Roboto │ ├── LICENSE.txt │ └── Roboto-Regular.ttf ├── icon.ico ├── icon.png ├── icon.png.import ├── icons ├── circle_green.svg ├── circle_green.svg.import ├── circle_half.svg.import ├── circle_quarter.svg ├── circle_quarter.svg.import ├── circle_red.svg.import ├── close_red.svg.import ├── eye_closed.svg ├── eye_closed.svg.import ├── eye_opened.svg ├── eye_opened.svg.import ├── fullscreen.svg ├── fullscreen.svg.import ├── fullscreen_exit.svg ├── fullscreen_exit.svg.import ├── move.svg ├── move.svg.import ├── restore.svg ├── restore.svg.import ├── square_green.svg └── square_green.svg.import ├── project.godot └── resources ├── Covert_Image.svg ├── Covert_Image.svg.import ├── drawing.svg ├── drawing.svg.import ├── post.png ├── post.png.import └── supplementary-angles.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://www.buymeacoffee.com/manerakai'] 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # math-simulator 2 | This Repo contains multiple simulator apps that help students understand math more by visualizing it. 3 | 4 | Try them: https://manerakai.itch.io/ 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | ## Donate 21 | [![Buy me a coffee](https://raw.githubusercontent.com/ManeraKai/manerakai/main/icons/bmc.svg)](https://www.buymeacoffee.com/manerakai)   22 | 23 | ## Mirror Repos 24 | [![GitHub](https://raw.githubusercontent.com/ManeraKai/manerakai/main/icons/github.svg)](https://github.com/ManeraKai/math-simulator)   25 | [![Codeberg](https://raw.githubusercontent.com/ManeraKai/manerakai/main/icons/codeberg.svg)](https://codeberg.org/ManeraKai/math-simulator)   26 | 27 | ## License 28 | Copyright (C) 2021 [ManeraKai](https://github.com/ManeraKai) 29 | 30 | [GNU General Public License](./LICENSE) 31 | -------------------------------------------------------------------------------- /co-interior-angles/.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.md5: -------------------------------------------------------------------------------- 1 | source_md5="75d8f9c6b90f352661d2876d089f71bf" 2 | dest_md5="ef2dab6462c3450798bbab0143f2c3a8" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.md5: -------------------------------------------------------------------------------- 1 | source_md5="ea1904587d29ae9aaec975c72ace10c7" 2 | dest_md5="89d50f3df4e1a7e3842249f95b69b8fb" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.md5: -------------------------------------------------------------------------------- 1 | source_md5="70ea660fa4d4869d4c6edb295de438e8" 2 | dest_md5="ab4753aa499b1b8838aa8579651a5c41" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.md5: -------------------------------------------------------------------------------- 1 | source_md5="7864e744f232a12744b04f6ca0b0a4e7" 2 | dest_md5="377838b7c1e05d0044f0359a509e9b2e" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5: -------------------------------------------------------------------------------- 1 | source_md5="a4f12dc8f64669a0c2af9ab61f3b7cba" 2 | dest_md5="29a5cc86152bfea9880fc5e83b4717f7" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5: -------------------------------------------------------------------------------- 1 | source_md5="8e28eeb3012d8436d4ba1eb87cb70731" 2 | dest_md5="7a7efe5696290a22f074c0fa2eefdd38" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5: -------------------------------------------------------------------------------- 1 | source_md5="093e67220092914c038ecb0106a04ee2" 2 | dest_md5="06fd46b661be5e4159573c7992d39cdd" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5: -------------------------------------------------------------------------------- 1 | source_md5="7b554998aa80635a72bb4cac040e8188" 2 | dest_md5="d514360d786ce062afd6f5a42d6f20cc" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5: -------------------------------------------------------------------------------- 1 | source_md5="c3c15805d64566796a869a637e0ee0d5" 2 | dest_md5="bb0e852b625ab37df4d07c38a27b859a" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="ca4b408fa6808776cb03a2aa1763f9d3" 2 | dest_md5="f3e76b36b857a75693f2e987c60cb56c" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.md5: -------------------------------------------------------------------------------- 1 | source_md5="ab7235807ddd29c4916d10ba0450e50d" 2 | dest_md5="517a910514fc743ceb9970fb8ea8897c" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.md5: -------------------------------------------------------------------------------- 1 | source_md5="5d9692867c837a60b1645367d3b917e7" 2 | dest_md5="20c73634e9c1ed8464f2399c28c70240" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/parallel.svg-203c953969e65ee1fec3cc20e72dc04b.md5: -------------------------------------------------------------------------------- 1 | source_md5="f37e34c365f366198eb4172be3ebeae4" 2 | dest_md5="3129699e0087386cb71ac392f24dc229" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/parallel.svg-203c953969e65ee1fec3cc20e72dc04b.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/parallel.svg-203c953969e65ee1fec3cc20e72dc04b.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.md5: -------------------------------------------------------------------------------- 1 | source_md5="09ac763d9680276f7ce17eb7b69a56e6" 2 | dest_md5="f5c176477b3fbbba02a2621ec3acdcf7" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex -------------------------------------------------------------------------------- /co-interior-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.md5: -------------------------------------------------------------------------------- 1 | source_md5="5939934818f676a71fc7d846ed141474" 2 | dest_md5="e050491a6a717e1e2d82be38626af43f" 3 | 4 | -------------------------------------------------------------------------------- /co-interior-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex -------------------------------------------------------------------------------- /co-interior-angles/README.md: -------------------------------------------------------------------------------- 1 | # Co-Interior-angles 2 | Try it: https://manerakai.itch.io/co-interior-angles 3 | 4 | ![gif](resources/co-interior-angles.gif) 5 | -------------------------------------------------------------------------------- /co-interior-angles/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /co-interior-angles/export_presets.cfg: -------------------------------------------------------------------------------- 1 | [preset.0] 2 | 3 | name="HTML5" 4 | platform="HTML5" 5 | runnable=true 6 | custom_features="" 7 | export_filter="all_resources" 8 | include_filter="" 9 | exclude_filter="" 10 | export_path="../../Itchio/co-interior-angles/web/index.html" 11 | script_export_mode=1 12 | script_encryption_key="" 13 | 14 | [preset.0.options] 15 | 16 | custom_template/debug="" 17 | custom_template/release="" 18 | variant/export_type=0 19 | vram_texture_compression/for_desktop=true 20 | vram_texture_compression/for_mobile=true 21 | html/custom_html_shell="" 22 | html/head_include="" 23 | html/canvas_resize_policy=2 24 | html/experimental_virtual_keyboard=false 25 | 26 | [preset.1] 27 | 28 | name="Windows Desktop" 29 | platform="Windows Desktop" 30 | runnable=true 31 | custom_features="" 32 | export_filter="all_resources" 33 | include_filter="*xml" 34 | exclude_filter="" 35 | export_path="../../Itchio/co-interior-angles/co-interior-angles-win.exe" 36 | script_export_mode=1 37 | script_encryption_key="" 38 | 39 | [preset.1.options] 40 | 41 | custom_template/debug="" 42 | custom_template/release="" 43 | binary_format/64_bits=false 44 | binary_format/embed_pck=true 45 | texture_format/bptc=false 46 | texture_format/s3tc=true 47 | texture_format/etc=false 48 | texture_format/etc2=false 49 | texture_format/no_bptc_fallbacks=true 50 | codesign/enable=false 51 | codesign/identity="" 52 | codesign/password="" 53 | codesign/timestamp=true 54 | codesign/timestamp_server_url="" 55 | codesign/digest_algorithm=1 56 | codesign/description="Simulator for Supplementary Angles" 57 | codesign/custom_options=PoolStringArray( ) 58 | application/icon="res://icon.ico" 59 | application/file_version="" 60 | application/product_version="" 61 | application/company_name="Ajaeb Albarmaja" 62 | application/product_name="Supplementary Angles" 63 | application/file_description="Simulator for Supplementary Angles" 64 | application/copyright="" 65 | application/trademarks="" 66 | 67 | [preset.2] 68 | 69 | name="Linux/X11" 70 | platform="Linux/X11" 71 | runnable=true 72 | custom_features="" 73 | export_filter="all_resources" 74 | include_filter="" 75 | exclude_filter="" 76 | export_path="../../Itchio/co-interior-angles/co-interior-angles-linux.x86_64" 77 | script_export_mode=1 78 | script_encryption_key="" 79 | 80 | [preset.2.options] 81 | 82 | custom_template/debug="" 83 | custom_template/release="" 84 | binary_format/64_bits=true 85 | binary_format/embed_pck=true 86 | texture_format/bptc=false 87 | texture_format/s3tc=true 88 | texture_format/etc=false 89 | texture_format/etc2=false 90 | texture_format/no_bptc_fallbacks=true 91 | -------------------------------------------------------------------------------- /co-interior-angles/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /co-interior-angles/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/icon.ico -------------------------------------------------------------------------------- /co-interior-angles/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/icon.png -------------------------------------------------------------------------------- /co-interior-angles/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/circle_half.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 55 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /co-interior-angles/icons/circle_half.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_half.svg" 13 | dest_files=[ "res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/close_red.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/close_red.svg" 13 | dest_files=[ "res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/eye_closed.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_closed.svg" 13 | dest_files=[ "res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/eye_opened.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /co-interior-angles/icons/eye_opened.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_opened.svg" 13 | dest_files=[ "res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 56 | 59 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /co-interior-angles/icons/move.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/move.svg" 13 | dest_files=[ "res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/not_parallel.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 33 | 54 | 59 | 66 | 73 | 81 | 82 | -------------------------------------------------------------------------------- /co-interior-angles/icons/not_parallel.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/not_parallel.svg" 13 | dest_files=[ "res://.import/not_parallel.svg-49c52e22c3b4a1e552cf32b595034d37.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/parallel.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 33 | 54 | 59 | 66 | 73 | 74 | -------------------------------------------------------------------------------- /co-interior-angles/icons/parallel.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/parallel.svg-203c953969e65ee1fec3cc20e72dc04b.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/parallel.svg" 13 | dest_files=[ "res://.import/parallel.svg-203c953969e65ee1fec3cc20e72dc04b.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/icons/restore.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/restore.svg" 13 | dest_files=[ "res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /co-interior-angles/project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | _global_script_classes=[ ] 12 | _global_script_class_icons={ 13 | } 14 | 15 | [application] 16 | 17 | config/name="co-interior-angles" 18 | run/main_scene="res://Main.tscn" 19 | boot_splash/image="res://icon.png" 20 | boot_splash/fullsize=false 21 | boot_splash/use_filter=false 22 | boot_splash/bg_color=Color( 0, 0, 0, 1 ) 23 | config/icon="res://icon.png" 24 | config/windows_native_icon="res://icon.ico" 25 | 26 | [display] 27 | 28 | window/size/width=1920 29 | window/size/height=1080 30 | window/stretch/mode="2d" 31 | window/stretch/aspect="keep" 32 | 33 | [input] 34 | 35 | Exit_Full_Screen={ 36 | "deadzone": 0.5, 37 | "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) 38 | ] 39 | } 40 | 41 | [rendering] 42 | 43 | quality/driver/driver_name="GLES2" 44 | vram_compression/import_etc=true 45 | vram_compression/import_etc2=false 46 | environment/default_clear_color=Color( 0, 0, 0, 1 ) 47 | environment/default_environment="res://default_env.tres" 48 | -------------------------------------------------------------------------------- /co-interior-angles/resources/co-interior-angles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/co-interior-angles/resources/co-interior-angles.gif -------------------------------------------------------------------------------- /supplementary-angles/.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.md5: -------------------------------------------------------------------------------- 1 | source_md5="d26512738660e064acfade98227f59f9" 2 | dest_md5="0234b8992fe5fec14930a2ce7029e3cf" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5: -------------------------------------------------------------------------------- 1 | source_md5="219d6987bcc7c77e45a4e66c73dbc74d" 2 | dest_md5="29a5cc86152bfea9880fc5e83b4717f7" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.md5: -------------------------------------------------------------------------------- 1 | source_md5="4370842c6c99ac3e04a2420c5ca24d75" 2 | dest_md5="6926ebdb5d3168f8f7dc4c4a3c43fcb9" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.md5: -------------------------------------------------------------------------------- 1 | source_md5="a804202a939240f8d6b404688b76238a" 2 | dest_md5="05525ebc70ba3b8a0d6496c7113486fc" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5: -------------------------------------------------------------------------------- 1 | source_md5="8e28eeb3012d8436d4ba1eb87cb70731" 2 | dest_md5="7a7efe5696290a22f074c0fa2eefdd38" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5: -------------------------------------------------------------------------------- 1 | source_md5="093e67220092914c038ecb0106a04ee2" 2 | dest_md5="06fd46b661be5e4159573c7992d39cdd" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5: -------------------------------------------------------------------------------- 1 | source_md5="7b554998aa80635a72bb4cac040e8188" 2 | dest_md5="d514360d786ce062afd6f5a42d6f20cc" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5: -------------------------------------------------------------------------------- 1 | source_md5="c3c15805d64566796a869a637e0ee0d5" 2 | dest_md5="bb0e852b625ab37df4d07c38a27b859a" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="ca4b408fa6808776cb03a2aa1763f9d3" 2 | dest_md5="f3e76b36b857a75693f2e987c60cb56c" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.md5: -------------------------------------------------------------------------------- 1 | source_md5="ab7235807ddd29c4916d10ba0450e50d" 2 | dest_md5="517a910514fc743ceb9970fb8ea8897c" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.md5: -------------------------------------------------------------------------------- 1 | source_md5="34351e553f051b716c19610d33300249" 2 | dest_md5="8ac296dcc1ebe2d47a2b2099be624071" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex -------------------------------------------------------------------------------- /supplementary-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.md5: -------------------------------------------------------------------------------- 1 | source_md5="5939934818f676a71fc7d846ed141474" 2 | dest_md5="e050491a6a717e1e2d82be38626af43f" 3 | 4 | -------------------------------------------------------------------------------- /supplementary-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex -------------------------------------------------------------------------------- /supplementary-angles/README.md: -------------------------------------------------------------------------------- 1 | # Supplementary Angles 2 | Try it: https://ajaeb-albarmaja.itch.io/supplementary-angles 3 | 4 | ![gif](resources/supplementary-angles.gif) 5 | -------------------------------------------------------------------------------- /supplementary-angles/Supplementary Angles.VisualElementsManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /supplementary-angles/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /supplementary-angles/export_presets.cfg: -------------------------------------------------------------------------------- 1 | [preset.0] 2 | 3 | name="HTML5" 4 | platform="HTML5" 5 | runnable=true 6 | custom_features="" 7 | export_filter="all_resources" 8 | include_filter="" 9 | exclude_filter="" 10 | export_path="../../Itchio/Supplementary_Angles/Supplementary_Angles_Web/index.html" 11 | patch_list=PoolStringArray( ) 12 | script_export_mode=1 13 | script_encryption_key="" 14 | 15 | [preset.0.options] 16 | 17 | vram_texture_compression/for_desktop=true 18 | vram_texture_compression/for_mobile=true 19 | html/custom_html_shell="" 20 | html/head_include="" 21 | custom_template/release="" 22 | custom_template/debug="" 23 | 24 | [preset.1] 25 | 26 | name="Windows Desktop" 27 | platform="Windows Desktop" 28 | runnable=true 29 | custom_features="" 30 | export_filter="all_resources" 31 | include_filter="*xml" 32 | exclude_filter="" 33 | export_path="../../Itchio/Supplementary_Angles/Supplementary_Angles_Windows/Supplementary Angles.exe" 34 | patch_list=PoolStringArray( ) 35 | script_export_mode=1 36 | script_encryption_key="" 37 | 38 | [preset.1.options] 39 | 40 | texture_format/bptc=false 41 | texture_format/s3tc=true 42 | texture_format/etc=false 43 | texture_format/etc2=false 44 | texture_format/no_bptc_fallbacks=true 45 | binary_format/64_bits=false 46 | binary_format/embed_pck=true 47 | custom_template/release="" 48 | custom_template/debug="" 49 | codesign/enable=false 50 | codesign/identity_type=2 51 | codesign/identity="" 52 | codesign/password="" 53 | codesign/timestamp=true 54 | codesign/timestamp_server_url="" 55 | codesign/digest_algorithm=1 56 | codesign/description="Simulator for Supplementary Angles" 57 | codesign/custom_options=PoolStringArray( ) 58 | application/icon="res://icon.ico" 59 | application/file_version="" 60 | application/product_version="" 61 | application/company_name="Ajaeb Albarmaja" 62 | application/product_name="Supplementary Angles" 63 | application/file_description="Simulator for Supplementary Angles" 64 | application/copyright="" 65 | application/trademarks="" 66 | -------------------------------------------------------------------------------- /supplementary-angles/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /supplementary-angles/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/icon.ico -------------------------------------------------------------------------------- /supplementary-angles/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/icon.png -------------------------------------------------------------------------------- /supplementary-angles/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/circle_half.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 55 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /supplementary-angles/icons/circle_half.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_half.svg" 13 | dest_files=[ "res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/circle_quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 55 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /supplementary-angles/icons/circle_quarter.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_quarter.svg" 13 | dest_files=[ "res://.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/close_red.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/close_red.svg" 13 | dest_files=[ "res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/eye_closed.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_closed.svg" 13 | dest_files=[ "res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/eye_opened.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /supplementary-angles/icons/eye_opened.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_opened.svg" 13 | dest_files=[ "res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /supplementary-angles/icons/fullscreen.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen.svg" 13 | dest_files=[ "res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/fullscreen_exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /supplementary-angles/icons/fullscreen_exit.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen_exit.svg" 13 | dest_files=[ "res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 56 | 59 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /supplementary-angles/icons/move.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/move.svg" 13 | dest_files=[ "res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/icons/restore.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/restore.svg" 13 | dest_files=[ "res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | _global_script_classes=[ ] 12 | _global_script_class_icons={ 13 | } 14 | 15 | [application] 16 | 17 | config/name="supplementary_angles" 18 | run/main_scene="res://Main.tscn" 19 | boot_splash/image="res://icon.png" 20 | boot_splash/fullsize=false 21 | boot_splash/use_filter=false 22 | boot_splash/bg_color=Color( 0, 0, 0, 1 ) 23 | config/icon="res://icon.png" 24 | config/windows_native_icon="res://icon.ico" 25 | 26 | [display] 27 | 28 | window/size/width=1920 29 | window/size/height=1080 30 | window/stretch/mode="2d" 31 | window/stretch/aspect="keep" 32 | 33 | [input] 34 | 35 | Exit_Full_Screen={ 36 | "deadzone": 0.5, 37 | "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) 38 | ] 39 | } 40 | 41 | [rendering] 42 | 43 | quality/driver/driver_name="GLES2" 44 | vram_compression/import_etc=true 45 | vram_compression/import_etc2=false 46 | environment/default_clear_color=Color( 0, 0, 0, 1 ) 47 | environment/default_environment="res://default_env.tres" 48 | -------------------------------------------------------------------------------- /supplementary-angles/resources/Covert_Image.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Covert_Image.svg" 13 | dest_files=[ "res://.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/resources/drawing.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/drawing.svg" 13 | dest_files=[ "res://.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/resources/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/resources/post.png -------------------------------------------------------------------------------- /supplementary-angles/resources/post.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/post.png" 13 | dest_files=[ "res://.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /supplementary-angles/resources/supplementary-angles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/supplementary-angles/resources/supplementary-angles.gif -------------------------------------------------------------------------------- /triangle-angles/.gitignore: -------------------------------------------------------------------------------- 1 | Resources/ 2 | -------------------------------------------------------------------------------- /triangle-angles/.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.md5: -------------------------------------------------------------------------------- 1 | source_md5="75d8f9c6b90f352661d2876d089f71bf" 2 | dest_md5="ef2dab6462c3450798bbab0143f2c3a8" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex -------------------------------------------------------------------------------- /triangle-angles/.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.md5: -------------------------------------------------------------------------------- 1 | source_md5="ea1904587d29ae9aaec975c72ace10c7" 2 | dest_md5="89d50f3df4e1a7e3842249f95b69b8fb" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex -------------------------------------------------------------------------------- /triangle-angles/.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.md5: -------------------------------------------------------------------------------- 1 | source_md5="70ea660fa4d4869d4c6edb295de438e8" 2 | dest_md5="ab4753aa499b1b8838aa8579651a5c41" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex -------------------------------------------------------------------------------- /triangle-angles/.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.md5: -------------------------------------------------------------------------------- 1 | source_md5="7864e744f232a12744b04f6ca0b0a4e7" 2 | dest_md5="377838b7c1e05d0044f0359a509e9b2e" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex -------------------------------------------------------------------------------- /triangle-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5: -------------------------------------------------------------------------------- 1 | source_md5="a4f12dc8f64669a0c2af9ab61f3b7cba" 2 | dest_md5="29a5cc86152bfea9880fc5e83b4717f7" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex -------------------------------------------------------------------------------- /triangle-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5: -------------------------------------------------------------------------------- 1 | source_md5="8e28eeb3012d8436d4ba1eb87cb70731" 2 | dest_md5="7a7efe5696290a22f074c0fa2eefdd38" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex -------------------------------------------------------------------------------- /triangle-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5: -------------------------------------------------------------------------------- 1 | source_md5="093e67220092914c038ecb0106a04ee2" 2 | dest_md5="06fd46b661be5e4159573c7992d39cdd" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex -------------------------------------------------------------------------------- /triangle-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5: -------------------------------------------------------------------------------- 1 | source_md5="7b554998aa80635a72bb4cac040e8188" 2 | dest_md5="d514360d786ce062afd6f5a42d6f20cc" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex -------------------------------------------------------------------------------- /triangle-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5: -------------------------------------------------------------------------------- 1 | source_md5="c3c15805d64566796a869a637e0ee0d5" 2 | dest_md5="bb0e852b625ab37df4d07c38a27b859a" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex -------------------------------------------------------------------------------- /triangle-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="ca4b408fa6808776cb03a2aa1763f9d3" 2 | dest_md5="f3e76b36b857a75693f2e987c60cb56c" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /triangle-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.md5: -------------------------------------------------------------------------------- 1 | source_md5="ab7235807ddd29c4916d10ba0450e50d" 2 | dest_md5="517a910514fc743ceb9970fb8ea8897c" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex -------------------------------------------------------------------------------- /triangle-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.md5: -------------------------------------------------------------------------------- 1 | source_md5="09ac763d9680276f7ce17eb7b69a56e6" 2 | dest_md5="f5c176477b3fbbba02a2621ec3acdcf7" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex -------------------------------------------------------------------------------- /triangle-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.md5: -------------------------------------------------------------------------------- 1 | source_md5="5939934818f676a71fc7d846ed141474" 2 | dest_md5="e050491a6a717e1e2d82be38626af43f" 3 | 4 | -------------------------------------------------------------------------------- /triangle-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex -------------------------------------------------------------------------------- /triangle-angles/README.md: -------------------------------------------------------------------------------- 1 | # triangle-angles 2 | Try it: https://manerakai.itch.io/triangle-angles 3 | 4 | ![gif](resources/triangle-angles.gif) 5 | -------------------------------------------------------------------------------- /triangle-angles/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /triangle-angles/export_presets.cfg: -------------------------------------------------------------------------------- 1 | [preset.0] 2 | 3 | name="HTML5" 4 | platform="HTML5" 5 | runnable=true 6 | custom_features="" 7 | export_filter="all_resources" 8 | include_filter="" 9 | exclude_filter="" 10 | export_path="../../Itchio/triangle-angles/web/index.html" 11 | script_export_mode=1 12 | script_encryption_key="" 13 | 14 | [preset.0.options] 15 | 16 | custom_template/debug="" 17 | custom_template/release="" 18 | variant/export_type=0 19 | vram_texture_compression/for_desktop=true 20 | vram_texture_compression/for_mobile=true 21 | html/custom_html_shell="" 22 | html/head_include="" 23 | html/canvas_resize_policy=2 24 | html/experimental_virtual_keyboard=false 25 | 26 | [preset.1] 27 | 28 | name="Windows Desktop" 29 | platform="Windows Desktop" 30 | runnable=true 31 | custom_features="" 32 | export_filter="all_resources" 33 | include_filter="*xml" 34 | exclude_filter="" 35 | export_path="../../Itchio/triangle-angles/Triangle Angles.exe" 36 | script_export_mode=1 37 | script_encryption_key="" 38 | 39 | [preset.1.options] 40 | 41 | custom_template/debug="" 42 | custom_template/release="" 43 | binary_format/64_bits=false 44 | binary_format/embed_pck=true 45 | texture_format/bptc=false 46 | texture_format/s3tc=true 47 | texture_format/etc=false 48 | texture_format/etc2=false 49 | texture_format/no_bptc_fallbacks=true 50 | codesign/enable=false 51 | codesign/identity="" 52 | codesign/password="" 53 | codesign/timestamp=true 54 | codesign/timestamp_server_url="" 55 | codesign/digest_algorithm=1 56 | codesign/description="Simulator for Supplementary Angles" 57 | codesign/custom_options=PoolStringArray( ) 58 | application/icon="res://icon.ico" 59 | application/file_version="" 60 | application/product_version="" 61 | application/company_name="Ajaeb Albarmaja" 62 | application/product_name="Supplementary Angles" 63 | application/file_description="Simulator for Supplementary Angles" 64 | application/copyright="" 65 | application/trademarks="" 66 | 67 | [preset.2] 68 | 69 | name="Linux/X11" 70 | platform="Linux/X11" 71 | runnable=true 72 | custom_features="" 73 | export_filter="all_resources" 74 | include_filter="" 75 | exclude_filter="" 76 | export_path="../../Itchio/triangle-angles/Triangle Angles.x86_64" 77 | script_export_mode=1 78 | script_encryption_key="" 79 | 80 | [preset.2.options] 81 | 82 | custom_template/debug="" 83 | custom_template/release="" 84 | binary_format/64_bits=true 85 | binary_format/embed_pck=true 86 | texture_format/bptc=false 87 | texture_format/s3tc=true 88 | texture_format/etc=false 89 | texture_format/etc2=false 90 | texture_format/no_bptc_fallbacks=true 91 | -------------------------------------------------------------------------------- /triangle-angles/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /triangle-angles/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/icon.ico -------------------------------------------------------------------------------- /triangle-angles/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/icon.png -------------------------------------------------------------------------------- /triangle-angles/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/circle_half.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 55 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /triangle-angles/icons/circle_half.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_half.svg" 13 | dest_files=[ "res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/close_red.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/close_red.svg" 13 | dest_files=[ "res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/eye_closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /triangle-angles/icons/eye_closed.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_closed.svg" 13 | dest_files=[ "res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/eye_opened.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /triangle-angles/icons/eye_opened.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_opened.svg" 13 | dest_files=[ "res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /triangle-angles/icons/fullscreen.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen.svg" 13 | dest_files=[ "res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/fullscreen_exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /triangle-angles/icons/fullscreen_exit.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen_exit.svg" 13 | dest_files=[ "res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 56 | 59 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /triangle-angles/icons/move.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/move.svg" 13 | dest_files=[ "res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/icons/restore.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/restore.svg" 13 | dest_files=[ "res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | _global_script_classes=[ ] 12 | _global_script_class_icons={ 13 | } 14 | 15 | [application] 16 | 17 | config/name="triangle-angles" 18 | run/main_scene="res://Main.tscn" 19 | boot_splash/image="res://icon.png" 20 | boot_splash/fullsize=false 21 | boot_splash/use_filter=false 22 | boot_splash/bg_color=Color( 0, 0, 0, 1 ) 23 | config/icon="res://icon.png" 24 | config/windows_native_icon="res://icon.ico" 25 | 26 | [display] 27 | 28 | window/size/width=1920 29 | window/size/height=1080 30 | window/stretch/mode="2d" 31 | window/stretch/aspect="keep" 32 | 33 | [input] 34 | 35 | Exit_Full_Screen={ 36 | "deadzone": 0.5, 37 | "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) 38 | ] 39 | } 40 | 41 | [rendering] 42 | 43 | quality/driver/driver_name="GLES2" 44 | vram_compression/import_etc=true 45 | vram_compression/import_etc2=false 46 | environment/default_clear_color=Color( 0, 0, 0, 1 ) 47 | environment/default_environment="res://default_env.tres" 48 | -------------------------------------------------------------------------------- /triangle-angles/resources/Cover_Image.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Cover_Image.svg" 13 | dest_files=[ "res://.import/Cover_Image.svg-8a8c8a76bcf6b98e46eec425f2b9fcc5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/Covert_Image.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Covert_Image.svg" 13 | dest_files=[ "res://.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/Embed BG.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Embed BG.svg" 13 | dest_files=[ "res://.import/Embed BG.svg-c44bacd76f59407ea1cad0ac25a6a994.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/Embed_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/resources/Embed_BG.png -------------------------------------------------------------------------------- /triangle-angles/resources/Embed_BG.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Embed_BG.png" 13 | dest_files=[ "res://.import/Embed_BG.png-8734a6031dff0c7c8c1d86c469417099.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/Embed_BG.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/resources/Embed_BG.webp -------------------------------------------------------------------------------- /triangle-angles/resources/Embed_BG.webp.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Embed_BG.webp" 13 | dest_files=[ "res://.import/Embed_BG.webp-d4915fc00b405f0a305f42b12dc92dbb.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/drawing.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/drawing.svg" 13 | dest_files=[ "res://.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/resources/post.png -------------------------------------------------------------------------------- /triangle-angles/resources/post.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/post.png" 13 | dest_files=[ "res://.import/post.png-c1a343af9d83f8cd14ed38cb8da716a0.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /triangle-angles/resources/triangle-angles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/triangle-angles/resources/triangle-angles.gif -------------------------------------------------------------------------------- /unit-circle/.import/Cover_Image.svg-9a5de24cc5512196f3a831c336522029.md5: -------------------------------------------------------------------------------- 1 | source_md5="75d8f9c6b90f352661d2876d089f71bf" 2 | dest_md5="ef2dab6462c3450798bbab0143f2c3a8" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/Cover_Image.svg-9a5de24cc5512196f3a831c336522029.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/Cover_Image.svg-9a5de24cc5512196f3a831c336522029.stex -------------------------------------------------------------------------------- /unit-circle/.import/Embed BG.svg-bda90289637bc58a9b698921bad70d99.md5: -------------------------------------------------------------------------------- 1 | source_md5="cd928406e35c67406b0ad702ee44def6" 2 | dest_md5="b170e3b6631f8286e86d3b54107e8143" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/Embed BG.svg-bda90289637bc58a9b698921bad70d99.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/Embed BG.svg-bda90289637bc58a9b698921bad70d99.stex -------------------------------------------------------------------------------- /unit-circle/.import/Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.md5: -------------------------------------------------------------------------------- 1 | source_md5="6672195d6953bbb342117784f6033daa" 2 | dest_md5="707c636e7a5e2f5abbea23f38fdda568" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.stex -------------------------------------------------------------------------------- /unit-circle/.import/Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.md5: -------------------------------------------------------------------------------- 1 | source_md5="7864e744f232a12744b04f6ca0b0a4e7" 2 | dest_md5="377838b7c1e05d0044f0359a509e9b2e" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.stex -------------------------------------------------------------------------------- /unit-circle/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.md5: -------------------------------------------------------------------------------- 1 | source_md5="ba9e1658306257d62e92d778a5e045a4" 2 | dest_md5="62a2d8abdfe501be5b9e65e7940ff1c3" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex -------------------------------------------------------------------------------- /unit-circle/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5: -------------------------------------------------------------------------------- 1 | source_md5="8e28eeb3012d8436d4ba1eb87cb70731" 2 | dest_md5="7a7efe5696290a22f074c0fa2eefdd38" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex -------------------------------------------------------------------------------- /unit-circle/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5: -------------------------------------------------------------------------------- 1 | source_md5="093e67220092914c038ecb0106a04ee2" 2 | dest_md5="06fd46b661be5e4159573c7992d39cdd" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex -------------------------------------------------------------------------------- /unit-circle/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5: -------------------------------------------------------------------------------- 1 | source_md5="7b554998aa80635a72bb4cac040e8188" 2 | dest_md5="d514360d786ce062afd6f5a42d6f20cc" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex -------------------------------------------------------------------------------- /unit-circle/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5: -------------------------------------------------------------------------------- 1 | source_md5="c3c15805d64566796a869a637e0ee0d5" 2 | dest_md5="bb0e852b625ab37df4d07c38a27b859a" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex -------------------------------------------------------------------------------- /unit-circle/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="ca4b408fa6808776cb03a2aa1763f9d3" 2 | dest_md5="f3e76b36b857a75693f2e987c60cb56c" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /unit-circle/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.md5: -------------------------------------------------------------------------------- 1 | source_md5="ab7235807ddd29c4916d10ba0450e50d" 2 | dest_md5="517a910514fc743ceb9970fb8ea8897c" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex -------------------------------------------------------------------------------- /unit-circle/.import/post.png-4ed35b6149727115c823aadf4402932f.md5: -------------------------------------------------------------------------------- 1 | source_md5="09ac763d9680276f7ce17eb7b69a56e6" 2 | dest_md5="f5c176477b3fbbba02a2621ec3acdcf7" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/post.png-4ed35b6149727115c823aadf4402932f.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/post.png-4ed35b6149727115c823aadf4402932f.stex -------------------------------------------------------------------------------- /unit-circle/.import/restore.svg-aff43abaab739166462bfaabaf792888.md5: -------------------------------------------------------------------------------- 1 | source_md5="5939934818f676a71fc7d846ed141474" 2 | dest_md5="e050491a6a717e1e2d82be38626af43f" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex -------------------------------------------------------------------------------- /unit-circle/.import/screenshot.png-baa65133a881efe9ae3e18489806054a.md5: -------------------------------------------------------------------------------- 1 | source_md5="3de170f70fa639065e6ef789567fcad6" 2 | dest_md5="15a61e9650813362663486dd481695d3" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/screenshot.png-baa65133a881efe9ae3e18489806054a.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/screenshot.png-baa65133a881efe9ae3e18489806054a.stex -------------------------------------------------------------------------------- /unit-circle/.import/unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.md5: -------------------------------------------------------------------------------- 1 | source_md5="4f4e293f24be98045a2f3222165958d4" 2 | dest_md5="9e52a665dffd59720f707b5f3d99bfda" 3 | 4 | -------------------------------------------------------------------------------- /unit-circle/.import/unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/.import/unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.stex -------------------------------------------------------------------------------- /unit-circle/README.md: -------------------------------------------------------------------------------- 1 | # Unit Circle 2 | Try it: https://manerakai.itch.io/unit-circle 3 | 4 | ![gif](./resources/screenshot.gif) -------------------------------------------------------------------------------- /unit-circle/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /unit-circle/export_presets.cfg: -------------------------------------------------------------------------------- 1 | [preset.0] 2 | 3 | name="HTML5" 4 | platform="HTML5" 5 | runnable=true 6 | custom_features="" 7 | export_filter="all_resources" 8 | include_filter="" 9 | exclude_filter="" 10 | export_path="../../../Itchio/unit-circle/web/index.html" 11 | script_export_mode=1 12 | script_encryption_key="" 13 | 14 | [preset.0.options] 15 | 16 | custom_template/debug="" 17 | custom_template/release="" 18 | variant/export_type=0 19 | vram_texture_compression/for_desktop=true 20 | vram_texture_compression/for_mobile=true 21 | html/custom_html_shell="" 22 | html/head_include="" 23 | html/canvas_resize_policy=2 24 | html/experimental_virtual_keyboard=false 25 | 26 | [preset.1] 27 | 28 | name="Windows Desktop" 29 | platform="Windows Desktop" 30 | runnable=true 31 | custom_features="" 32 | export_filter="all_resources" 33 | include_filter="*xml" 34 | exclude_filter="" 35 | export_path="../../../Itchio/unit-circle/Unit Circle.exe" 36 | script_export_mode=1 37 | script_encryption_key="" 38 | 39 | [preset.1.options] 40 | 41 | custom_template/debug="" 42 | custom_template/release="" 43 | binary_format/64_bits=false 44 | binary_format/embed_pck=true 45 | texture_format/bptc=false 46 | texture_format/s3tc=true 47 | texture_format/etc=false 48 | texture_format/etc2=false 49 | texture_format/no_bptc_fallbacks=true 50 | codesign/enable=false 51 | codesign/identity="" 52 | codesign/password="" 53 | codesign/timestamp=true 54 | codesign/timestamp_server_url="" 55 | codesign/digest_algorithm=1 56 | codesign/description="Simulator for Supplementary Angles" 57 | codesign/custom_options=PoolStringArray( ) 58 | application/icon="res://icon.ico" 59 | application/file_version="" 60 | application/product_version="" 61 | application/company_name="Ajaeb Albarmaja" 62 | application/product_name="Supplementary Angles" 63 | application/file_description="Simulator for Supplementary Angles" 64 | application/copyright="" 65 | application/trademarks="" 66 | 67 | [preset.2] 68 | 69 | name="Linux/X11" 70 | platform="Linux/X11" 71 | runnable=true 72 | custom_features="" 73 | export_filter="all_resources" 74 | include_filter="" 75 | exclude_filter="" 76 | export_path="../../../Itchio/unit-circle/Unit Circle.x86_64" 77 | script_export_mode=1 78 | script_encryption_key="" 79 | 80 | [preset.2.options] 81 | 82 | custom_template/debug="" 83 | custom_template/release="" 84 | binary_format/64_bits=true 85 | binary_format/embed_pck=true 86 | texture_format/bptc=false 87 | texture_format/s3tc=true 88 | texture_format/etc=false 89 | texture_format/etc2=false 90 | texture_format/no_bptc_fallbacks=true 91 | -------------------------------------------------------------------------------- /unit-circle/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /unit-circle/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/icon.ico -------------------------------------------------------------------------------- /unit-circle/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/icon.png -------------------------------------------------------------------------------- /unit-circle/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/circle_half.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 56 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /unit-circle/icons/circle_half.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_half.svg" 13 | dest_files=[ "res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/close_red.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/close_red.svg" 13 | dest_files=[ "res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/eye_closed.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /unit-circle/icons/eye_closed.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_closed.svg" 13 | dest_files=[ "res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/eye_opened.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /unit-circle/icons/eye_opened.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_opened.svg" 13 | dest_files=[ "res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /unit-circle/icons/fullscreen.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen.svg" 13 | dest_files=[ "res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/fullscreen_exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /unit-circle/icons/fullscreen_exit.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen_exit.svg" 13 | dest_files=[ "res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 56 | 59 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /unit-circle/icons/move.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/move.svg" 13 | dest_files=[ "res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/restore.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/restore.svg" 13 | dest_files=[ "res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/icons/unit-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 55 | 62 | 67 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /unit-circle/icons/unit-circle.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/unit-circle.svg" 13 | dest_files=[ "res://.import/unit-circle.svg-4ab471395ba9f760b890e3287e18c88d.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | _global_script_classes=[ ] 12 | _global_script_class_icons={ 13 | } 14 | 15 | [application] 16 | 17 | config/name="unit-circle" 18 | run/main_scene="res://Main.tscn" 19 | boot_splash/image="res://icon.png" 20 | boot_splash/fullsize=false 21 | boot_splash/use_filter=false 22 | boot_splash/bg_color=Color( 0, 0, 0, 1 ) 23 | config/icon="res://icon.png" 24 | config/windows_native_icon="res://icon.ico" 25 | 26 | [display] 27 | 28 | window/size/width=1920 29 | window/size/height=1080 30 | window/stretch/mode="2d" 31 | window/stretch/aspect="keep" 32 | 33 | [input] 34 | 35 | Exit_Full_Screen={ 36 | "deadzone": 0.5, 37 | "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) 38 | ] 39 | } 40 | 41 | [rendering] 42 | 43 | quality/driver/driver_name="GLES2" 44 | vram_compression/import_etc=true 45 | vram_compression/import_etc2=false 46 | environment/default_clear_color=Color( 0, 0, 0, 1 ) 47 | environment/default_environment="res://default_env.tres" 48 | -------------------------------------------------------------------------------- /unit-circle/resources/Cover_Image.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Cover_Image.svg-9a5de24cc5512196f3a831c336522029.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/Cover_Image.svg" 13 | dest_files=[ "res://.import/Cover_Image.svg-9a5de24cc5512196f3a831c336522029.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/Covert_Image.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/Covert_Image.svg" 13 | dest_files=[ "res://.import/Covert_Image.svg-c035358dde78338b4fe75b06492776ce.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/Embed BG.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Embed BG.svg-bda90289637bc58a9b698921bad70d99.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/Embed BG.svg" 13 | dest_files=[ "res://.import/Embed BG.svg-bda90289637bc58a9b698921bad70d99.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/Embed_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/resources/Embed_BG.png -------------------------------------------------------------------------------- /unit-circle/resources/Embed_BG.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/Embed_BG.png" 13 | dest_files=[ "res://.import/Embed_BG.png-d83cc8b5dcd5e08a36a060193ac6bfb7.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/Embed_BG.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/resources/Embed_BG.webp -------------------------------------------------------------------------------- /unit-circle/resources/Embed_BG.webp.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/Embed_BG.webp" 13 | dest_files=[ "res://.import/Embed_BG.webp-5cf83144cab3b5664a150765593a0ad6.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/drawing.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://Resources/drawing.svg" 13 | dest_files=[ "res://.import/drawing.svg-75ad4506d48842d2e08a653ae29e3ced.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/resources/post.png -------------------------------------------------------------------------------- /unit-circle/resources/post.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/post.png-4ed35b6149727115c823aadf4402932f.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/post.png" 13 | dest_files=[ "res://.import/post.png-4ed35b6149727115c823aadf4402932f.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /unit-circle/resources/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/resources/screenshot.gif -------------------------------------------------------------------------------- /unit-circle/resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/unit-circle/resources/screenshot.png -------------------------------------------------------------------------------- /unit-circle/resources/screenshot.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/screenshot.png-baa65133a881efe9ae3e18489806054a.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/screenshot.png" 13 | dest_files=[ "res://.import/screenshot.png-baa65133a881efe9ae3e18489806054a.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/.import/Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.md5: -------------------------------------------------------------------------------- 1 | source_md5="d26512738660e064acfade98227f59f9" 2 | dest_md5="0234b8992fe5fec14930a2ce7029e3cf" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.stex -------------------------------------------------------------------------------- /vertical-angles/.import/circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.md5: -------------------------------------------------------------------------------- 1 | source_md5="3f40a984b6e4b6c27fdedb491a7c85c3" 2 | dest_md5="f35ac52bae02f435fb9b10f5be41d6fa" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.stex -------------------------------------------------------------------------------- /vertical-angles/.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.md5: -------------------------------------------------------------------------------- 1 | source_md5="4370842c6c99ac3e04a2420c5ca24d75" 2 | dest_md5="6926ebdb5d3168f8f7dc4c4a3c43fcb9" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex -------------------------------------------------------------------------------- /vertical-angles/.import/drawing.svg-003f43763096fc9a9f39dd73a8c74e25.md5: -------------------------------------------------------------------------------- 1 | source_md5="a804202a939240f8d6b404688b76238a" 2 | dest_md5="05525ebc70ba3b8a0d6496c7113486fc" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/drawing.svg-003f43763096fc9a9f39dd73a8c74e25.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/drawing.svg-003f43763096fc9a9f39dd73a8c74e25.stex -------------------------------------------------------------------------------- /vertical-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.md5: -------------------------------------------------------------------------------- 1 | source_md5="8e28eeb3012d8436d4ba1eb87cb70731" 2 | dest_md5="7a7efe5696290a22f074c0fa2eefdd38" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex -------------------------------------------------------------------------------- /vertical-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.md5: -------------------------------------------------------------------------------- 1 | source_md5="093e67220092914c038ecb0106a04ee2" 2 | dest_md5="06fd46b661be5e4159573c7992d39cdd" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex -------------------------------------------------------------------------------- /vertical-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.md5: -------------------------------------------------------------------------------- 1 | source_md5="7b554998aa80635a72bb4cac040e8188" 2 | dest_md5="d514360d786ce062afd6f5a42d6f20cc" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex -------------------------------------------------------------------------------- /vertical-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.md5: -------------------------------------------------------------------------------- 1 | source_md5="c3c15805d64566796a869a637e0ee0d5" 2 | dest_md5="bb0e852b625ab37df4d07c38a27b859a" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex -------------------------------------------------------------------------------- /vertical-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- 1 | source_md5="ca4b408fa6808776cb03a2aa1763f9d3" 2 | dest_md5="f3e76b36b857a75693f2e987c60cb56c" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /vertical-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.md5: -------------------------------------------------------------------------------- 1 | source_md5="ab7235807ddd29c4916d10ba0450e50d" 2 | dest_md5="517a910514fc743ceb9970fb8ea8897c" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex -------------------------------------------------------------------------------- /vertical-angles/.import/post.png-4ed35b6149727115c823aadf4402932f.md5: -------------------------------------------------------------------------------- 1 | source_md5="34351e553f051b716c19610d33300249" 2 | dest_md5="8ac296dcc1ebe2d47a2b2099be624071" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/post.png-4ed35b6149727115c823aadf4402932f.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/post.png-4ed35b6149727115c823aadf4402932f.stex -------------------------------------------------------------------------------- /vertical-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.md5: -------------------------------------------------------------------------------- 1 | source_md5="5939934818f676a71fc7d846ed141474" 2 | dest_md5="e050491a6a717e1e2d82be38626af43f" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/restore.svg-aff43abaab739166462bfaabaf792888.stex -------------------------------------------------------------------------------- /vertical-angles/.import/square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.md5: -------------------------------------------------------------------------------- 1 | source_md5="4bda1b9908e5023f3734469d7e021824" 2 | dest_md5="f0f9e11f0fcfea8156fac03036209209" 3 | 4 | -------------------------------------------------------------------------------- /vertical-angles/.import/square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/.import/square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.stex -------------------------------------------------------------------------------- /vertical-angles/README.md: -------------------------------------------------------------------------------- 1 | # Vertical Angles 2 | 3 | A simulator that makes visualizing vertical angles to be a bit easier for students. 4 | -------------------------------------------------------------------------------- /vertical-angles/Supplementary Angles.VisualElementsManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vertical-angles/default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | [resource] 6 | background_mode = 2 7 | background_sky = SubResource( 1 ) 8 | -------------------------------------------------------------------------------- /vertical-angles/export_presets.cfg: -------------------------------------------------------------------------------- 1 | [preset.0] 2 | 3 | name="HTML5" 4 | platform="HTML5" 5 | runnable=true 6 | custom_features="" 7 | export_filter="all_resources" 8 | include_filter="" 9 | exclude_filter="" 10 | export_path="../../Itchio/supplementary-angles/web/index.html" 11 | script_export_mode=1 12 | script_encryption_key="" 13 | 14 | [preset.0.options] 15 | 16 | custom_template/debug="" 17 | custom_template/release="" 18 | variant/export_type=0 19 | vram_texture_compression/for_desktop=true 20 | vram_texture_compression/for_mobile=true 21 | html/custom_html_shell="" 22 | html/head_include="" 23 | html/canvas_resize_policy=2 24 | html/experimental_virtual_keyboard=false 25 | 26 | [preset.1] 27 | 28 | name="Windows Desktop" 29 | platform="Windows Desktop" 30 | runnable=true 31 | custom_features="" 32 | export_filter="all_resources" 33 | include_filter="*xml" 34 | exclude_filter="" 35 | export_path="../../Itchio/supplementary-angles/supplementary-angles-win.exe" 36 | script_export_mode=1 37 | script_encryption_key="" 38 | 39 | [preset.1.options] 40 | 41 | custom_template/debug="" 42 | custom_template/release="" 43 | binary_format/64_bits=false 44 | binary_format/embed_pck=true 45 | texture_format/bptc=false 46 | texture_format/s3tc=true 47 | texture_format/etc=false 48 | texture_format/etc2=false 49 | texture_format/no_bptc_fallbacks=true 50 | codesign/enable=false 51 | codesign/identity="" 52 | codesign/password="" 53 | codesign/timestamp=true 54 | codesign/timestamp_server_url="" 55 | codesign/digest_algorithm=1 56 | codesign/description="Simulator for Supplementary Angles" 57 | codesign/custom_options=PoolStringArray( ) 58 | application/icon="res://icon.ico" 59 | application/file_version="" 60 | application/product_version="" 61 | application/company_name="Ajaeb Albarmaja" 62 | application/product_name="Supplementary Angles" 63 | application/file_description="Simulator for Supplementary Angles" 64 | application/copyright="" 65 | application/trademarks="" 66 | 67 | [preset.2] 68 | 69 | name="Linux/X11" 70 | platform="Linux/X11" 71 | runnable=true 72 | custom_features="" 73 | export_filter="all_resources" 74 | include_filter="" 75 | exclude_filter="" 76 | export_path="../../Itchio/supplementary-angles/supplementary-angles-linux.x86_64" 77 | script_export_mode=1 78 | script_encryption_key="" 79 | 80 | [preset.2.options] 81 | 82 | custom_template/debug="" 83 | custom_template/release="" 84 | binary_format/64_bits=true 85 | binary_format/embed_pck=true 86 | texture_format/bptc=false 87 | texture_format/s3tc=true 88 | texture_format/etc=false 89 | texture_format/etc2=false 90 | texture_format/no_bptc_fallbacks=true 91 | -------------------------------------------------------------------------------- /vertical-angles/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /vertical-angles/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/icon.ico -------------------------------------------------------------------------------- /vertical-angles/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/icon.png -------------------------------------------------------------------------------- /vertical-angles/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/circle_green.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 56 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /vertical-angles/icons/circle_green.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_green.svg" 13 | dest_files=[ "res://.import/circle_green.svg-8bfc33fe31b4a9c1ce84f84ec94268c4.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/circle_half.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_half.svg" 13 | dest_files=[ "res://.import/circle_half.svg-91c647b799ad5469d48b9fec2b3d2e70.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/circle_quarter.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 55 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /vertical-angles/icons/circle_quarter.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_quarter.svg" 13 | dest_files=[ "res://.import/circle_quarter.svg-49532e9917e54438aa070f8d72c1c292.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/circle_red.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/circle_red.svg-ac635d192c7bfcdeb42b458ef9d5af2f.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/circle_red.svg" 13 | dest_files=[ "res://.import/circle_red.svg-ac635d192c7bfcdeb42b458ef9d5af2f.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/close_red.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/close_red.svg" 13 | dest_files=[ "res://.import/close_red.svg-ae8c3323193b292554ed97c9026fbed5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/eye_closed.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_closed.svg" 13 | dest_files=[ "res://.import/eye_closed.svg-d54fa9da25f256c452bfe2b9e1fe35a5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/eye_opened.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 56 | 60 | 61 | -------------------------------------------------------------------------------- /vertical-angles/icons/eye_opened.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/eye_opened.svg" 13 | dest_files=[ "res://.import/eye_opened.svg-1b15c70a55b29dd24a49d4c32892f2be.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /vertical-angles/icons/fullscreen.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen.svg" 13 | dest_files=[ "res://.import/fullscreen.svg-62e33ee4f6f80fbb07cd88d7e1c050bd.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/fullscreen_exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 21 | 23 | image/svg+xml 24 | 26 | 27 | 28 | 29 | 30 | 32 | 52 | 56 | 57 | -------------------------------------------------------------------------------- /vertical-angles/icons/fullscreen_exit.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/fullscreen_exit.svg" 13 | dest_files=[ "res://.import/fullscreen_exit.svg-3f9a8989e354bb920c99696abdcfd302.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/move.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 32 | 34 | 56 | 59 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /vertical-angles/icons/move.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/move.svg" 13 | dest_files=[ "res://.import/move.svg-769d9a61af1be19356fb6cc2fedb4397.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/restore.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/restore.svg" 13 | dest_files=[ "res://.import/restore.svg-aff43abaab739166462bfaabaf792888.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/icons/square_green.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 55 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /vertical-angles/icons/square_green.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icons/square_green.svg" 13 | dest_files=[ "res://.import/square_green.svg-eb1b75710c9a2ddb108a1fd59c46cfc5.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | _global_script_classes=[ ] 12 | _global_script_class_icons={ 13 | } 14 | 15 | [application] 16 | 17 | config/name="vertical-angles" 18 | run/main_scene="res://Main.tscn" 19 | boot_splash/image="res://icon.png" 20 | boot_splash/fullsize=false 21 | boot_splash/use_filter=false 22 | boot_splash/bg_color=Color( 0, 0, 0, 1 ) 23 | config/icon="res://icon.png" 24 | config/windows_native_icon="res://icon.ico" 25 | 26 | [display] 27 | 28 | window/size/width=1920 29 | window/size/height=1080 30 | window/stretch/mode="2d" 31 | window/stretch/aspect="keep" 32 | 33 | [input] 34 | 35 | Exit_Full_Screen={ 36 | "deadzone": 0.5, 37 | "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) 38 | ] 39 | } 40 | 41 | [rendering] 42 | 43 | quality/driver/driver_name="GLES2" 44 | vram_compression/import_etc=true 45 | vram_compression/import_etc2=false 46 | environment/default_clear_color=Color( 0, 0, 0, 1 ) 47 | environment/default_environment="res://default_env.tres" 48 | -------------------------------------------------------------------------------- /vertical-angles/resources/Covert_Image.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/Covert_Image.svg" 13 | dest_files=[ "res://.import/Covert_Image.svg-f11cd74fc822446970ae6cb3f35a6142.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/resources/drawing.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/drawing.svg-003f43763096fc9a9f39dd73a8c74e25.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/drawing.svg" 13 | dest_files=[ "res://.import/drawing.svg-003f43763096fc9a9f39dd73a8c74e25.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/resources/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/resources/post.png -------------------------------------------------------------------------------- /vertical-angles/resources/post.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/post.png-4ed35b6149727115c823aadf4402932f.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://resources/post.png" 13 | dest_files=[ "res://.import/post.png-4ed35b6149727115c823aadf4402932f.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /vertical-angles/resources/supplementary-angles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManeraKai/math-simulator/20a056005a01179c735804bd898384f37429c9dc/vertical-angles/resources/supplementary-angles.gif --------------------------------------------------------------------------------