Created
June 23, 2017 06:34
-
-
Save sungyongchoi/4daa6ef38a3fc0974e053f05df749eec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
#python 2.x | |
""" | |
import numpy as np | |
import math | |
import matplotlib.pyplot as plt | |
class Point: | |
def __init__(self, x=0, y=0): | |
self.x = x | |
self.y = y | |
def sineAroundCircle( cx, cy, radius, amplitude, angle, frequency): | |
p = Point() | |
p.x = cx+(radius+amplitude*np.sin(frequency*angle))*np.cos(angle) | |
p.y = cy+(radius+amplitude*np.sin(frequency*angle))*np.sin(angle) | |
return p | |
cx=150 | |
cy=150 | |
radius=100 | |
amp=10 | |
frequency=40 | |
pt= Point() | |
fig, ax = plt.subplots() | |
for i in range(1,360): | |
angle = i * math.pi/180 | |
pt = sineAroundCircle(cx,cy,radius,amp,angle,frequency) | |
line1, = ax.plot(pt.x, pt.y, 'o') | |
frequency=10 | |
radius=50 | |
for i in range(1,360): | |
angle = i * math.pi/180 | |
pt = sineAroundCircle(cx,cy,radius,amp,angle,frequency) | |
line2, = ax.plot(pt.x, pt.y, 'o') | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment