Exemplo n.º 1
0
 /**
  * Disable a plotting style
  */
 public void disable_style(PlotStyleMask style)
 {
     this._style &= ~((int)style);
 }
Exemplo n.º 2
0
 /**
  * Enable a plotting style
  */
 void enable_style(PlotStyleMask style)
 {
     this._style |= (int)style;
 }