Panda3D
displayRegionCullCallbackData.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file displayRegionCullCallbackData.I
10  * @author drose
11  * @date 2009-03-14
12  */
13 
14 /**
15  * Returns a pointer to the CullHandler, which accepts each object to be added
16  * to the list for drawing.
17  */
19 get_cull_handler() const {
20  return _cull_handler;
21 }
22 
23 /**
24  * Returns a pointer to the SceneSetup object, which contains information
25  * about the camera and such.
26  */
28 get_scene_setup() const {
29  return _scene_setup;
30 }
This defines the abstract interface for an object that receives Geoms identified by the CullTraverser...
Definition: cullHandler.h:28
SceneSetup * get_scene_setup() const
Returns a pointer to the SceneSetup object, which contains information about the camera and such.
CullHandler * get_cull_handler() const
Returns a pointer to the CullHandler, which accepts each object to be added to the list for drawing.
This object holds the camera position, etc., and other general setup information for rendering a part...
Definition: sceneSetup.h:32