Skip to content

Commit

Permalink
replace RangeWithValue with Range, phetsims/dot#78
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Malley <cmalley@pixelzoom.com>
  • Loading branch information
pixelzoom committed Oct 4, 2018
1 parent 8a48e2b commit 31a0fb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/common/RPALConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ define( function( require ) {
// modules
var Bounds2 = require( 'DOT/Bounds2' );
var Dimension2 = require( 'DOT/Dimension2' );
var RangeWithValue = require( 'DOT/RangeWithValue' );
var Range = require( 'DOT/Range' );
var reactantsProductsAndLeftovers = require( 'REACTANTS_PRODUCTS_AND_LEFTOVERS/reactantsProductsAndLeftovers' );

var RPALConstants = {

SCREEN_VIEW_OPTIONS: { layoutBounds: new Bounds2( 0, 0, 835, 504 ) },
MOLECULE_OPTIONS: { atomOptions: { stroke: 'black', lineWidth: 0.5, scale: 1 } },
QUANTITY_RANGE: new RangeWithValue( 0, 8 ),
SANDWICH_COEFFICIENT_RANGE: new RangeWithValue( 0, 3 ),
QUANTITY_RANGE: new Range( 0, 8 ),
SANDWICH_COEFFICIENT_RANGE: new Range( 0, 3 ),
RESET_ALL_BUTTON_SCALE: 0.75,

// box size requested to be configurable per screen
Expand Down

0 comments on commit 31a0fb2

Please sign in to comment.