changeset 13758:9586dc4e838b

double the size of '.' markers produced by the OpenGL renderer * gl-render.cc (opengl_renderer::init_marker): Double size of '.' markers.
author John W. Eaton <jwe@octave.org>
date Wed, 26 Oct 2011 22:33:27 -0400
parents 1e81e2e30af3
children c4b6ea833fa5
files src/gl-render.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gl-render.cc	Wed Oct 26 17:36:54 2011 -0400
+++ b/src/gl-render.cc	Wed Oct 26 22:33:27 2011 -0400
@@ -2887,7 +2887,7 @@
 
         glBegin (GL_POLYGON);
         for (double ang = 0; ang < (2*M_PI); ang += ang_step)
-          glVertex2d (sz*cos(ang)/6, sz*sin(ang)/6);
+          glVertex2d (sz*cos(ang)/3, sz*sin(ang)/3);
         glEnd ();
       }
       break;