diff --git a/js/linegame/model/BaseChallengeFactory.js b/js/linegame/model/BaseChallengeFactory.js index 41fe2e14..6375b1d1 100644 --- a/js/linegame/model/BaseChallengeFactory.js +++ b/js/linegame/model/BaseChallengeFactory.js @@ -80,6 +80,7 @@ define( function( require ) { * @param {Range} graphXRange * @param {Range} graphYRange * @returns {Vector2} + * @public * @static */ choosePointForSlope: function( slope, graphXRange, graphYRange ) { @@ -104,11 +105,12 @@ define( function( require ) { * Picks a point (x1,x2) on the graph that results in the slope indicator (x2,y2) being off the graph. * This forces the user to invert the slope. * - * @static * @param {Fraction} slope * @param {Range} graphXRange * @param {Range} graphYRange * @returns {Vector2} + * @public + * @static */ choosePointForSlopeInversion: function( slope, graphXRange, graphYRange ) { diff --git a/js/linegame/view/ChallengeNode.js b/js/linegame/view/ChallengeNode.js index a8d0e69b..85bb9855 100644 --- a/js/linegame/view/ChallengeNode.js +++ b/js/linegame/view/ChallengeNode.js @@ -37,11 +37,11 @@ define( function( require ) { var tryAgainString = require( 'string!VEGAS/tryAgain' ); /** - * Constructor * @param {Challenge} challenge the challenge * @param {LineGameModel} model the game model * @param {Dimension2} challengeSize dimensions of the view rectangle that is available for rendering the challenge * @param {GameAudioPlayer} audioPlayer the audio player, for providing audio feedback during game play + * @constructor */ function ChallengeNode( challenge, model, challengeSize, audioPlayer ) { diff --git a/js/slopeintercept/model/SlopeInterceptModel.js b/js/slopeintercept/model/SlopeInterceptModel.js index ba3d68fd..93548cfa 100644 --- a/js/slopeintercept/model/SlopeInterceptModel.js +++ b/js/slopeintercept/model/SlopeInterceptModel.js @@ -18,6 +18,9 @@ define( function( require ) { var PointSlopeModel = require( 'GRAPHING_LINES/pointslope/model/PointSlopeModel' ); var SlopeInterceptParameterRange = require( 'GRAPHING_LINES/slopeintercept/model/SlopeInterceptParameterRange' ); + /** + * @constructor + */ function SlopeInterceptModel() { PointSlopeModel.call( this, Line.createSlopeIntercept( 2, 3, 1, GLColors.INTERACTIVE_LINE ), new SlopeInterceptParameterRange() ); } diff --git a/js/slopeintercept/model/SlopeInterceptParameterRange.js b/js/slopeintercept/model/SlopeInterceptParameterRange.js index f642840c..30afd959 100644 --- a/js/slopeintercept/model/SlopeInterceptParameterRange.js +++ b/js/slopeintercept/model/SlopeInterceptParameterRange.js @@ -15,6 +15,9 @@ define( function( require ) { var PointSlopeParameterRange = require( 'GRAPHING_LINES/pointslope/model/PointSlopeParameterRange' ); var Range = require( 'DOT/Range' ); + /** + * @constructor + */ function SlopeInterceptParameterRange() { PointSlopeParameterRange.call( this ); }