We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41fc54 commit c02ec38Copy full SHA for c02ec38
src/main/scala/introprog/Image.scala
@@ -32,7 +32,7 @@ class Image (val underlying: java.awt.image.BufferedImage):
32
this
33
34
35
- /** Extract and return image pixels.*/
+ /** Extract and return image pixels. */
36
def toMatrix: Array[Array[Color]] =
37
val xs: Array[Array[Color]] = Array.ofDim(width, height)
38
for x <- 0 until width; y <- 0 until height do
0 commit comments