FreeWRL / FreeX3D 4.3.0
Component_Core.h
1/*
2
3
4X3D Core Component
5
6*/
7
8/****************************************************************************
9 This file is part of the FreeWRL/FreeX3D Distribution.
10
11 Copyright 2009 CRC Canada. (http://www.crc.gc.ca)
12
13 FreeWRL/FreeX3D is free software: you can redistribute it and/or modify
14 it under the terms of the GNU Lesser Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 FreeWRL/FreeX3D is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with FreeWRL/FreeX3D. If not, see <http://www.gnu.org/licenses/>.
25****************************************************************************/
26
27
28#ifndef __FREEWRL_SCENEGRAPH_CORE_H__
29#define __FREEWRL_SCENEGRAPH_CORE_H__
30
31void compile_MetadataInteger (struct X3D_MetadataInteger *node);
32void compile_MetadataDouble (struct X3D_MetadataDouble *node);
33void compile_MetadataFloat (struct X3D_MetadataFloat *node);
34void compile_MetadataSet (struct X3D_MetadataSet *node);
35void compile_MetadataString (struct X3D_MetadataString *node);
36
37
38void compile_MetadataSFBool (struct X3D_MetadataSFBool *node);
39void compile_MetadataSFFloat (struct X3D_MetadataSFFloat *node);
40void compile_MetadataMFFloat (struct X3D_MetadataMFFloat *node);
41void compile_MetadataSFRotation (struct X3D_MetadataSFRotation *node);
42void compile_MetadataMFRotation (struct X3D_MetadataMFRotation *node);
43void compile_MetadataSFVec3f (struct X3D_MetadataSFVec3f *node);
44void compile_MetadataMFVec3f (struct X3D_MetadataMFVec3f *node);
45void compile_MetadataMFBool (struct X3D_MetadataMFBool *node);
46void compile_MetadataSFInt32 (struct X3D_MetadataSFInt32 *node);
47void compile_MetadataMFInt32 (struct X3D_MetadataMFInt32 *node);
48void compile_MetadataSFNode (struct X3D_MetadataSFNode *node);
49void compile_MetadataMFNode (struct X3D_MetadataMFNode *node);
50void compile_MetadataSFColor (struct X3D_MetadataSFColor *node);
51void compile_MetadataMFColor (struct X3D_MetadataMFColor *node);
52void compile_MetadataSFColorRGBA (struct X3D_MetadataSFColorRGBA *node);
53void compile_MetadataMFColorRGBA (struct X3D_MetadataMFColorRGBA *node);
54void compile_MetadataSFTime (struct X3D_MetadataSFTime *node);
55void compile_MetadataMFTime (struct X3D_MetadataMFTime *node);
56void compile_MetadataSFString (struct X3D_MetadataSFString *node);
57void compile_MetadataMFString (struct X3D_MetadataMFString *node);
58void compile_MetadataSFVec2f (struct X3D_MetadataSFVec2f *node);
59void compile_MetadataMFVec2f (struct X3D_MetadataMFVec2f *node);
60void compile_MetadataSFImage (struct X3D_MetadataSFImage *node);
61void compile_MetadataSFVec3d (struct X3D_MetadataSFVec3d *node);
62void compile_MetadataMFVec3d (struct X3D_MetadataMFVec3d *node);
63void compile_MetadataSFDouble (struct X3D_MetadataSFDouble *node);
64void compile_MetadataMFDouble (struct X3D_MetadataMFDouble *node);
65void compile_MetadataSFMatrix3f (struct X3D_MetadataSFMatrix3f *node);
66void compile_MetadataMFMatrix3f (struct X3D_MetadataMFMatrix3f *node);
67void compile_MetadataSFMatrix3d (struct X3D_MetadataSFMatrix3d *node);
68void compile_MetadataMFMatrix3d (struct X3D_MetadataMFMatrix3d *node);
69void compile_MetadataSFMatrix4f (struct X3D_MetadataSFMatrix4f *node);
70void compile_MetadataMFMatrix4f (struct X3D_MetadataMFMatrix4f *node);
71void compile_MetadataSFMatrix4d (struct X3D_MetadataSFMatrix4d *node);
72void compile_MetadataMFMatrix4d (struct X3D_MetadataMFMatrix4d *node);
73void compile_MetadataSFVec2d (struct X3D_MetadataSFVec2d *node);
74void compile_MetadataMFVec2d (struct X3D_MetadataMFVec2d *node);
75void compile_MetadataSFVec4f (struct X3D_MetadataSFVec4f *node);
76void compile_MetadataMFVec4f (struct X3D_MetadataMFVec4f *node);
77void compile_MetadataSFVec4d (struct X3D_MetadataSFVec4d *node);
78void compile_MetadataMFVec4d (struct X3D_MetadataMFVec4d *node);
79
80#endif /* __FREEWRL_SCENEGRAPH_CORE_H__ */