Panda3D
cfCommand.I
1 // Filename: cfCommand.I
2 // Created by: drose (19Feb09)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 
16 ////////////////////////////////////////////////////////////////////
17 // Function: CFCommand::Constructor
18 // Access: Protected
19 // Description:
20 ////////////////////////////////////////////////////////////////////
21 INLINE CFCommand::
22 CFCommand() {
23 }
24 
25 ////////////////////////////////////////////////////////////////////
26 // Function: CFDoCullCommand::Constructor
27 // Access: Protected
28 // Description:
29 ////////////////////////////////////////////////////////////////////
30 INLINE CFDoCullCommand::
31 CFDoCullCommand() {
32 }
33 
34 ////////////////////////////////////////////////////////////////////
35 // Function: CFDoCullCommand::Constructor
36 // Access: Published
37 // Description:
38 ////////////////////////////////////////////////////////////////////
39 INLINE CFDoCullCommand::
40 CFDoCullCommand(PandaNode *scene) : _scene(scene) {
41 }
42 
43 ////////////////////////////////////////////////////////////////////
44 // Function: CFDoCullCommand::get_scene
45 // Access: Published
46 // Description:
47 ////////////////////////////////////////////////////////////////////
48 INLINE PandaNode *CFDoCullCommand::
49 get_scene() const {
50  return _scene;
51 }
A basic node of the scene graph or data graph.
Definition: pandaNode.h:72