May 1, 2001 #1 mm06905 Automotive May 1, 2001 6 US How do you stop CATIA's hpgl2 plot program from setting the plotter into it best mode of operating. There is no option for changing this. No matter what the plotter is set to, Catia puts in the best mode and its slow.
How do you stop CATIA's hpgl2 plot program from setting the plotter into it best mode of operating. There is no option for changing this. No matter what the plotter is set to, Catia puts in the best mode and its slow.
May 17, 2001 #2 Guest You have to remove all QL100 commands from the hpgl2 file. This can be done by the following script: cp $CATOUT $CATOUT.orig cat $CATOUT | fold -w 80 >/tmp/catout.$$ head -1 /tmp/catout.$$ | sed 's/QL100//g' >/tmp/catout.$$.ok tail +2 /tmp/catout.$$ >>/tmp/catout.$$.ok cp /tmp/catout.$$.ok $CATOUT Call this script from your plot_cfg file before sending the hpgl2 file to the plotter. Upvote 0 Downvote
You have to remove all QL100 commands from the hpgl2 file. This can be done by the following script: cp $CATOUT $CATOUT.orig cat $CATOUT | fold -w 80 >/tmp/catout.$$ head -1 /tmp/catout.$$ | sed 's/QL100//g' >/tmp/catout.$$.ok tail +2 /tmp/catout.$$ >>/tmp/catout.$$.ok cp /tmp/catout.$$.ok $CATOUT Call this script from your plot_cfg file before sending the hpgl2 file to the plotter.
May 24, 2001 Thread starter #3 mm06905 Automotive May 1, 2001 6 US This post saved me many hours of time. All I had to do was a few tweaks for my enviroment. Thank you many times marktwain . mm06905 Upvote 0 Downvote
This post saved me many hours of time. All I had to do was a few tweaks for my enviroment. Thank you many times marktwain . mm06905