Skip to content

Commit

Permalink
chore: bump version and news
Browse files Browse the repository at this point in the history
  • Loading branch information
nrennie committed Jan 13, 2023
1 parent cc5a80a commit 631ed70
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: aRt
Title: Generative Art with R
Version: 1.3.2
Version: 1.3.3
Authors@R:
person(given = "Nicola",
family = "Rennie",
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export(theme_aRt)
export(tiles)
export(vortex)
export(waves)
export(windows)
import(ggplot2)
import(patchwork)
importFrom(dplyr,"%>%")
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## aRt 1.3.3

* Add `windows()`

## aRt 1.3.2

* Fix bug in `flow_fields()`
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -689,3 +689,20 @@ waves(a=6, b=23, linewidth = 0.5, main_col="black", bg_col="white", s=2021)
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/waves23_6_col.jpeg?raw=true" width="30%">
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/waves6_23_bw.jpeg?raw=true" width="30%">
</p>


### windows

The `windows()` function produces generative art using a grid of squares.

``` r
windows(n_x = 10, n_y = 10, col_palette = PrettyCols::prettycols("Beach", n = 5), linewidth = 2)
windows(n_x = 12, n_y = 12, col_palette = gray.colors(20), linewidth = 2)
windows(n_x = 5, n_y = 5, col_palette = PrettyCols::prettycols("TangerineBlues"), linewidth = 1)
```
<p align="center">
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/windows1.png?raw=true" width="30%">
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/windows2.png?raw=true" width="30%">
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/windows3.png?raw=true" width="30%">
</p>

0 comments on commit 631ed70

Please sign in to comment.