# encoding: utf-8
# module vtkmodules.vtkCommonDataModel
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkCommonDataModel.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonMath as __vtkmodules_vtkCommonMath
import vtkmodules.vtkCommonTransforms as __vtkmodules_vtkCommonTransforms


from .object import object

class vtkBond(object):
    """
    vtkBond(__a:vtkBond) -> vtkBond
    C++: vtkBond(const &vtkBond)
    
    vtkBond - convenience proxy for vtkMolecule
    """
    def GetBeginAtom(self): # real signature unknown; restored from __doc__
        """
        GetBeginAtom(self) -> vtkAtom
        C++: vtkAtom GetBeginAtom()
        
        Get a vtkAtom object that refers to the starting / ending atom
        for this bond.
        """
        return vtkAtom

    def GetBeginAtomId(self): # real signature unknown; restored from __doc__
        """
        GetBeginAtomId(self) -> int
        C++: vtkIdType GetBeginAtomId()
        
        Get the starting / ending atom ids for this bond.
        """
        return 0

    def GetEndAtom(self): # real signature unknown; restored from __doc__
        """
        GetEndAtom(self) -> vtkAtom
        C++: vtkAtom GetEndAtom()
        """
        return vtkAtom

    def GetEndAtomId(self): # real signature unknown; restored from __doc__
        """
        GetEndAtomId(self) -> int
        C++: vtkIdType GetEndAtomId()
        """
        return 0

    def GetId(self): # real signature unknown; restored from __doc__
        """
        GetId(self) -> int
        C++: vtkIdType GetId()
        
        Return the Id used to identify this bond in the parent molecule.
        """
        return 0

    def GetLength(self): # real signature unknown; restored from __doc__
        """
        GetLength(self) -> float
        C++: double GetLength()
        
        Get the distance between the bonded atoms.
        
        *
        
        ote This function is faster than vtkMolecule::GetBondLength and
        * should be used when possible.
        """
        return 0.0

    def GetMolecule(self): # real signature unknown; restored from __doc__
        """
        GetMolecule(self) -> vtkMolecule
        C++: vtkMolecule *GetMolecule()
        
        Return the parent molecule of this bond.
        """
        return vtkMolecule

    def GetOrder(self): # real signature unknown; restored from __doc__
        """
        GetOrder(self) -> int
        C++: unsigned short GetOrder()
        
        Get the bond order for this bond.
        """
        return 0

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __hash__(self, *args, **kwargs): # real signature unknown
        """ Return hash(self). """
        pass

    def __init__(self, __a): # real signature unknown; restored from __doc__
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass


