Previous: inqli Up: ../plot79_i.html Next: inqlw


INQLS

       SUBROUTINE  INQLS (LSTYLE)
 C$    (Inquire Line Style)
 C$    Return  the  current  value  of  the  line  style.   It  is
 C$    specified by an  integer in the  range 1..MAXINT (MAXINT  =
 C$    largest integer  on host  computer).  Values  in the  range
 C$    1..9 are predefined.  Values 10..MAXINT are treated as dash
 C$    pattern specifications, with individual digits specifying a
 C$    mark or space.  The acceptable values are as follows:
 C$
 C$    1.......Solid line (default)
 C$    2.......Dashed line (- - - - - - - -) (32)
 C$    3-9.....Hardware dependent (if available)
 C$            Software simulated as follows:
 C$            3 (-  -  -  -  -  -  -  -  -  - )     (34)
 C$            4 (-- -- -- -- -- -- -- -- -- -- )    (52)
 C$            5 (--  --  --  --  --  --  --  )      (54)
 C$            6 (--    --    --    --    --    )    (56)
 C$            7 (---- ---- ---- ---- ---- ---- )    (72)
 C$            8 (----  ----  ----  ----  ----  )    (74)
 C$            9 (----    ----    ----    ----    )  (76)
 C$
 C$    For values  larger  than  10, the  digits  are  interpreted
 C$    according to the following table:
 C$
 C$    0,1     point          invisible,visible
 C$    2,3     very short     invisible,visible
 C$    4,5     short          invisible,visible
 C$    6,7     medium         invisible,visible
 C$    8,9     long           invisible,visible
 C$
 C$    Note that even digits correspond to spaces, and odd  digits
 C$    to marks.   A  pattern  will  normally  be  represented  by
 C$    alternating odd and even digits, but successive odd  digits
 C$    or even digits may be specified to accumulate mark or space
 C$    lengths of non-standard sizes.
 C$
 C$    The sizes "very short"  etc depend on the  values set in  a
 C$    DATA statement below.   They are  currently set  as -,  --,
 C$    ----, and --------, where "-" represents a distance 0f 0.01
 C$    units in NDC  space.  A  point has zero  length.  The  dash
 C$    patterns above are followed by the equivalent integer value
 C$    which defines them.  Some other examples are:
 C$
 C$    7212 ---- . ---- . ---- . ---- .
 C$    1212 . . . . . . . . . . . . . .
 C$    1414 .  .  .  .  .  .  .  .  .
 C$    53212 --- . --- . --- . --- . --- .
 C$    72125212 ---- . -- . ---- . -- . ---- . -- . ----
 C$
 C$    (01-APR-82)