1CURVE3(3NCARG) NCAR GRAPHICS CURVE3(3NCARG)
2
3
4
6 CURVE3 - Draws the projection of a curve defined by a sequence of
7 points in 3-space.
8
10 CALL CURVE3 (U,V,W,N)
11
13 #include <ncarg/ncargC.h>
14
15 void c_curve3 (float *u, float *v, float *w, int n)
16
18 U,V,W (input arrays, dimensioned at least N, of type REAL)
19 contain the U, V, and W coordinates, respectively, of the
20 points defining the curve whose projection is to be drawn.
21
22 N (an input expression of type INTEGER) is the number of
23 points defining the curve.
24
25 Curves drawn by CURVE3 are drawn in the current polyline color, as
26 determined by the last call to the GKS routine GSPLCI; by default,
27 color index 1 is used. Line width is determined by the last call to
28 the GKS routine GSLWSC; by default, the line width scale factor is 1.
29
31 The C-binding argument descriptions are the same as the FORTRAN
32 argument descriptions.
33
35 Use the ncargex command to see the following relevant examples: tthree,
36 fthex03.
37
39 To use CURVE3 or c_curve3, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 Online: threed, fence3, frst3, line3, perim3, point3, psym3, pwrz,
44 pwrzt, set3, threed, tick3, tick43, vect3, ncarg_cbind.
45
46 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
47
49 Copyright (C) 1987-2009
50 University Corporation for Atmospheric Research
51 The use of this Software is governed by a License Agreement.
52
53
54
55UNIX March 1993 CURVE3(3NCARG)