You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionGravityAndOrbitsModule(showMeasuringTape,createModes,initialModeIndex,showMassCheckBox){// Properties that are common to all "modes" should live here.PropertySet.call(this,{
...
measuringTapeVisible: false,
...
showMeasuringTape: false});
...
this.showMeasuringTape=showMeasuringTape;
(1) Why are there 2 properties related to visibility of the measuring tape? (measuringTapeVisible, showMeasuringTape)
(2) Why is the function argument not used to set the initial value of showMeasuringTape or measuringTapeVisible?
The text was updated successfully, but these errors were encountered:
Related to code review #173.
Here's the code in question:
(1) Why are there 2 properties related to visibility of the measuring tape? (measuringTapeVisible, showMeasuringTape)
(2) Why is the function argument not used to set the initial value of
showMeasuringTape
ormeasuringTapeVisible
?The text was updated successfully, but these errors were encountered: