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
BUG #26: If masking reduces the bounds of a dataset, plots look incom… #27
Conversation
Data and baselines: |
@doutriaux1 @aashish24 @sankhesh Please review. |
@doutriaux1 It turned out that what I thought was a bug in VTK was a feature. 😄 So no VTK update is required for this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM except the debug variable value
@@ -14,6 +14,25 @@ | |||
import sys | |||
import numbers | |||
|
|||
_DEBUG_VTK = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't _DEBUG_VTK
be set to False
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sankhesh Thanks, I will remove the debug code.
…plete. We use 'vtk_dataset_bounds_no_mask', the dataset bounds before masking instead of the dataset bounds for fitToViewport.
6dde1e0
to
0f98650
Compare
@doutriaux1 @aashish24 Ready to merge? |
i need to run the tests and look at it, sorry I'm on another project today. |
@danlipsa looks reasonable to me. |
@@ -596,8 +598,9 @@ def plot(self, data1, data2, template, gtype, gname, bg, *args, **kargs): | |||
ren = kargs["renderer"] | |||
|
|||
vtk_backend_grid = kargs.get("vtk_backend_grid", None) | |||
vtk_dataset_bounds_no_mask = kargs.get("vtk_dataset_bounds_no_mask", None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
None is returned by default but I am okay with more specifics.
@sankhesh @doutriaux1 can we merge this branch? |
let me run it, sorry about that. |
…plete.
We use 'vtk_dataset_bounds_no_mask', the dataset bounds before masking
instead of the dataset bounds for fitToViewport.