Skip to content

Commit

Permalink
#3 replace uses of centerY with y, in preparation for boundsMethod: '…
Browse files Browse the repository at this point in the history
…none'
  • Loading branch information
pixelzoom committed Aug 12, 2015
1 parent 22d65bb commit fef1def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/systems/view/ParallelSystemNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ define( function( require ) {

// right ends of both springs are connected to this
var trussOverlap = 10;
var trussNode = new Line( 0, topSpringNode.centerY - trussOverlap, 0, bottomSpringNode.centerY + trussOverlap, {
var trussNode = new Line( 0, topSpringNode.y - trussOverlap, 0, bottomSpringNode.y + trussOverlap, {
lineWidth: 4,
stroke: 'black'
} );
Expand Down

0 comments on commit fef1def

Please sign in to comment.