summaryrefslogtreecommitdiff
path: root/ipl/gprocs/rgbrec.icn
blob: 48092b1a69b0ef38e2dacf3ba5cd20fcc27cbda5 (plain)
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
############################################################################
#
#	File:     rgbrec.icn
#
#	Subject:  Procedure to produce RGB record from color specification
#
#	Author:   Ralph E. Griswold
#
#	Date:     May 2, 2001
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  This procedure produces a three-field RGB record from an Icon color
#  specification.  It fails id its argument is not a valid color specifi-
#  cation.
#
############################################################################
#
#  Requires:  Version 9 graphics
#
############################################################################

record rgb(r, g, b)

procedure rgbrec(s)
   local result

   s := ColorValue(s) | fail

   result := rgb()

   s ? {
      result.r := tab(upto(','))
      move(1)
      result.g := tab(upto(','))
      move(1)
      result.b := tab(0)
      }

   return result

end