joefromhersey
24.06.2012, 02:37
Hi I am pretty new to AutoCad and need some help plotting 3D surfaces from mathematical functions. I downloaded the 3DPlot utility and followed the instructions from this site: http://www.cadstudio.cz/en/apps/3dplot/.I defined a shape myFunc using:(defun myFunc (x y) (list x y (cos(x)+cos(y))))However when I try to plot using:(3DPlot myFunc -1.0 1.0 0.1 -1.0 1.0 0.1)I get this error:error: bad function: -1.0What am I doing wrong? Also would it be possible for me to get repeating units of the function cos(x)+cos(y)?