shithub: slug

ref: 9853749352c8acaf7ddb4e0c4fef457008a95bba
dir: /samples/bezier.lua/

View raw version
#!/bin/slug

function setup()
	size(400, 400)
end

function draw()
	background(220)
	noFill()
	stroke(255, 102, 0)
	line(340, 80, 40, 40)
	line(360, 360, 60, 320)
	stroke(0, 0, 0)
	bezier(340, 80, 40, 40, 360, 360, 60, 320)
end