home *** CD-ROM | disk | FTP | other *** search
- 'This program places the lines on different layers according to the
- 'type of line they are
- 'j is the entity number
- for j = 1 to sys(9)
- 'sys(9) is the number of entities
- getattr j, type,select
- if type = 1 then
- Entity(j)
- style1 = Sys(91)
- if style1=0 then
- putattr j,type,select, 2
- endif
- if style1=1 then
- putattr j,type,select, 3
- endif
- if style1=2 then
- putattr j,type,select, 4
- endif
- if style1=3 then
- putattr j,type,select, 5
- endif
- if style1=4 then
- putattr j,type,select, 6
- endif
- if style1=5 then
- putattr j,type,select, 7
- endif
- if style1=6 then
- putattr j,type,select, 8
- endif
- if style1=7 then
- putattr j,type,select, 9
- endif
- if style1=8 then
- putattr j,type,select, 10
- endif
- if style1=9 then
- putattr j,type,select, 11
- endif
- if style1=10 then
- putattr j,type,select, 12
- endif
- if style1=11 then
- putattr j,type,select, 13
- endif
- if style1=12 then
- putattr j,type,select, 14
- endif
- endif
- next
-
-