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
Changing any of the settings requires an attribute override after instantiation, e.g.
maker=GeometryMaker()
maker.track_components=True
This is a little cumbersome for the end user, but also limits exposure of the options available to the user. It would be prefferable to be able to do e.g.
This should be repeated for all attributes of all classes where we expect the user (including other objects in the code which use a given object as users) may wish the change the setting.
The text was updated successfully, but these errors were encountered:
The init for GeometryMaker currently looks like this:
Changing any of the settings requires an attribute override after instantiation, e.g.
This is a little cumbersome for the end user, but also limits exposure of the options available to the user. It would be prefferable to be able to do e.g.
To allow for this, the init would look like this:
This should be repeated for all attributes of all classes where we expect the user (including other objects in the code which use a given object as users) may wish the change the setting.
The text was updated successfully, but these errors were encountered: