Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Sep 14, 2023
1 parent 3a9e2b1 commit d1bbee8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/NormalModesConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const NormalModesConstants = {
SLOW_SPEED: 0.2,

// Masses
NUMBER_OF_MASSES_RANGE: NUMBER_OF_MASSES_RANGE, //TODO actually number of masses PER ROW https://github.com/phetsims/tasks/issues/1129
NUMBER_OF_MASSES_RANGE: NUMBER_OF_MASSES_RANGE, //TODO https://github.com/phetsims/normal-modes/issues/89 actually number of masses PER ROW
MAX_MASSES_PER_ROW: NUMBER_OF_MASSES_RANGE.max,
MASSES_MASS_VALUE: 0.1,

Expand Down
2 changes: 1 addition & 1 deletion js/common/model/NormalModesModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class NormalModesModel {
} );

// @public {Property.<number>} the current number of visible masses
//TODO this is actually the number of masses per row. In the 'Two Dimensions' screen, the number of masses is this value squared. https://github.com/phetsims/tasks/issues/1129
//TODO https://github.com/phetsims/normal-modes/issues/89 This is actually the number of masses per row. In the 'Two Dimensions' screen, the number of masses is this value squared.
this.numberOfMassesProperty = new NumberProperty( options.numberOfMasses, {
numberType: 'Integer',
range: NormalModesConstants.NUMBER_OF_MASSES_RANGE,
Expand Down

0 comments on commit d1bbee8

Please sign in to comment.