-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas8.scala
212 lines (181 loc) · 6.36 KB
/
canvas8.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
//> using scala 3.3.0
//> using dep org.typelevel::spire:0.18.0
/*
canvas8.scala
Simple image/canvas app drawing a Mandelbrot set
Saves to a PNG via a BufferedImage
scala-cli canvas8.scala
*/
import spire.*
import spire.math.*
import spire.implicits.*
import java.awt.image.BufferedImage
case class Colour(r: Int, g: Int, b: Int)
case class Loc(x: Int, y: Int):
def mid(l: Loc) = Loc((x + l.x) / 2, (y + l.y) / 2)
case class Image[T](w: Int, h: Int, data: Vector[T]):
def apply(l: Loc): T = data(l.x * h + l.y)
def map[S](f: T => S): Image[S] = Image(w, h, data map f)
def updated(l: Loc, value: T): Image[T] =
if ((l.x >= 0) & (l.y >= 0) & (l.x < w) & (l.y < h))
Image(w, h, data.updated(l.x * h + l.y, value))
else this
def line(l0: Loc, l1: Loc, c: T): Image[T] =
val xd = math.abs(l1.x - l0.x)
val yd = math.abs(l1.y - l0.y)
val n = math.max(xd, yd) + 1
val is = (0 to n).toList
val x = is.map(i =>
math.round(l0.x.toDouble * (n - i) / n + l1.x.toDouble * i / n).toInt
)
val y = is.map(i =>
math.round(l0.y.toDouble * (n - i) / n + l1.y.toDouble * i / n).toInt
)
val ls = (x zip y) map (p => Loc(p._1, p._2))
ls.foldLeft(this)((im, li) => im.updated(li, c))
def tri(l0: Loc, l1: Loc, l2: Loc, c: T): Image[T] =
val sorted = List(l0, l1, l2).sortWith(_.y < _.y)
val iTop = 0 until (sorted(1).y - sorted(0).y)
val linesTop = iTop.map(i =>
(
sorted(0).y + i,
sorted(2).x.toDouble * i / (sorted(2).y - sorted(0).y) +
sorted(0).x.toDouble * (sorted(2).y - sorted(0).y - i) / (sorted(
2
).y - sorted(0).y),
sorted(1).x.toDouble * i / (sorted(1).y - sorted(0).y) +
sorted(0).x.toDouble * (sorted(1).y - sorted(0).y - i) / (sorted(
1
).y - sorted(0).y)
)
)
val iBot = 0 until (sorted(2).y - sorted(1).y)
val linesBot = iBot.map(i =>
(
sorted(1).y + i,
sorted(2).x.toDouble * (sorted(1).y - sorted(0).y + i) / (sorted(
2
).y - sorted(0).y) +
sorted(0).x.toDouble * (sorted(2).y - sorted(1).y - i) / (sorted(
2
).y - sorted(0).y),
sorted(2).x.toDouble * i / (sorted(2).y - sorted(1).y) +
sorted(1).x.toDouble * (sorted(2).y - sorted(1).y - i) / (sorted(
2
).y - sorted(1).y)
)
)
val lines = linesTop ++ linesBot
lines.foldLeft(this)((im, yxX) =>
im.line(Loc(yxX._2.toInt, yxX._1), Loc(yxX._3.toInt, yxX._1), c)
)
def circle(cen: Loc, r: Double, c: T): Image[T] =
(0 to math.round(r / math.sqrt(2.0)).toInt).foldLeft(this)((im, i) =>
val j = math.round(math.sqrt(r * r - i * i)).toInt
im.updated(Loc(cen.x + j, cen.y + i), c)
.updated(Loc(cen.x + j, cen.y - i), c)
.updated(Loc(cen.x - j, cen.y + i), c)
.updated(Loc(cen.x - j, cen.y - i), c)
.updated(Loc(cen.x + i, cen.y + j), c)
.updated(Loc(cen.x + i, cen.y - j), c)
.updated(Loc(cen.x - i, cen.y + j), c)
.updated(Loc(cen.x - i, cen.y - j), c)
)
def circleFill(cen: Loc, r: Double, c: T): Image[T] =
(0 to math.round(r / math.sqrt(2.0)).toInt).foldLeft(this)((im, i) =>
val j = math.round(math.sqrt(r * r - i * i)).toInt
im.line(Loc(cen.x - j, cen.y + i), Loc(cen.x + j, cen.y + i), c)
.line(Loc(cen.x - j, cen.y - i), Loc(cen.x + j, cen.y - i), c)
.line(Loc(cen.x - i, cen.y + j), Loc(cen.x + i, cen.y + j), c)
.line(Loc(cen.x - i, cen.y - j), Loc(cen.x + i, cen.y - j), c)
)
// assumes coords in cyclic order
def quad(l0: Loc, l1: Loc, l2: Loc, l3: Loc, c: T): Image[T] =
this.tri(l0, l1, l2, c).tri(l0, l2, l3, c)
def lineThick(l0: Loc, l1: Loc, th: Double, c: T): Image[T] =
val gr0 = (l1.y - l0.y).toDouble / (l1.x - l0.x)
val gr = -1.0 / gr0
val ang = math.atan(gr)
val xd = math.round(th * math.cos(ang) / 2.0).toInt
val yd = math.round(th * math.sin(ang) / 2.0).toInt
this.quad(
Loc(l0.x + xd, l0.y + yd),
Loc(l1.x + xd, l1.y + yd),
Loc(l1.x - xd, l1.y - yd),
Loc(l0.x - xd, l0.y - yd),
c
)
case object Image:
def blank[T](w: Int, h: Int, c: T): Image[T] =
Image(w, h, Vector.fill[T](w * h)(c))
def blank(w: Int, h: Int): Image[Colour] =
blank(w, h, Colour(255, 255, 255))
def fill[T](w: Int, h: Int)(f: Loc => T): Image[T] =
val locs = for
x <- 0 until w
y <- 0 until h
yield Loc(x, y)
val im0 = Image.blank(w, h, f(Loc(0, 0)))
locs.foldLeft(im0)((im, loc) => im.updated(loc, f(loc)))
def toBI(im: Image[Colour]): BufferedImage =
val canvas = new BufferedImage(im.w, im.h, BufferedImage.TYPE_INT_RGB)
val wr = canvas.getRaster
for (x <- 0 until im.w)
for (y <- 0 until im.h)
wr.setSample(x, y, 0, im(Loc(x, y)).r)
wr.setSample(x, y, 1, im(Loc(x, y)).g)
wr.setSample(x, y, 2, im(Loc(x, y)).b)
canvas
def saveAsPPM(im: Image[Colour], fileName: String): Unit =
val fs = new java.io.FileWriter(fileName)
fs.write(s"P3 ${im.w} ${im.h} 255\n")
(0 until im.h).foreach(y =>
(0 until im.w).foreach(x =>
val p = im(Loc(x, y))
fs.write(s"${p.r} ${p.g} ${p.b}\n")
)
)
fs.close()
object CanvasApp:
val white = Colour(255, 255, 255)
val black = Colour(0, 0, 0)
val red = Colour(255, 0, 0)
val green = Colour(0, 255, 0)
val darkGreen = Colour(0, 150, 0)
val blue = Colour(0, 0, 255)
def level(c: Complex[Double], maxIts: Int): Int =
@annotation.tailrec
def go(z: Complex[Double], its: Int): Int =
if (its >= maxIts) -1
else
val zn = z * z + c
if (zn.abs > 2.0)
its
else
go(zn, its + 1)
go(Complex(0.0, 0.0), 1)
def mand(
w: Int,
h: Int,
tl: Complex[Double],
iRange: Double,
maxIts: Int
): Image[Int] =
val res = iRange.toDouble / h
Image.fill(w, h)(l =>
val c = tl + Complex(l.x * res, -l.y * res)
level(c, maxIts)
)
@main def main() =
println("Hello")
val maxIts = 60
val im0 = mand(1000, 800, Complex(-2.5, 1.5), 3.0, maxIts)
val im1 = im0 map (l =>
l match
case -1 => Colour(0, 0, 20) // very dark blue
case li => Colour(255 * li / maxIts, 0, 0)
)
val bi = Image.toBI(im1)
javax.imageio.ImageIO.write(bi, "png", new java.io.File("test8.png"))
println("Goodbye")
// eof