#ifndef _GEOMETRY_CACHE_BLOCK_DVA_DATA #define _GEOMETRY_CACHE_BLOCK_DVA_DATA //- // ========================================================================== // Copyright 1995,2006,2008 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk // license agreement provided at the time of installation or download, // or which otherwise accompanies this software in either electronic // or hard copy form. // ========================================================================== //+ // // File Name : geometryCacheBlockDVAData.h // // Description : // Stores and outputs cache blocks that carry double vector array data // Note that the Maya geometry cache file format is subject to change in // future versions of Maya. // // Project includes // #include <geometryCacheBlockBase.h> // Maya includes // #include <maya/MVectorArray.h> class geometryCacheBlockDVAData : public geometryCacheBlockBase { public: // Constructor / Destructor methods // geometryCacheBlockDVAData( const MString& tag, const double* value, const uint& size ); virtual ~geometryCacheBlockDVAData(); // Access to the data // const MVectorArray& data(); // Outputs the data to an output stream // virtual void outputToAscii( ostream& os ); private: // Data Member // MVectorArray vectorArrayData; }; #endif
Autodesk® Maya® 2009 © 1997-2008 Autodesk, Inc. All rights reserved. | Generated with 1.5.6 |