Yes, the interpolation algorithms cannot interpolate points when they lie in a vertical plane. If you want to plot a plane plot it as a parametric function. Define these functions: pxy(x,y):vector(x,y,0) pyz(y,z):vector(0,y,z) pxz(x,z):vector(x,0,z) where "vector(a,b,c)" means a column vector with the elements a, b, c. Then plot pxy,pyz,pxz. Richard