phetsims / pendulum-lab

"Pendulum Lab" is an educational simulation in HTML5, by PhET Interactive Simulations.
GNU General Public License v3.0
4 stars 10 forks source link

PropertySet property access #30

Closed jonathanolson closed 9 years ago

jonathanolson commented 9 years ago

NOTE: not assigned yet, pending on https://github.com/phetsims/axon/issues/43

In general the following is preferred:

this.locationProperty

to the following style:

this.property( 'location' )

for readability and performance concerns.

Example: Movable.js

andrey-zelenkov commented 9 years ago

PropertySet property access changed. Reassign to @jonathanolson for verification.

jonathanolson commented 9 years ago

Looks good, thanks!