jorgepiloto / lamberthub

A set of Lambert's problem solvers
GNU General Public License v3.0
47 stars 5 forks source link

Rename boolean parameters #35

Open jorgepiloto opened 3 years ago

jorgepiloto commented 3 years ago

💻 Feature request: rename boolean parameters

All of the solvers accept the following parameters prograde=True and low_path=True at the moment. However, it would be more convenient to rename those as is_prograde=True and is_low_path=True. These lead to the following type of workflow:

if is_prograde ...
if is_low_path ...

which is much more readable than the actual names being used.