mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
21 lines
338 B
C++
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
|