コード例 #1
0
ファイル: motionplanning.py プロジェクト: whutddk/Klampt
    def interpolate(self, *args):
        """
        interpolate(CSpaceInterface self, PyObject * a, PyObject * b, double u) -> PyObject *

        Interpolates between two configurations. 
        """
        return _motionplanning.CSpaceInterface_interpolate(self, *args)
コード例 #2
0
ファイル: motionplanning.py プロジェクト: smeng9/Klampt
    def interpolate(self, a, b, u):
        """
        Interpolates between two configurations.  

        Args:
            a (:obj:`object`)
            b (:obj:`object`)
            u (float)
        Returns:
            (:obj:`object`):
        """
        return _motionplanning.CSpaceInterface_interpolate(self, a, b, u)
コード例 #3
0
 def interpolate(self, *args):
     """interpolate(CSpaceInterface self, PyObject * a, PyObject * b, double u) -> PyObject *"""
     return _motionplanning.CSpaceInterface_interpolate(self, *args)