Hello,
I'm trying to plot three spheres using set parametric.
At the moment, I have this small script:
#####
set parametric; set angle degree
fx(u,v)=0.4*cos(u)*cos(v)+0.34
fy(u,v)=0.4*sin(u)*cos(v)+0.366
fz(v)=0.4*sin(v)
gx(u,v)=0.7*cos(u)*cos(v)
gy(u,v)=0.7*sin(u)*cos(v)
gz(v)=0.7*sin(v)
hx(u,v)=0.5*cos(u)*cos(v)
hy(u,v)=0.5*sin(u)*cos(v)
hz(v)=0.5*sin(v)
splot fx(u,v),fy(u,v),fz(v),\
gx(u,v),gy(u,v),gz(v),\
hx(u,v),hy(u,v),hz(v)
######
Is there any way of independently changing the ranges of the dummy
variables for each sphere?
Thanks,
Clement Law
|