Coin  4.0.3
Coin3D core library
Loading...
Searching...
No Matches
SoNormalBundle.h
1#ifndef COIN_SONORMALBUNDLE_H
2#define COIN_SONORMALBUNDLE_H
3
4/**************************************************************************\
5 * Copyright (c) Kongsberg Oil & Gas Technologies AS
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * Neither the name of the copyright holder nor the names of its
20 * contributors may be used to endorse or promote products derived from
21 * this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34\**************************************************************************/
35
36#include <Inventor/bundles/SoBundle.h>
37#include <Inventor/misc/SoNormalGenerator.h>
38#include <Inventor/elements/SoGLNormalElement.h>
39
40class SoNormalBundleP;
41
42class COIN_DLL_API SoNormalBundle : public SoBundle {
43public:
44 SoNormalBundle(SoAction * action, SbBool forrendering);
46
47 SbBool shouldGenerate(int numneeded);
48 void initGenerator(int initnum = 100);
49 void beginPolygon(void);
50 void polygonVertex(const SbVec3f & v);
51 void endPolygon(void);
52
53 void triangle(const SbVec3f & p1,
54 const SbVec3f & p2,
55 const SbVec3f & p3);
56 void generate(int startindex = 0,
57 SbBool addtostate = TRUE);
58 const SbVec3f * getGeneratedNormals(void) const;
59 int getNumGeneratedNormals(void) const;
60 void set(int32_t num, const SbVec3f * normals);
61 const SbVec3f & get(int index) const;
62 void send(int index) const;
63
64 SoNormalGenerator * generator; // SoINTERNAL public
65
66private:
67 const SoNormalElement * elem;
68 const SoGLNormalElement * glelem;
69 SoNode * node;
70 SoNormalBundleP * pimpl; // for future use
71};
72
73
74#endif // !COIN_SONORMALBUNDLE_H
The SbVec3f class is a 3 dimensional vector with floating point coordinates.
Definition SbVec3f.h:51
The SoAction class is the base class for all traversal actions.
Definition SoAction.h:77
The SoBundle class is the superclass for all bundle classes.
Definition SoBundle.h:42
The SoGLNormalElement class is yet to be documented.
Definition SoGLNormalElement.h:38
The SoNode class is the base class for nodes used in scene graphs.
Definition SoNode.h:56
The SoNormalBundle class simplifies normal handling.
Definition SoNormalBundle.h:42
The SoNormalElement class is yet to be documented.
Definition SoNormalElement.h:40
The SoNormalGenerator class is used to generate normals.
Definition SoNormalGenerator.h:41