Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~802 People Reached
Favorite Forums
Favorite Tags
Member Avatar for seamonkie

[CODE] from math import sin, cos, pi import pygame displayWidth = 640 displayHeight = 480 fpsLimit = 90 def sinInterpolation(start, end, steps=30): values = [start] delta = end - start for i in range(1, steps): n = (pi / 2.0) * (i / float(steps - 1)) values.append(start + delta * …

0
38
Member Avatar for seamonkie

I am having problems with this code and im nooby what im trying to do Create a game where the computer picks a random word and the player has to guess that word. The computer tells the player how many letters are in the word. Then the player gets five …

Member Avatar for jlm699
0
764