Skip to content

Commit

Permalink
Converting away from Poolable2 => Pool, see phetsims/phet-core#103
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Mar 3, 2022
1 parent 88bdbdd commit bf23b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/view/ClearDynamicsButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import CircuitElement from '../model/CircuitElement.js';
const SCALE = 0.032;

// @ts-ignore
const SHAPE_MATRIX = Matrix3.createFromPool( SCALE, 0, 0, 0, -SCALE, 0, 0, 0, 1 ); // to create a unity-scale icon
const SHAPE_MATRIX = Matrix3.pool.create( SCALE, 0, 0, 0, -SCALE, 0, 0, 0, 1 ); // to create a unity-scale icon

class ClearDynamicsButton extends HBox {

Expand Down

0 comments on commit bf23b02

Please sign in to comment.