From 0105dea2e52b5262df3d91d0a694b46fb8596986 Mon Sep 17 00:00:00 2001 From: lordanubi <60713616+lordanubi@users.noreply.github.com> Date: Mon, 1 Mar 2021 14:04:49 +0100 Subject: [PATCH] Create README.md --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7d314b0 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +# Futuri: a React SVG Animated Pattern Maker + +Futuri is an SVG Pattern Maker made from people for the people. +It gives you the possibility to make infinite variations of patterns (periodic, aperiodic and quasi periodic tiling are all possibile) +It takes advantages of React, SVG and Framer Motion to make the most simple cool and fluid animated patterns on the web. All scalable, interactable and fine-tunable. + +## Installation +Open the folder with VisualStudio Code and type in the Terminal + +```bash +npm install +``` +or +```bash +yarn install +``` + +## Usage + +```jsx +let patternSettings = { + horizontal: { + spacing: 0, //space between lines + atoms: 20, //number of logos per line + quasiPeriodicHorizontalFlip: true, //ordered chaos + evenOddVerticalFlip: true, //flip every other logo + phase: //can be 'periodic' or 'quasiperiodic' + }, + vertical: { + spacing: 0, //space between columns + atoms: 20, //number of logos per column + quasiPeriodicHorizontalFlip: true, //ordered chaos + evenOddVerticalFlip: true, //flip every line + phase: false //can be 'periodic' or 'quasiperiodic' + } + } + return() + + +``` + +## Contributing +Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. + +## License +[MIT](https://choosealicense.com/licenses/mit/)