diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-11-30 18:57:39 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-11-30 18:57:39 +0100 |
| commit | bc3bbb7ca028db377ec4b2acbe74d8f2c8a5c149 (patch) | |
| tree | 3670ec966911a7a920e65e9f440bca72aa002828 /src/drivers/PostScript/Fl_PostScript.cxx | |
| parent | 67817f696cf8ab47f6f4bee89313367cf0462cea (diff) | |
Remove useless fl_matrix member variable of class Fl_Graphics_Driver
Diffstat (limited to 'src/drivers/PostScript/Fl_PostScript.cxx')
| -rw-r--r-- | src/drivers/PostScript/Fl_PostScript.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/PostScript/Fl_PostScript.cxx b/src/drivers/PostScript/Fl_PostScript.cxx index bd8994c35..8e6dff87f 100644 --- a/src/drivers/PostScript/Fl_PostScript.cxx +++ b/src/drivers/PostScript/Fl_PostScript.cxx @@ -1241,11 +1241,11 @@ void Fl_PostScript_Graphics_Driver::rtl_draw(const char* str, int n, int x, int } void Fl_PostScript_Graphics_Driver::concat(){ - clocale_printf("[%g %g %g %g %g %g] CT\n", fl_matrix->a , fl_matrix->b , fl_matrix->c , fl_matrix->d , fl_matrix->x , fl_matrix->y); + clocale_printf("[%g %g %g %g %g %g] CT\n", m.a , m.b , m.c , m.d , m.x , m.y); } void Fl_PostScript_Graphics_Driver::reconcat(){ - clocale_printf("[%g %g %g %g %g %g] RCT\n" , fl_matrix->a , fl_matrix->b , fl_matrix->c , fl_matrix->d , fl_matrix->x , fl_matrix->y); + clocale_printf("[%g %g %g %g %g %g] RCT\n" , m.a , m.b , m.c , m.d , m.x , m.y); } ///////////////// transformed (double) drawings //////////////////////////////// |
