|
Revision 2225, 356 bytes
(checked in by robert, 10 years ago)
|
|
Added Inventor plugin, submitted by Sean Spicer, Written by Vivek (c) Magic-Earth.
To compile in do a setenv/export USE_COIN or USE_INVENTOR.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Rev | Line | |
|---|
| [2225] | 1 | #ifndef _GROUPSOLOD_H_ |
|---|
| 2 | #define _GROUPSOLOD_H_ |
|---|
| 3 | |
|---|
| 4 | #include <Inventor/nodes/SoLOD.h> |
|---|
| 5 | #include <Inventor/nodes/SoSubNode.h> |
|---|
| 6 | |
|---|
| 7 | class GroupSoLOD : public SoLOD |
|---|
| 8 | { |
|---|
| 9 | SO_NODE_HEADER(GroupSoLOD); |
|---|
| 10 | |
|---|
| 11 | public: |
|---|
| 12 | GroupSoLOD(); |
|---|
| 13 | static void initClass(); |
|---|
| 14 | |
|---|
| 15 | protected: |
|---|
| 16 | virtual void callback(SoCallbackAction *action); |
|---|
| 17 | |
|---|
| 18 | private: |
|---|
| 19 | virtual ~GroupSoLOD(); |
|---|
| 20 | }; |
|---|
| 21 | |
|---|
| 22 | #endif |
|---|