1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include "sys-defines.h"
- #include "extern.h"
- bool
- _pl_t_erase_page (S___(Plotter *_plotter))
- {
-
- _write_string (_plotter->data, "\033\014");
- _plotter->tek_mode = TEK_MODE_ALPHA;
-
-
- _pl_t_set_bg_color (S___(_plotter));
- return true;
- }
|