Skip to content

Instantly share code, notes, and snippets.

@bricker
Created December 3, 2012 08:38
Show Gist options
  • Save bricker/4193676 to your computer and use it in GitHub Desktop.
Save bricker/4193676 to your computer and use it in GitHub Desktop.

I programmed thirds, with the help of SuperCollider. This is the dumbest thing I've ever wasted 20 minutes on.

(
SynthDef.new("thirds", { |base=440|
	var outArray, third;
	third = base * 1.3;

	outArray = [
		SinOsc.ar(base, 0, 0.2),
		SinOsc.ar(third, 0, 0.2)
	];

	Out.ar(0, outArray);
}).add;
)

x = Synth("thirds", [base: 440]);
@edwardloveall
Copy link

These are more or less fourths, but good job.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment