├── LICENSE ├── README.md ├── screenshots ├── example_BN.png └── example_RGB.png ├── src_PHP ├── .gitignore ├── alchemy-svg.php ├── alchemy.php ├── composer.json ├── composer.lock ├── index-compare.php └── index.php └── src_Unity3D ├── AlchemyCircle.cs ├── CiaccoRandom.cs └── TextureDraw.cs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/example_BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/screenshots/example_BN.png -------------------------------------------------------------------------------- /screenshots/example_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/screenshots/example_RGB.png -------------------------------------------------------------------------------- /src_PHP/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /src_PHP/alchemy-svg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_PHP/alchemy-svg.php -------------------------------------------------------------------------------- /src_PHP/alchemy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_PHP/alchemy.php -------------------------------------------------------------------------------- /src_PHP/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_PHP/composer.json -------------------------------------------------------------------------------- /src_PHP/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_PHP/composer.lock -------------------------------------------------------------------------------- /src_PHP/index-compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_PHP/index-compare.php -------------------------------------------------------------------------------- /src_PHP/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_PHP/index.php -------------------------------------------------------------------------------- /src_Unity3D/AlchemyCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_Unity3D/AlchemyCircle.cs -------------------------------------------------------------------------------- /src_Unity3D/CiaccoRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_Unity3D/CiaccoRandom.cs -------------------------------------------------------------------------------- /src_Unity3D/TextureDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiaccoDavide/Alchemy-Circles-Generator/HEAD/src_Unity3D/TextureDraw.cs --------------------------------------------------------------------------------