-
-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
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
PR for getting pixel_edges along with pixel_values in axis_world_coords #174
PR for getting pixel_edges along with pixel_values in axis_world_coords #174
Conversation
Thanks for the pull request @yashrsharma44! Everything looks great! |
Hello @yashrsharma44! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found: There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2019-05-23 14:06:40 UTC |
Hi @yashrsharma44. This looks good. I left a couple minor formatting comments and then assuming this passing the online tests, I think it's ready to approve. |
Let me add some tests for the helper functions. |
Hey @DanRyanIrish , do we need to mention about this new feature in the docs, or shall this go unnoticed? |
I think this would be great to add this to the docs. It may be a very useful feature for users. It doesn't have to be too long. Just a couple sentences at the end of the Coordinate Transformation section saying some like: >>> my_cube.axis_world_coords(edges=True)
output... |
The tests are failing because there are some blank lines containing spaces: |
The blank spaces that I added between the docstrings are creating the pep8 issue |
Right. But it's not that the lines exist. It's that they contain spaces. You just need to delete those spaces without removing the empty line and that should fix it. |
Sure, I would make those changes. |
Co-Authored-By: Stuart Mumford <[email protected]>
Great work @yashrsharma44 |
This PR adds a new functionality for returning
pixel_edges
along withpixel_values
fromaxis_world_coords
.Things to TODO:
Ping @DanRyanIrish @Cadair
Fixes part of the stagnant PR #172