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
Is there a way to make an added shape have some transparency? I tried changing the color to a 4-element list, but that didn't work:
view.shape.add_sphere(zcc_point * 10, [1, 0, 1], 1) view.shape.add_cone(point_a * 10, zcc_point * 10, [1, 0.5, 0], 10)
The text was updated successfully, but these errors were encountered:
I am wondering if opacity=0.5 will work view.shape.add_sphere(zcc_point * 10, [1, 0, 1], 1, opacity=0.5)
opacity=0.5
view.shape.add_sphere(zcc_point * 10, [1, 0, 1], 1, opacity=0.5)
I don't have access to nglview now so I am not sure.
Sorry, something went wrong.
Unfortunately, it does not: Shape._make_func.<locals>.make_func.<locals>.func() got an unexpected keyword argument 'opacity'
Shape._make_func.<locals>.make_func.<locals>.func() got an unexpected keyword argument 'opacity'
No branches or pull requests
Is there a way to make an added shape have some transparency? I tried changing the color to a 4-element list, but that didn't work:
The text was updated successfully, but these errors were encountered: