Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoGradientBackground.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23
24#ifndef _SO_GRADIENT_BACKGROUND_H_
25#define _SO_GRADIENT_BACKGROUND_H_
26
27#include <Inventor/fields/SoSFColor.h>
28#include <Inventor/fields/SoSFBool.h>
29
30#include <Inventor/SbPImpl.h>
31#include <Inventor/nodes/SoBackground.h>
32
33SO_PIMPL_PUBLIC_DECLARATION(SoGradientBackground)
34
35
87class SoGradientBackground : public SoBackground {
88
89 SO_PIMPL_PUBLIC_HEADER(SoGradientBackground)
90 SO_NODE_HEADER(SoGradientBackground);
91
92 public:
93 // Fields:
94 //
111
116
117 private:
118 // Initializes this class for use in scene graphs. This
119 // should be called after database initialization and before
120 // any instance of this node is constructed.
121 static void initClass();
122 static void exitClass();
123
124 private:
125 // Implement render action
126 // We will inherit all other action methods from SoNode.
127 // We don't need a doAction because this node has no effect
128 // on traversal state (or at least it shouldn't :-).
129 virtual void GLRender(SoGLRenderAction *action);
130
131 private:
132 // Destructor. Protected to keep people from trying to delete
133 // nodes, rather than using the reference count mechanism.
134 virtual ~SoGradientBackground();
135
136private:
137 void commonConstructor();
138 const SbColor interpColor( float t, SbColor &c0, SbColor &c1 ) const;
139};
140
141#endif //SoGradientBackground
142
Color vector class.
Definition SbColor.h:82
Renders a scene graph using Open Inventor's Render Engine.
Gradient background node.
SoSFBool swapColors
Reverse colors (default is FALSE).
SoSFColor color0
First color in gradient (0.7 0.7 0.8 by default).
SoSFColor color1
Second color in gradient (0.0 0.1 0.3 by default).
SoGradientBackground()
Creates a background gradient node with default settings.
Field containing a single Boolean value.
Definition SoSFBool.h:79
Field containing an RGB color.
Definition SoSFColor.h:82