autoplant_user
09-18-2006, 10:49 AM
I modified the following layers to meet my company's needs:
(list "I-PROC-MAIP" 9 (At_GetLineType "CONTINUOUS") "_.PLINE" 0.05) ;10 Major process lines
(list "I-PROC-MAIS" 2 (At_GetLineType "CONTINUOUS") "_.LINE" 0.03) ;11 Minor process lines
(list "I-PROC-MAPE" 13 (At_GetLineType "CONTINUOUS") "_.PLINE" nil) ;12 Existing major lines
(list "I-PROC-MASE" 13 (At_GetLineType "CONTINUOUS") "_.LINE" nil) ;13 Existing minor lines
(list "I-PROC-FTR1" 1 (At_GetLineType "PHANTOM" ) "_.PLINE" 0.05) ;14 Future major lines
How do I change the code so the major process lines do not get broken by minor/existing/future lines when I perform the auto line break command? Here is what I did so far, but it is not working properly.
(setq lbrk_prior '("I-PROC-MAIP"
"I-PROC-MAIS"
"I-CTRL-IDE2"
"inst-l1"
"I-INST-ELEC"
"inst-l3"
"I-PROC-EQP4"
"I-PROC-MAPE"
"I-PROC-MASE"
"I-PROC-FTR1"
)
lbrk_ang 0.0 ;pi/2 for vertical
lbrk_siz 0.5 ;fraction of overall scale factor
)
---END
(list "I-PROC-MAIP" 9 (At_GetLineType "CONTINUOUS") "_.PLINE" 0.05) ;10 Major process lines
(list "I-PROC-MAIS" 2 (At_GetLineType "CONTINUOUS") "_.LINE" 0.03) ;11 Minor process lines
(list "I-PROC-MAPE" 13 (At_GetLineType "CONTINUOUS") "_.PLINE" nil) ;12 Existing major lines
(list "I-PROC-MASE" 13 (At_GetLineType "CONTINUOUS") "_.LINE" nil) ;13 Existing minor lines
(list "I-PROC-FTR1" 1 (At_GetLineType "PHANTOM" ) "_.PLINE" 0.05) ;14 Future major lines
How do I change the code so the major process lines do not get broken by minor/existing/future lines when I perform the auto line break command? Here is what I did so far, but it is not working properly.
(setq lbrk_prior '("I-PROC-MAIP"
"I-PROC-MAIS"
"I-CTRL-IDE2"
"inst-l1"
"I-INST-ELEC"
"inst-l3"
"I-PROC-EQP4"
"I-PROC-MAPE"
"I-PROC-MASE"
"I-PROC-FTR1"
)
lbrk_ang 0.0 ;pi/2 for vertical
lbrk_siz 0.5 ;fraction of overall scale factor
)
---END