https://github.com/pythoncoderunicorn/generativeart
generative art using trigonometry functions
https://github.com/pythoncoderunicorn/generativeart
Last synced: about 2 months ago
JSON representation
generative art using trigonometry functions
- Host: GitHub
- URL: https://github.com/pythoncoderunicorn/generativeart
- Owner: PythonCoderUnicorn
- Created: 2022-01-23T02:26:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-25T00:47:33.000Z (over 4 years ago)
- Last Synced: 2025-01-17T20:24:31.321Z (over 1 year ago)
- Language: R
- Size: 1.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# generativeArt
generative art using trigonometry functions
## blue dots

## green explosion

## gold glitter x= sin(x)

## y = sin(y)

## fire triangles
```
x= x ^sin(z),
y = sin(y)/x,
col= z
```

## star
```
geom_spoke( aes(angle= sin(x), radius= z), show.legend = F)+
geom_spoke( aes(angle= (x)^z, radius= z*y), show.legend = F)+
```
