1POINT(3NCARG) NCAR GRAPHICS POINT(3NCARG)
2
3
4
6 POINT - draws a point at a specified position in the user coordinate
7 system.
8
10 CALL POINT (PX,PY)
11
13 #include <ncarg/ncargC.h>
14
15 void c_point (float px, float py)
16
18 PX (an input expression of type REAL) defines the X user
19 coordinate where the dot is to be drawn.
20
21 PY (an input expression of type REAL) defines the Y user
22 coordinate where the dot is to be drawn.
23
25 The C-binding argument descriptions are the same as the FORTRAN
26 argument descriptions.
27
29 If one desires a filled dot of arbitrary size see the routine NGDOTS.
30
31 The GKS routine GPM can also be used to draw a dot in world
32 coordinates; however, NCAR Graphics user coordinates allow for mirror
33 imaging of axes and logarithmic axes which GKS does not. See the SCD
34 User Doc "NCAR Graphics Fundamentals, UNIX Version" for a description
35 of these coordinate systems.
36
38 Use the ncargex command to see the following relevant examples: tareas.
39
41 To use POINT or c_point, load the NCAR Graphics libraries ncarg,
42 ncarg_gks, and ncarg_c, preferably in that order.
43
45 Online: gpm, gsmk, gsmksc, gscr, gspmci, spps, spps_params, plotif,
46 ngdots, points, ncarg_cbind
47
48 Hardcopy: NCAR Graphics Fundamentals, UNIX Version; User's Guide for
49 NCAR GKS-0A Graphics
50
52 Copyright (C) 1987-2009
53 University Corporation for Atmospheric Research
54 The use of this Software is governed by a License Agreement.
55
56
57
58UNIX March 1993 POINT(3NCARG)