@docinkc, start a new discussion thread and using the 'code' tag below the input box to insert the problem code. Include a brief explanation of the problem.
@Peach, obviously it is a call to 'addObject', a method in the World class that uses the signature 'addObject(actor, int, int)'. The actor is a new Letter object that is being placed within the array of letters declared near the top of the class. This line is found within a 'for' loop that iterates 'i' through the numbers 0 to 25 (for each letter of the alphabet). Notice in the scenario how I split the 26 letters into two rows of 13 letters each. The first int (the x-coordinate of where to place the letter actor) is '24+38*(i%13)'. This says to start at x-coordinate 24 and add 'i' factors of 38 (the distance between each letter). Taking the modulus 13 of 'i' starts the factor back at zero again for the second row. The second int (the y-coordinate of where to place the letter actor) is '510+30*(i/13)'. This says to start at y-coordinate 510 and add a factor of 30 for the second row ('i/13' will return 0 until 'i' reaches 13; then it will return one for the rest of the loop).
2014/6/13
Greenfoot Acts to Seconds Converter
2014/6/8
Jump and Run Demo w/Moving Platform
2014/5/26
AstroRacer
2014/5/24
Hangman
2014/5/24
Hangman
2014/5/24
Hangman
2014/5/24
Hangman
2014/5/23
Hangman
2014/5/23
Hangman