Skip to content

Commit

Permalink
feature rootsNode.*CoordinatesProperty, #194
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Jun 20, 2023
1 parent bd235d7 commit b3df763
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/standardform/view/RootsNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export default class RootsNode extends Node {
}, {
tandem: tandem.createTandem( 'leftCoordinatesProperty' ),
phetioValueType: NullableIO( Vector2.Vector2IO ),
phetioFeatured: true, // see https://github.com/phetsims/graphing-quadratics/issues/194
phetioDocumentation: 'coordinates displayed on the left root, ' +
'identical to rightCoordinatesProperty if there is one root, ' +
'null if there are no roots or if all points are roots'
Expand Down Expand Up @@ -79,6 +80,7 @@ export default class RootsNode extends Node {
}, {
tandem: tandem.createTandem( 'rightCoordinatesProperty' ),
phetioValueType: NullableIO( Vector2.Vector2IO ),
phetioFeatured: true, // see https://github.com/phetsims/graphing-quadratics/issues/194
phetioDocumentation: 'coordinates displayed on the right root, ' +
'identical to leftCoordinatesProperty if there is one root, ' +
'null if there are no roots or if all points are roots'
Expand Down

0 comments on commit b3df763

Please sign in to comment.