diff --git a/js/model/ISLCObject.js b/js/model/ISLCObject.js index 5755070..f54acc8 100644 --- a/js/model/ISLCObject.js +++ b/js/model/ISLCObject.js @@ -99,6 +99,12 @@ define( function( require ) { */ calculateRadius: function() { throw new Error( 'calculateRadius must be implemented in descendent types' ); + }, + + // @public + reset: function() { + this.valueProperty.reset(); + this.positionProperty.reset(); } } ); } ); \ No newline at end of file