|
From: Hans-Bernhard B. <HBB...@t-...> - 2012-10-08 18:53:34
|
On 08.10.2012 12:49, Clement Law wrote: > 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? Well, there's no particular reason you have to use 'u' and 'v' as-is. You can re-define your functions fx(u,v), or you can call them with arguments other than plain 'u' and 'v': set urange[0:1] set vrange[0:1] splot fx(0.2*u+1,v), fy(0.2*u+1,v), fz(v) etc. |