summaryrefslogtreecommitdiff
path: root/src/fl_vertex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/fl_vertex.cxx')
-rw-r--r--src/fl_vertex.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/fl_vertex.cxx b/src/fl_vertex.cxx
index 48d9be386..dd7b7aa2e 100644
--- a/src/fl_vertex.cxx
+++ b/src/fl_vertex.cxx
@@ -3,7 +3,7 @@
//
// Portable drawing routines for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2011 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -78,16 +78,6 @@ void Fl_Graphics_Driver::rotate(double d) {
}
}
-/** see fl_scale(double, double) */
-void Fl_Graphics_Driver::scale(double x, double y) {
- mult_matrix(x,0,0,y,0,0);
-}
-
-/** see fl_scale(double) */
-void Fl_Graphics_Driver::scale(double x) {
- mult_matrix(x,0,0,x,0,0);
-}
-
/** see fl_translate() */
void Fl_Graphics_Driver::translate(double x,double y) {
mult_matrix(1,0,0,1,x,y);