Skip to content

Instantly share code, notes, and snippets.

@Sciss
Created February 18, 2012 06:07
Show Gist options
  • Save Sciss/1857758 to your computer and use it in GitHub Desktop.
Save Sciss/1857758 to your computer and use it in GitHub Desktop.
LED_Ring.sc
(
w = JSCWindow.new.front;
w.view.background_( Color.white );
w.drawFunc = {
// set the Color
JPen.translate( 100, 100 );
JPen.color = Color.black;
JPen.addArc( 100 @ 100, 15, 0.4 * 2pi, 0.66 * pi );
JPen.lineDash = FloatArray[ 2, 1 ];
JPen.width = 2;
JPen.stroke;
};
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment