-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas4.scala
168 lines (142 loc) · 5.16 KB
/
canvas4.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
//> using scala 3.3.0
/*
canvas4.scala
Initial image/canvas app with circles, quads and thick lines
Creates a simple PPM
scala-cli canvas4.scala
*/
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 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 blue = Colour(0, 0, 255)
@main def main() =
println("Hello")
val im0 = Image
.blank(600, 600)
.circleFill(Loc(300, 300), 250, green)
.circle(Loc(300, 300), 250, black)
.circle(Loc(300, 300), 255, black)
val im1 = (1 to 12).foldLeft(im0)((im, i) =>
val th = math.Pi * i / 6
im.lineThick(
Loc(300, 300),
Loc(300 + (200 * math.sin(th)).toInt, 300 - (200 * math.cos(th)).toInt),
2 * i,
red
)
)
Image.saveAsPPM(im1, "test4.ppm")
println("Goodbye")
// eof