Code_TYMPAN  4.4.0
Industrial site acoustic simulation
OGLLine.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) <2012> <EDF-R&D> <FRANCE>
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation; either version 2 of the License, or
6  * (at your option) any later version.
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10  * See the GNU General Public License for more details.
11  * You should have received a copy of the GNU General Public License along
12  * with this program; if not, write to the Free Software Foundation, Inc.,
13  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
14  */
15 
16 /*
17  *
18  */
19 
20 #include "OGLLine.h"
21 
22 #if _WIN32
23  #include <windows.h>
24 #endif //_WIN32
25 
26 #include <GL/gl.h>
27 
28 #include "Tympan/core/color.h"
30 
32 
34 
35 void OGLLine::drawLine(const OPoint3D& point1, const OPoint3D& point2, const OColor& oColor,
36  float lineWidth) const
37 {
38  // Couleur de la ligne
39  glColor3fv(oColor);
40 
41  // Taille de la ligne
42  glLineWidth(lineWidth);
43 
44  // On dessine
45  glBegin(GL_LINES);
46  glVertex3d(point1._x, point1._y, point1._z);
47  glVertex3d(point2._x, point2._y, point2._z);
48  // Fin
49  glEnd();
50 }
All base classes related to 3D manipulation.
Definition: color.h:31
double _y
y coordinate of OCoord3D
Definition: 3d.h:283
double _z
z coordinate of OCoord3D
Definition: 3d.h:284
double _x
x coordinate of OCoord3D
Definition: 3d.h:282
OGLLine()
Definition: OGLLine.cpp:31
virtual ~OGLLine()
Definition: OGLLine.cpp:33
void drawLine(const OPoint3D &point1, const OPoint3D &point2, const OColor &oColor, float lineWidth) const
Definition: OGLLine.cpp:35
The 3D point class.
Definition: 3d.h:487