Skip to content
Snippets Groups Projects
Commit e12ecaa7 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

set line width = 1 for the lasso zoom

parent 80759a8d
No related branches found
No related tags found
No related merge requests found
// $Id: Opengl_Window.cpp,v 1.17 2001-08-11 23:28:31 geuzaine Exp $ // $Id: Opengl_Window.cpp,v 1.18 2001-10-06 09:21:47 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
#include "Numeric.h" #include "Numeric.h"
...@@ -62,6 +62,7 @@ void Opengl_Window::draw() { ...@@ -62,6 +62,7 @@ void Opengl_Window::draw() {
glColor3f(1.,1.,1.); glColor3f(1.,1.,1.);
glBlendFunc(GL_ONE_MINUS_DST_COLOR, GL_ZERO); glBlendFunc(GL_ONE_MINUS_DST_COLOR, GL_ZERO);
glEnable(GL_BLEND); glEnable(GL_BLEND);
glLineWidth(1);
glBegin(GL_LINE_STRIP); glBegin(GL_LINE_STRIP);
glVertex2d(ZOOM_X0, ZOOM_Y0); glVertex2d(ZOOM_X0, ZOOM_Y0);
glVertex2d(ZOOM_X1, ZOOM_Y0); glVertex2d(ZOOM_X1, ZOOM_Y0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment