function sSurf( x,y,z )
% sSurf plots transparent mesh
%      sMesh( x,y,z )
%      x,y,z - are rectangular matrices, 
%       rows containing points along meridians
%       columns containing points along parallels
%
%  see also: sPlotSurf

[m,n] = size(x);

hold on;
for i=1:m,
   plot3( x(i,:), y(i,:), z(i,:));
end;

for i=1:n,
   plot3( x(:,i), y(:,i), z(:,i));
end;

hold off;
