Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: growing layout
name
code content
( a = Window(); a.layout = v = VLayout(); a.front; fork({ 10.do { v.add(h = HLayout()); 20.rand.do { h.add(Slider()); 0.1.wait; }; 1.wait; }; }, AppClock) ) ( a = Window(); a.layout = v = VLayout(); a.front; fork({ var or; 10.do { or = [\horizontal, \vertical].choose; v.add(h = HLayout()); 10.rand.do { h.add(Slider().orientation_(or).value_(1.0.rand)); 0.1.wait; }; 1.wait; }; }, AppClock) )
code description
Just an illustration of how layouts behave dynamically.
use markdown for formating
category tags
comma separated, i.g. "wild, siren" (do not enter default SC class names, please)
ancestor(s)
comma separated identificators, i.g. "1-C,1-1,1-4M,1-x"
Private?
the code will be accessible by direct url and not visible in public activity
signup to submit public code without captcha
comment of change