1Isosurface(3NCARG) NCAR GRAPHICS Isosurface(3NCARG)
2
3
4
6 Isosurface - Allows the user to draw a perspective view of the surface
7 defined by the equation f(u,v,w)=fiso, where the function f is
8 approximated by a 3-dimensional array of data and fiso is a user-
9 specified "isovalue". Contours created by taking slices in any of three
10 directions through the surface are drawn with hidden portions of the
11 contour lines removed.
12
14 EZISOS - May be called to draw an isosurface.
15
16 ISOSRF - May be called to draw an isosurface.
17
18 ISGETI - Retrieves the current values of various internal parameters
19 affecting the behavior of ISOSRF.
20
21 ISGETR - Retrieves the current values of various internal parameters
22 affecting the behavior of ISOSRF.
23
24 ISSETI - Gives new values to internal parameters.
25
26 ISSETR - Gives new values to internal parameters.
27
28 PWRZI - Plots characters in three-space when using ISOSRF.
29
31 c_ezisos,
32 c_isosrf,
33 c_isgeti,
34 c_isgetr,
35 c_isseti,
36 c_issetr,
37 c_pwrzi
38
40 None.
41
43 To use Isosurface, load the NCAR Graphics libraries ncarg, ncarg_gks,
44 and ncarg_c, preferably in that order.
45
47 The error messages described below can be written to the output unit by
48 routines in the package Isosurface. All of these errors are fatal and
49 cause the user's program to terminate execution (on the other hand, all
50 of the errors are easily avoided).
51
52 ISGETI OR ISGETR - PARAMETER NAME TOO SHORT - x
53 The argument "PNAM", in a call to ISGETI or ISGETR, is only
54 one character long.
55
56 ISGETI OR ISGETR - PARAMETER NAME NOT KNOWN - xx
57 The argument "PNAM", in a call to ISGETI or ISGETR, begins
58 with two characters that do not constitute one of the legal
59 internal parameter names described in the man page
60 isosurface_params.
61
62 ISSETI OR ISSETR - PARAMETER NAME TOO SHORT - x
63 The argument "PNAM", in a call to ISSETI or ISSETR, is only
64 one character long.
65
66 ISSETI OR ISSETR - PARAMETER NAME NOT KNOWN - xx
67 The argument "PNAM", in a call to ISSETI or ISSETR, begins
68 with two characters that do not constitute one of the legal
69 internal parameter names described in the man page
70 isosurface_params.
71
72 ISINIT - INSTALLATION OF ISOSRF IMPROPERLY DONE
73 This error message means that the screen models used to do
74 hidden-line removal have been found to be improperly
75 dimensioned for the system on which the code is being run.
76 About the only way this can happen is if the distributed
77 code is run on a a machine with sixteen-bit words or if the
78 distributed code has been modified incorrectly.
79
81 Online: isosurface_params, ezisos, isgeti, isgetr, isosrf, isseti,
82 issetr, pwrzi, ncarg_cbind
83
84 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
85
87 Copyright (C) 1987-2009
88 University Corporation for Atmospheric Research
89 The use of this Software is governed by a License Agreement.
90
91
92
93UNIX March 1993 Isosurface(3NCARG)