摘要: Mini-project description — Rock-paper-scissors-lizard-SpockRock-paper-scissors is a hand game that is played by two people. The players count to three... 阅读全文
posted @ 2014-10-18 14:58 同叔练级之路 阅读(363) 评论(0) 推荐(0)
摘要: Mini-project #4 - "Pong"In this project, we will build a version ofPong, one of the first arcade video games (1972). While Pong is not particularly ex... 阅读全文
posted @ 2014-10-18 14:31 同叔练级之路 阅读(572) 评论(0) 推荐(0)
摘要: # Ball motion with an explicit timerimport simplegui# Initialize globalswidth = 600height = 600ball_pos = [width/2, height/2]ball_radius = 20ball_vel ... 阅读全文
posted @ 2014-10-18 10:53 同叔练级之路 阅读(163) 评论(0) 推荐(0)
摘要: # Ball motion with an explicit timerimport simplegui# Initialize globalswidth = 600height = 600ball_pos_init = [width/2, height/2]ball_radius = 20ball... 阅读全文
posted @ 2014-10-18 10:21 同叔练级之路 阅读(135) 评论(0) 推荐(0)