Browse Source

Fixed a typo in comments for Oscillator

tags/2021-05-28
jules hogliux 7 years ago
parent
commit
969bd87599
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      modules/juce_dsp/processors/juce_Oscillator.h

+ 5
- 3
modules/juce_dsp/processors/juce_Oscillator.h View File

@@ -23,16 +23,18 @@
============================================================================== ==============================================================================
*/ */
/** /**
Applies a gain to audio samples as single samples or AudioBlocks.
*/
Generates a signal based on a user-supplied function.
*/
template <typename SampleType> template <typename SampleType>
class Oscillator class Oscillator
{ {
public: public:
/** The NumericType is the underlying primitive type used by the SampleType (which /** The NumericType is the underlying primitive type used by the SampleType (which
could be either a primitive or vector) could be either a primitive or vector)
*/
*/
using NumericType = typename SampleTypeHelpers::ElementType<SampleType>::Type; using NumericType = typename SampleTypeHelpers::ElementType<SampleType>::Type;
/** Creates an oscillator with a periodic input function (-pi..pi). /** Creates an oscillator with a periodic input function (-pi..pi).


Loading…
Cancel
Save