Last active
June 6, 2018 05:58
-
-
Save gabrielflorit/49e5aa9cbf6a25a67e8122c0247c3884 to your computer and use it in GitHub Desktop.
SCRIPT-8
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
// title: Trigo-5 | |
/* eslint-disable no-global-assign */ | |
initialState = { | |
x: 0 | |
} | |
update = state => { | |
state.x += 0.01 * Math.PI | |
if (state.x > Math.PI) { | |
state.x = -Math.PI | |
} | |
} | |
draw = state => { | |
clear() | |
// origin | |
const o = { x: 64, y: 64 } | |
// axes | |
line(o.x, 0, o.x, 128, 6) | |
line(0, o.y, 128, o.y, 6) | |
// radius | |
const r = 60 | |
// compute points | |
const points = range(-0.5, 0.5, 0.1).map(i => { | |
const angle = i * 2 * Math.PI | |
const x = o.x + r * Math.cos(angle) | |
const y = o.y + r * Math.sin(angle) | |
return [x, y] | |
}) | |
// draw line | |
polyStroke(points, 3) | |
// draw points | |
points.forEach(p => { | |
circFill(...p, 2, 0) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment