Results 39 issues of Julian Rohrhuber

https://scsynth.org/t/our-beloved-tanh/7347

Yes, it seems to be the `freqtotone` method of the `AY` ugen is not correct. ```supercollider *freqtotone { |freq| // Approximate empirical... //^(109300 / (freq - 3.70727)) ^(110300 / (freq...

Trying to build according to instructions, I got the following: ``` Garbage Collection no longer supported ``` ``` CompileC /Users/wanninger/Library/Developer/Xcode/DerivedData/Leonhard-gpyymcriphjihccuddmvaarzwigb/Build/Intermediates/Leonhard.build/Debug/Leonhard.build/Objects-normal/x86_64/main.o main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Volumes/data/git/Leonhard export LANG=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang...

Here is a new RFC – let me know what you think …

## Purpose and Motivation Just a small performance improvement and cleanup, follow up on the bugfix in #6235. (don't merge yet) ## Types of changes minor edits. ## To-do list...

comp: class library

- commented regions affect the behaviour of the indentation - when indenting a whole file, commented code is "flattened" to the left It can be sometimes very destructive if you...

enhancement
env: SCIDE

There are several methods that need to be used to guarantees that a string is a valid path: `string.standardizePath`, `file.exists`, `string.escapeChar`, `string.mkdir` are maybe the most common. Since the goal...

comp: class library

For a while, I have been trying to build supercollider on macOS 14 (Sonoma), but I consistently get a boost error. ``` path/supercollider/external_libraries/boost/boost/mpl/aux_/integral_wrapper.hpp:73:31: warning: integer value -1 is outside the...

bug

Just a small helpfile fix.

```supercollider // problem in attack phase: input leaks past filter t = Steno.push(2); t.filter(\f, { |in| (100, 200..1000).sum { |freq| BPF.ar(in, freq, 0.01) } }); t.quelle(\n, { WhiteNoise.ar(0.4) }); --!nf...