mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
* support segi, resn and name of arbitrary string length * expose settings to iterate/alter via "s.<name>" * Python 3 compatibility for champ module * apbs_tools: apply fixes from Pymol-script-repo
24 lines
592 B
C
24 lines
592 B
C
/*
|
|
* This file contains source code for the PyMOL computer program
|
|
* Copyright (c) Schrodinger, LLC.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "PyMOLGlobals.h"
|
|
#include "ObjectMolecule.h"
|
|
#include "CoordSet.h"
|
|
#include "AtomInfo.h"
|
|
|
|
void SideChainHelperMarkNonCartoonBonded(bool * marked,
|
|
const ObjectMolecule * obj,
|
|
const CoordSet * cs,
|
|
bool cartoon_side_chain_helper,
|
|
bool ribbon_side_chain_helper);
|
|
|
|
bool SideChainHelperFilterBond(PyMOLGlobals * G,
|
|
const bool *marked,
|
|
const AtomInfoType *ati1,
|
|
const AtomInfoType *ati2,
|
|
int b1, int b2, int na_mode, int *c1, int *c2);
|