From 3d3b53b1a7c9bbf1bd84ff9492865e0922064819 Mon Sep 17 00:00:00 2001 From: jbphet Date: Tue, 23 Feb 2021 12:12:49 -0700 Subject: [PATCH] added header comment --- js/sound-generators/DiscreteSoundGenerator.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/js/sound-generators/DiscreteSoundGenerator.js b/js/sound-generators/DiscreteSoundGenerator.js index 25ccac2b..75b049f1 100644 --- a/js/sound-generators/DiscreteSoundGenerator.js +++ b/js/sound-generators/DiscreteSoundGenerator.js @@ -1,5 +1,12 @@ // Copyright 2019-2020, University of Colorado Boulder +/** + * DiscreteSoundGenerator produces sounds based on the value of a number property. It monitors the property value and + * maps it to one of a finite number of bins, and produces a discrete sound when the bin to which the value is mapped + * changes. + * + * @author John Blanco (PhET Interactive Simulations) + */ import Range from '../../../dot/js/Range.js'; import merge from '../../../phet-core/js/merge.js';