Fix: minor typos (#178)

* Fix: minor typos

* Update CHANGELOG.md

* Update CHANGELOG.md

---------

Co-authored-by: Sepand Haghighi <sepand.haghighi@yahoo.com>
pull/179/head
omahs 2023-02-24 21:14:56 +01:00 zatwierdzone przez GitHub
rodzic 773b89aac9
commit 74c36df546
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `load_config` function modified
- Random mode modified
- `RANDOM_EQUATION_GEN_COMPLEXITY` parameter renamed to `RANDOM_EQUATION_MAX_COMPLEXITY`
- `README.md` updated
## [1.0] - 2022-12-14
### Added
- `Marker` enum

Wyświetl plik

@ -350,11 +350,11 @@ Samila is simply a transformation between a square-shaped space from the Cartesi
### Example
<img src="https://github.com/sepandhaghighi/samila/raw/master/otherfiles/mathematical_details/transformation.png">
We have set of points in the first space (left square) which can be define as follow:
We have set of points in the first space (left square) which can be defined as follow:
<img src="https://github.com/sepandhaghighi/samila/raw/master/otherfiles/mathematical_details/S1.jpg">
And bellow functions are used for transformation:
And below functions are used for transformation:
```pycon
>>> def f1(x, y):
@ -367,7 +367,7 @@ And bellow functions are used for transformation:
<img src="https://github.com/sepandhaghighi/samila/raw/master/otherfiles/mathematical_details/S2.jpg">
here we uses `Projection.POLAR` so later space will be the polar space and we have:
here we use `Projection.POLAR` so later space will be the polar space and we have:
```pycon
>>> g = GenerativeImage(f1, f2)