/* * D_erase() * Erases the window on scree. Does not affect window contents list. */ #include #include #include #include #include void D_erase(const char *color) { double t, b, l, r; int colorindex; D_get_dst(&t, &b, &l, &r); /* Parse and select background color */ colorindex = D_parse_color(color, 0); D_use_color(colorindex); /* Do the plotting */ R_box_abs(l, t, r, b); }