|
From: Tatsuro M. <mat...@nu...> - 2005-02-26 00:40:04
|
in "bug for cgm term mono?"
"Tatsuro MATSUOKA <mat...@nu...>"wrote
>When I tested the 'cgm term mono' on wgnuplot 4.0 and 4.1 using the following
>
>set term cgm mono
>set out 'test.cgm'
>test
>set out
>
>Points whose number 4 to 13 is not visible because those colors are white.
In the gnuplot thread in Japan, Prof. Matsuda@Tokyo Denki Univ. reported that the bug above can be
corrected by modification of cgm.trm.
**********************************************
original
if (cgm_monochrome || linecolor == cgm_color)
return;
modified:
if ( cgm_monochrome ){
cgm_color = linecolor = 1;
return;
}
else if (linecolor == cgm_color){
return;
}
***********************************************
I appreciate Prof. Matsuda.
|