Composition of Generative Art
In this chapter we'll explore techniques from generative art, which will in turn allow us to explore key concepts for functional programming. We'll see:
- uses for
map
andflatMap
that go beyond manipulating collections of data that we've seen in the previous chapters; - how we can handle side effects without breaking substitution; and
- some interesting, and possibly beautiful, images that combine elements of structure and randomness.
<div class="callout callout-info"> If you run the examples from the SBT console within Doodle they will just work. If not, you will need to start your code with the following imports to make Doodle available.
import doodle.core._
import doodle.image._
import doodle.syntax.all._
import doodle.image.syntax.all._
import doodle.java2d._