Skip to content

Commit

Permalink
Rename DOT/Util and SCENERY/Util to Utils, see phetsims/tasks#966
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Dec 30, 2019
1 parent dd63459 commit 688cba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/balloons-and-static-electricity/model/WallModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ define( require => {
const inherit = require( 'PHET_CORE/inherit' );
const MovablePointChargeModel = require( 'BALLOONS_AND_STATIC_ELECTRICITY/balloons-and-static-electricity/model/MovablePointChargeModel' );
const PointChargeModel = require( 'BALLOONS_AND_STATIC_ELECTRICITY/balloons-and-static-electricity/model/PointChargeModel' );
const Util = require( 'DOT/Util' );
const Utils = require( 'DOT/Utils' );
const Vector2 = require( 'DOT/Vector2' );
const Bounds2 = require( 'DOT/Bounds2' );

Expand Down Expand Up @@ -52,7 +52,7 @@ define( require => {
this.bounds = new Bounds2( this.x, this.y, this.x + width, this.y + height );

// @private {number} - scaling factors for calculating positions for induced charge
this.dx = Util.roundSymmetric( width / this.numX + 2 );
this.dx = Utils.roundSymmetric( width / this.numX + 2 );
this.dy = height / this.numY;

// @private {array.<PointChargeModel>}
Expand Down

0 comments on commit 688cba4

Please sign in to comment.