Skip to content

Commit

Permalink
Made Vector3 constructor arguments required, see phetsims/dot#85
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Feb 16, 2019
1 parent 2ef5715 commit 48d9e1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ define( function( require ) {
var MAX_TIME_IN_ONE_DIRECTION = 0.8; // In seconds.

// Vector used for intermediate calculations - Added to avoid excessive creation of Vector3 instances - Ashraf
var nextPosition3DScratchVector = new Vector3();
var nextPosition3DScratchVector = new Vector3( 0, 0, 0 );

/**
* @param {Property} motionBoundsProperty
Expand Down

0 comments on commit 48d9e1e

Please sign in to comment.