https://github.com/wizardous/fractal-tree
A Simple Fractal Tree rendering program in C++
https://github.com/wizardous/fractal-tree
Last synced: 12 months ago
JSON representation
A Simple Fractal Tree rendering program in C++
- Host: GitHub
- URL: https://github.com/wizardous/fractal-tree
- Owner: Wizardous
- Created: 2020-01-18T20:03:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T16:41:56.000Z (about 6 years ago)
- Last Synced: 2023-12-17T12:34:48.262Z (over 2 years ago)
- Language: C++
- Size: 224 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fractal-tree
A Simple Fractal Tree rendering program in C++
### Getting Started
**graphics.h**
You will need to setup this library in Include Dir and also it's reletated lib files.
### File descriptions
1. **Fractals1.cpp**
This program is to generate symmetrical Fractal Tree.
- Input 1: Initial length of Branches.
- Input 2: Angle of next branch reletive to previous branch.
2. **Fractals2.cpp**
This program is to generate asymmetrical Fractal Tree.
- Input 1: Initial length of Branches.
3. **Canvas.h**
This is a custom header I created. Its an implementation of the **Polar Co-ordinate** system to store and draw vectors on the canvas.