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
Hi, I found a strange thing when running the spline_draw example.
Below is the officially provided code (vedo\examples\advanced\spline_draw.py) which works fine.
But when I changed the pic cmap to binary_r, I could no longer select the points on the image because the event.actor became None.
I am not sure if this is a feature or bug, but it seems not making sense if the pickability depends on the cmap. Any information would be appreciated!
The text was updated successfully, but these errors were encountered:
This is quite strange ! I don't understand why that happens.. one possible way around is to create a quad mesh from the image, and that works:
pic.cmap("binary_r") pic = pic.tomesh()
Sorry, something went wrong.
This is quite strange ! I don't understand why that happens.. one possible way around is to create a quad mesh from the image, and that works: pic.cmap("binary_r") pic = pic.tomesh()
Thank you and I'll try!
No branches or pull requests
Hi, I found a strange thing when running the spline_draw example.
Below is the officially provided code (vedo\examples\advanced\spline_draw.py) which works fine.
But when I changed the pic cmap to binary_r, I could no longer select the points on the image because the event.actor became None.
I am not sure if this is a feature or bug, but it seems not making sense if the pickability depends on the cmap. Any information would be appreciated!
The text was updated successfully, but these errors were encountered: