View source: R/pattern-waves.R
gen_waves | R Documentation |
This generator generates multidimensional waves based on cos to the
distance to the center. This means that you can create ripple waves or
parallel waves depending on how many dimensions you provide. The output is
scaled between -1 and 1 and the frequency determines the number of waves per
unit. The result is much like gen_spheres()
but has smooth transitions at
each extreme.
gen_waves(x, y = NULL, z = NULL, t = NULL, frequency = 1, ...)
x, y, z, t |
The coordinates to get pattern from |
frequency |
The frequency of the generator |
... |
ignored |
A numeric vector
Other Pattern generators:
gen_checkerboard()
,
gen_spheres()
grid <- long_grid(seq(1, 10, length.out = 1000), seq(1, 10, length.out = 1000)) grid$ripple <- gen_waves(grid$x, grid$y) grid$wave <- gen_waves(grid$x) plot(grid, ripple) plot(grid, wave)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.