You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a rough sketch of an idea to avoid all the panic'ing in the ugen Rate methods.
The idea is to cache an error on the ugen that will get returned when NewSynthdef is called.
funcNewSynthdef(namestring, fUgenFunc) (*Synthdef, error) {
// Flatten the ugen graph.// If any ugens return an input that returns a non-nil error from// the private err() method then return the error.
}
The text was updated successfully, but these errors were encountered:
This is a rough sketch of an idea to avoid all the
panic
'ing in the ugen Rate methods.The idea is to cache an error on the ugen that will get returned when NewSynthdef is called.
sinosc.go:
...
input.go:
synthdef.go:
The text was updated successfully, but these errors were encountered: