Panda3D
animateVerticesRequest.I
1 // Filename: animateVerticesRequest.I
2 // Created by: pratt (20Nov07)
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: AnimateVerticesRequest::Constructor
18 // Access: Published
19 // Description: Create a new AnimateVerticesRequest.
20 ////////////////////////////////////////////////////////////////////
23  _geom_vertex_data(geom_vertex_data),
24  _is_ready(false)
25 {
26 }
27 
28 ////////////////////////////////////////////////////////////////////
29 // Function: AnimateVerticesRequest::is_ready
30 // Access: Published
31 // Description: Returns true if this request has completed, false if
32 // it is still pending.
33 ////////////////////////////////////////////////////////////////////
34 INLINE bool AnimateVerticesRequest::
35 is_ready() const {
36  return _is_ready;
37 }
bool is_ready() const
Returns true if this request has completed, false if it is still pending.
This defines the actual numeric vertex data stored in a Geom, in the structure defined by a particula...
AnimateVerticesRequest(GeomVertexData *geom_vertex_data)
Create a new AnimateVerticesRequest.