Skip to content

Keep style consistent

  1. Is the code neatly laid out? Have a look at this Juce style for tips on clear writing, and adhering to Juce coding standards https://juce.com/discover/stories/coding-standards

From Wind.h

//    Basic Oscillators
    SinOsc Wind_sinOsc_1;
    SinOsc Wind_sinOsc_2;
    SinOsc Wind_sinOsc_3;
    SinOsc Wind_sinOsc_4;
    SinOsc Wind_sinOsc_5;

You use Capitals then_underscores along with camelCase. All of these are fine in isolation, the worst thing to do is be inconsistent.