Panda3D
 All Classes Functions Variables Enumerations
animateVerticesRequest.I
00001 // Filename: animateVerticesRequest.I
00002 // Created by:  pratt (20Nov07)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 
00016 ////////////////////////////////////////////////////////////////////
00017 //     Function: AnimateVerticesRequest::Constructor
00018 //       Access: Published
00019 //  Description: Create a new AnimateVerticesRequest.
00020 ////////////////////////////////////////////////////////////////////
00021 INLINE AnimateVerticesRequest::
00022 AnimateVerticesRequest(GeomVertexData *geom_vertex_data) :
00023   _geom_vertex_data(geom_vertex_data),
00024   _is_ready(false)
00025 {
00026 }
00027 
00028 ////////////////////////////////////////////////////////////////////
00029 //     Function: AnimateVerticesRequest::is_ready
00030 //       Access: Published
00031 //  Description: Returns true if this request has completed, false if
00032 //               it is still pending.
00033 ////////////////////////////////////////////////////////////////////
00034 INLINE bool AnimateVerticesRequest::
00035 is_ready() const {
00036   return _is_ready;
00037 }
 All Classes Functions Variables Enumerations