aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/Example.scala
blob: faa158a0d1713d4602fc436141cf0722b3d5824a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import doodle.core._
import doodle.core.Image._
import doodle.syntax._
import doodle.jvm.Java2DCanvas._
import doodle.backend.StandardInterpreter._

// To use this example, open the SBT console and type:
//
// Example.image.draw
object Example {
  val image = Circle(10) on Circle(20) on Circle(30)
}