00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00030 #ifndef _SO_COMPLEX_SHAPE_H
00031 #define _SO_COMPLEX_SHAPE_H
00032
00033 #include <Inventor/nodes/SoSubNode.h>
00034
00035 class SoChildList;
00036
00038
00044 class SoComplexShape : public SoNode {
00045
00046 SO_NODE_ABSTRACT_HEADER(SoComplexShape);
00047
00048 public:
00049
00050 static void initClass();
00051
00052 virtual SoChildList *getChildren() const;
00053
00054 virtual void copyContents(const SoFieldContainer *FC,
00055 SbBool copyConnection);
00056
00057 protected:
00058
00059
00060
00061
00062
00063
00064
00065 SoComplexShape();
00066
00067 virtual ~SoComplexShape();
00068
00070 virtual void generateChildren() { }
00071
00072
00073 virtual void doAction(SoAction *action);
00074 virtual void getBoundingBox(SoGetBoundingBoxAction *action);
00075 virtual void GLRender(SoGLRenderAction *action);
00076 virtual void handleEvent(SoHandleEventAction *action);
00077 virtual void pick(SoPickAction *action);
00078 virtual void callback(SoCallbackAction *action);
00079 virtual void getMatrix(SoGetMatrixAction *action);
00080
00082 SoChildList *children;
00083
00084
00085 };
00086
00087 #endif // End of _SO_COMPLEX_SHAPE_H
00088