1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
\subsection{Draw constant parameter lines in a surface
using piecewise straight lines.}
\funclabel{s1237}
\begin{minipg1}
Draw constant parameter lines in a surface.
The distance between the surface and the
straight lines is less than a tolerance epsge. Also see NOTE!
\end{minipg1} \\ \\
SYNOPSIS\\
\>void s1237(\begin{minipg3}
{\fov surf}, {\fov numline1}, {\fov numline2}, {\fov epsge}, {\fov stat})
\end{minipg3}\\[0.3ex]
\>\> SISLSurf \> *{\fov surf};\\
\>\> int \> {\fov numline1};\\
\>\> int \> {\fov numline2};\\
\>\> double \> {\fov epsge};\\
\>\> int \> *{\fov stat};\\
\\
ARGUMENTS\\
\>Input Arguments:\\
\>\> {\fov surf}\> - \> \begin{minipg2}
Pointer to the surface.
\end{minipg2}\\
\>\> {\fov numline1}\> - \> \begin{minipg2}
Number of constant parameter lines to be drawn in the first
parameter direction.
\end{minipg2}\\[0.3ex]
\>\> {\fov numline2}\> - \> \begin{minipg2}
Number of constant parameter lines to be drawn in the
second parameter direction.
\end{minipg2}\\[0.3ex]
\>\> {\fov epsge}\> - \> \begin{minipg2}
The maximal distance allowed between the drawn curves
and the surface.
\end{minipg2} \\[0.8ex]
\\
\>Output Arguments:\\
\>\> {\fov stat} \> - \> Status messages\\
\>\>\>\>\> $> 0$ : warning\\
\>\>\>\>\> $= 0$ : ok\\
\>\>\>\>\> $< 0$ : error\\
\\
NOTE\\
\>\begin{minipg6}
This function calls s6drawseq() which
is device dependent. Before using the function make sure
you have a version of s6drawseq()
interfaced to your graphic package.
More about s6drawseq() on page~\pageref{s6drawseq}.
\end{minipg6}
\newpagetabs
EXAMPLE OF USE\\
\> \{ \\
\>\> SISLSurf \> *{\fov surf};\\
\>\> int \> {\fov numline1};\\
\>\> int \> {\fov numline2};\\
\>\> double \> {\fov epsge};\\
\>\> int \> {\fov stat};\\
\>\> \ldots \\
\>\>s1237(\begin{minipg4}
{\fov surf}, {\fov numline1}, {\fov numline2}, {\fov epsge}, \&{\fov stat});
\end{minipg4}\\
\>\> \ldots \\
\> \}
\end{tabbing}
|