-
Notifications
You must be signed in to change notification settings - Fork 68
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
boxfill draws outside range #620
Comments
Yes, vtkThresholdFilter is the way to go |
fixed in issue_620_boxfill_level_1_level_2 |
ok don't review just yet ;) ctest is bad |
ok it's good to go! |
@aashish24 yep good to go |
Looking into it.. |
what is level 1 and level 2 means? Is this the elevation? |
The levels represent the minimum level range (level_1) and the maximum level range (level_2). For example, if you have a variable that has a minimum value of 0 and a maximum value of 100. You can use the default setting by setting level_1 = 1e20 and level_2 = 1e20. If you want to set the values by hand you can for example set level_1 = 20 (for the minimum value) and level_2 = 80 for the maximum value. You can also set the specific levels by levels = (0, 20, 35, 40, 75, 100) Example code: a=x.getboxfill('default') a.level_1=1e20 a.level_1=30 a.levels=(0,20,35,40,75,100) # Set the custom ranges Let me know if this isn't clear. From: Aashish Chaudhary <notifications@github.commailto:notifications@github.com> what is level 1 and level 2 means? Is this the elevation? — |
when setting boxfill level_1 and level_2 data outside this range should not be drawn, @aashish24 I guess I should use the threshold filter here, right?
The text was updated successfully, but these errors were encountered: