We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Small refactor. Right now, to create a PotentialSource object, we have to do
ps = koffi.PotentialSource() ps.build_from_images_and_xy_positions(pixel_positions, mjds)
it would be much nicer if we could do it like this
# call build directy ps1 = koffi.PotentialSource() ps1.build(pixel_positions, mjds, format = "xy") # build from constructor ps2 = koffi.PotentialSource(pixel_positions, mjds, format="xy")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Small refactor.
Right now, to create a PotentialSource object, we have to do
it would be much nicer if we could do it like this
The text was updated successfully, but these errors were encountered: