Hi guys,
Say I have 4 spheres, and I want to make the intersection part disappear. Is
there any easy way to only show the slice instead of the overlapping parts.
Here is the code:
from visual import *
sphere(pos=(0,2,0),opacity = 0.2,color= color.white, radius =2)
for t in arange(-pi,pi,2*pi/3):
sphere(pos = (1.2*cos(t),0,1.2*sin(t)), opacity = 0.2,color=
color.white, radius = 2)
Any input will be appreciated.
Best
Ran
|