FACT++  1.0
void MGImage::DrawBox ( UChar_t *  buf,
int  w,
int  h,
Float_t  x1,
Float_t  y1,
Float_t  x2,
Float_t  y2,
UChar_t  col,
Int_t  style = 1 
)
static

Definition at line 311 of file MGImage.cc.

References DrawLine().

Referenced by DisableSyncMode(), and FilterLed::DrawBox().

312 {
313  DrawLine(buf, w, h, x1, y1, x2, y1, col, style);
314  DrawLine(buf, w, h, x1, y2, x2, y1, col, style);
315  DrawLine(buf, w, h, x1, y1, x1, y2, col, style);
316  DrawLine(buf, w, h, x2, y1, x2, y2, col, style);
317 }
static void DrawLine(UChar_t *buf, int w, int h, Float_t x1, Float_t y1, Float_t x2, Float_t y2, UChar_t col, Int_t style=1)
Definition: MGImage.cc:279

+ Here is the call graph for this function:

+ Here is the caller graph for this function: