lunduniversity / introprog

Teaching material for "Introduction to Programming using Scala" at Lund University, LTH. http://cs.lth.se/pgk/
142 stars 178 forks source link

Confusing comments in w04 lab #598

Closed snctfd closed 2 years ago

snctfd commented 3 years ago

Assignment 5b in the blockmole lab provides the following given code:

def block(pos: Pos)(color: JColor = JColor.gray): Unit = {
  val x = ??? //räkna ut fönstrets x-koordinat i pixlar istf block
  val y = ??? //räkna ut fönstrets y-koordinat i pixlar istf block
  window.fill(???)
}

I have noticed students getting confused about the comments and translating windowSize into pixel coordinates as opposed to pos. I would argue that the comments are somewhat misleading, and could potentially be changed to "räkna ut blockets {x,y}-koordinat...".