Skip to content

Commit 631ed70

Browse files
committed
chore: bump version and news
1 parent cc5a80a commit 631ed70

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: aRt
22
Title: Generative Art with R
3-
Version: 1.3.2
3+
Version: 1.3.3
44
Authors@R:
55
person(given = "Nicola",
66
family = "Rennie",

NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export(theme_aRt)
4444
export(tiles)
4545
export(vortex)
4646
export(waves)
47+
export(windows)
4748
import(ggplot2)
4849
import(patchwork)
4950
importFrom(dplyr,"%>%")

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## aRt 1.3.3
2+
3+
* Add `windows()`
4+
15
## aRt 1.3.2
26

37
* Fix bug in `flow_fields()`

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -689,3 +689,20 @@ waves(a=6, b=23, linewidth = 0.5, main_col="black", bg_col="white", s=2021)
689689
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/waves23_6_col.jpeg?raw=true" width="30%">
690690
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/waves6_23_bw.jpeg?raw=true" width="30%">
691691
</p>
692+
693+
694+
### windows
695+
696+
The `windows()` function produces generative art using a grid of squares.
697+
698+
``` r
699+
windows(n_x = 10, n_y = 10, col_palette = PrettyCols::prettycols("Beach", n = 5), linewidth = 2)
700+
windows(n_x = 12, n_y = 12, col_palette = gray.colors(20), linewidth = 2)
701+
windows(n_x = 5, n_y = 5, col_palette = PrettyCols::prettycols("TangerineBlues"), linewidth = 1)
702+
```
703+
<p align="center">
704+
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/windows1.png?raw=true" width="30%">
705+
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/windows2.png?raw=true" width="30%">
706+
<img src="https://github.com/nrennie/aRt/blob/main/man/figures/windows3.png?raw=true" width="30%">
707+
</p>
708+

0 commit comments

Comments
 (0)