We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec94a8 commit a76963aCopy full SHA for a76963a
1 file changed
projects/Sine_Wave/sine_wave.py
@@ -10,6 +10,7 @@
10
penup()
11
# As x increases y increases and decreases as it is evaluated.
12
for x in range(-200, 200):
13
+ # Sine Wave Equation
14
y = A * sin((2 * pi / B) * (x + C)) + D
15
goto(x, y)
16
pendown()
0 commit comments