]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/PrimitiveUtils.hxx
Work around apparent OSG 3.2.0 normal binding bug.
[simgear.git] / simgear / scene / util / PrimitiveUtils.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2009 Tim Moore
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef SIMGEAR_PRIMITIVEUTILS_HXX
23 #define SIMGEAR_PRIMITIVEUTILS_HXX 1
24
25 #include <osg/Vec3>
26 #include <osg/Drawable>
27
28 namespace simgear
29 {
30 struct Primitive
31 {
32     int numVerts;
33     osg::Vec3 vertices[4];
34 };
35
36 /**
37  * Given a drawable and a primitive index (as returned from OSG
38  * intersection queries), get the coordinates of the primitives
39  * vertices.
40  */
41 Primitive getPrimitive(osg::Drawable* drawable, unsigned primitiveIndex);
42 }
43 #endif