本文整理汇总了C++中Archive::ReadFloat方法的典型用法代码示例。如果您正苦于以下问题:C++ Archive::ReadFloat方法的具体用法?C++ Archive::ReadFloat怎么用?C++ Archive::ReadFloat使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Archive
的用法示例。
在下文中一共展示了Archive::ReadFloat方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Read
void Batch::Read(Archive& ar)
{
int version=ar.ReadInt("version");
this->primitive=ar.ReadInt("primitive");
ar.Push("ambient" );ambient.Read (ar);ar.Pop("ambient");
ar.Push("diffuse" );diffuse.Read (ar);ar.Pop("diffuse");
ar.Push("specular");specular.Read(ar);ar.Pop("specular");
ar.Push("emission");emission.Read(ar);ar.Pop("emission");
this->shininess=ar.ReadFloat("shininess");
ar.Push("matrix" );matrix.Read(ar);ar.Pop("matrix");
ar.Push("vertices");vertices=ar.ReadSmartPointer<Vector>();ar.Pop("vertices");
ar.Push("normals" );normals=ar.ReadSmartPointer<Vector>();ar.Pop("normals");
ar.Push("colors" ) ;colors=ar.ReadSmartPointer<Vector>();ar.Pop("colors");
this->texture0.reset();std::string skin_filename=ar.ReadString("texture0");
if (skin_filename.length()) this->texture0 =Texture::open(skin_filename);
ar.Push("texture0coords");texture0coords=ar.ReadSmartPointer<Vector>();ar.Pop("texture0coords");
this->texture1.reset();std::string light_filename=ar.ReadString("texture1");
if (light_filename.length()) this->texture1 =Texture::open(light_filename);
ar.Push("texture1coords");texture1coords=ar.ReadSmartPointer<Vector>();ar.Pop("texture1coords");
//I force a recalculation of bounding box
this->invalidateBox();
}