Files
pymol-open-source/layer1/SymOpTools.h
2021-02-11 18:58:26 +01:00

21 lines
338 B
C++

/**
* @file Tools for manipulating SymOp bonds
*
* (c) Schrodinger, Inc.
*/
#pragma once
#include "PyMOLGlobals.h"
#include "SymOp.h"
#include <vector>
struct CoordSet;
namespace pymol
{
std::vector<std::pair<SymOp, float>> find_bond_symops(
CoordSet const&, unsigned, unsigned, float tolerance = 1.05);
} // namespace pymol