本文整理汇总了C++中BaseMolecule::vertexCount方法的典型用法代码示例。如果您正苦于以下问题:C++ BaseMolecule::vertexCount方法的具体用法?C++ BaseMolecule::vertexCount怎么用?C++ BaseMolecule::vertexCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BaseMolecule
的用法示例。
在下文中一共展示了BaseMolecule::vertexCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: layout
void MoleculeLayoutGraphSmart::layout (BaseMolecule &molecule, float bond_length, const Filter *filter, bool respect_existing)
{
if (molecule.vertexCount() == 0)
return;
int n_components = countComponents();
if (fabs(bond_length) < EPSILON)
throw Error("zero bond length");
_molecule = &molecule;
if (n_components > 1)
_layoutMultipleComponents(molecule, respect_existing, filter, bond_length);
else
_layoutSingleComponent(molecule, respect_existing, filter, bond_length);
}
示例2: getBoundRect
void Metalayout::getBoundRect (Vec2f& min, Vec2f& max, BaseMolecule& mol)
{
if (mol.vertexCount() == 0)
{
min.zero();
max.zero();
return;
}
const Vec3f& v0 = mol.getAtomXyz(mol.vertexBegin());
Vec2f::projectZ(min, v0);
Vec2f::projectZ(max, v0);
Vec2f v2;
for (int i = mol.vertexBegin(); i < mol.vertexEnd(); i = mol.vertexNext(i))
{
Vec2f::projectZ(v2, mol.getAtomXyz(i));
min.min(v2);
max.max(v2);
}
}