本文整理汇总了C++中Mol::ReadPdb方法的典型用法代码示例。如果您正苦于以下问题:C++ Mol::ReadPdb方法的具体用法?C++ Mol::ReadPdb怎么用?C++ Mol::ReadPdb使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mol
的用法示例。
在下文中一共展示了Mol::ReadPdb方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnReadFile
void MyFrame::OnReadFile (wxString filename)
{
if (mol.ReadPdb((const char*)filename.mb_str(wxConvUTF8) )) {
if ((mol.natm==0) && (mol.nhetatm!=0)) geoSettings.showHetatm=true;
MyTab::EnableGeom();
UpdateShadowmap();
wxString name( mol.GetMolName(), wxConvUTF8 );
SetTitle( name.BeforeLast('.')+ _T(" - QuteMol") );
m_tb->SetTitleText(name);
geoSettings.Apply();
// redo shaders, as texture size could have changed
cgSettings.UpdateShaders();
} else {
wxMessageBox(wxString::FromAscii(QAtom::lastReadError), _T(":-("), wxOK | wxICON_EXCLAMATION, this);
m_tb->SetTitleText();
}
// remake shaders cos texture size could have changed...
//theText->LoadFile(openFileDialog->GetFilename());
//SetStatusText(GetCurrentFilename(), 0);
}
示例2: InitQuteMol
int InitQuteMol(const char * filename)
{
CubeMapSamp::SetSize(CSIZE);
OctaMapSamp::SetSize(CSIZE);
if (filename==NULL) filename="porin.pdb";
mol.ReadPdb(filename);
cgSettings.SetDefaults();
// initGl gets called from the GL canvas on startup. It's not
// legal to call it before that time because the OpenGL context
// does not exist yet.
/*if (!initGl()) {
printf("failed to initialize! :(\n");
return 0;
}*/
//FillRandomTexture();
//mol.DuplicateTexels(texture, TSIZE);
//ReloadTexture(texture, bilinear);
return 1;
}