Skip to content

Commit

Permalink
Updated readme and fixed export bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chrizbee committed May 22, 2019
1 parent 0768fca commit 51dc65e
Show file tree
Hide file tree
Showing 20 changed files with 10,401 additions and 12 deletions.
2 changes: 1 addition & 1 deletion NewtonFractal.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ QT += core gui widgets concurrent
TARGET = NewtonFractal
TEMPLATE = app
CONFIG += c++14 debug_and_release
VERSION = 1.3.2
VERSION = 1.3.3
DEFINES += APP_VERSION=\\\"$$VERSION\\\"

CONFIG(release, debug|release) {
Expand Down
25 changes: 16 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# NewtonFractal
![Icon](resources/icons/Illustrator/icon64.png) ![Name](resources/icons/Illustrator/name64.png)

**NewtonFractal** is a *Qt5-Application* that renders fractals based on **Newton's method**.
[![built with](https://img.shields.io/badge/built%20with-Qt-41cd52.svg)](https://www.qt.io/) [![contributors](https://img.shields.io/github/contributors/chrizbee/NewtonFractal.svg)](https://GitHub.com/chrizbee/NewtonFractal/graphs/contributors/) [![release](https://img.shields.io/github/release/chrizbee/NewtonFractal.svg)](https://GitHub.com/chrizbee/NewtonFractal/releases/) [![license](https://img.shields.io/github/license/chrizbee/NewtonFractal.svg)](https://github.com/chrizbee/NewtonFractal/blob/master/LICENSE) [![stars](https://img.shields.io/github/stars/chrizbee/NewtonFractal.svg?color=ffdd00)](https://GitHub.com/chrizbee/NewtonFractal/stargazers/)

- Move up to *6* roots with drag & drop
## Basic Overview
**NewtonFractal** is a *Qt5-Application* that renders fractals based on [*Newton's method*](https://en.wikipedia.org/wiki/Newton%27s_method). The application provides the following features:

![roots](resources/images/roots.gif) ![move](resources/images/move.gif) ![zoom](resources/images/zoom.gif) ![orbit](resources/images/orbit.gif) ![position](resources/images/position.gif)

- Move up to 6 roots with drag & drop
- Move fractal
- Zoom in and out
- Export fractal as *png*
- Orbit mode to visualize iterations
- Show the current cursor position as a complex number
- Set fractal size and downscaling factor (smooth rendering while moving)
- Change maximum number of newton iterations
- Change damping factor of newton's method
- Multi- or singlethreading
- Change maximum number of newton iterations, ...

![Image](resources/images/fractal_190427_114136_5roots_596x596.png "Newton fractal with 5 roots and size 596x596")
- Export fractal as png

## Getting Started

Expand Down Expand Up @@ -55,8 +62,8 @@ We use [SemVer](http://semver.org/) for versioning. The current version is store

## Authors

- **Christian Bauer** - [chrizbee](https://github.com/chrizbee)
- **Timon Föhl** - [opit7](https://github.com/opit7)
- [chrizbee](https://github.com/chrizbee)
- [opit7](https://github.com/opit7)

See also the list of [contributors](https://github.com/chrizbee/NewtonFractal/contributors) who participated in this project.

Expand Down
4 changes: 2 additions & 2 deletions resources.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
<file>resources/icons/user2.png</file>
<file>resources/icons/reset.png</file>
<file>resources/icons/thread.png</file>
<file>resources/icons/icon.ico</file>
<file>resources/icons/icon.png</file>
<file>resources/icons/zoom.png</file>
<file>resources/icons/downscale.png</file>
<file>resources/icons/icons8.png</file>
Expand All @@ -26,5 +24,7 @@
<file>resources/icons/fps.png</file>
<file>resources/icons/hide.png</file>
<file>resources/icons/position.png</file>
<file>resources/icons/icon.ico</file>
<file>resources/icons/icon.png</file>
</qresource>
</RCC>
9,233 changes: 9,233 additions & 0 deletions resources/icons/Illustrator/icon.ai

Large diffs are not rendered by default.

Binary file added resources/icons/Illustrator/icon.ico
Binary file not shown.
Binary file added resources/icons/Illustrator/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions resources/icons/Illustrator/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/icons/Illustrator/icon64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 51dc65e

Please sign in to comment.