aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/Example.scala
blob: 5226246cc251c75886e6eaa17420d9c498ff98d2 (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)
}