示例#1
0
def setVectorField(*args):
  """
    setVectorField(PyObject * pVFObj) -> int

    Sets the vector field object, returns 0 if pVFObj = NULL, 1 otherwise.
    See vectorfield.py for an abstract base class that can be overridden
    to produce one of these objects. 
    """
  return _rootfind.setVectorField(*args)
示例#2
0
def setVectorField(*args):
  """
    setVectorField(PyObject * pVFObj) -> int

    Sets the vector field object, returns 0 if pVFObj = NULL, 1 otherwise.
    See vectorfield.py for an abstract base class that can be overridden
    to produce one of these objects. 
    """
  return _rootfind.setVectorField(*args)
示例#3
0
def setVectorField(*args):
    """
    setVectorField(PyObject * pVFObj) -> int

    int setVectorField(PyObject
    *pVFObj)

    Sets the vector field object, returns 0 if pVFObj = NULL, 1 otherwise.

    """
    return _rootfind.setVectorField(*args)
示例#4
0
def setVectorField(*args):
  """
    setVectorField(PyObject * pVFObj) -> int

    int setVectorField(PyObject
    *pVFObj)

    Sets the vector field object, returns 0 if pVFObj = NULL, 1 otherwise.

    """
  return _rootfind.setVectorField(*args)
示例#5
0
文件: rootfind.py 项目: xyyeh/Klampt
def setVectorField(pVFObj):
    """
    Sets the vector field object.  

    Args:
        pVFObj (:obj:`object`)

    Returns:  

        status (int): 0 if pVFObj = NULL, 1 otherwise.  

    See vectorfield.py for an abstract base class that can be overridden to produce
    one of these objects.  

    """
    return _rootfind.setVectorField(pVFObj)
示例#6
0
def setVectorField(pVFObj):
    """
    Sets the vector field object.  

    Args:
        pVFObj (:obj:`object`)

    Returns:  

        status (int): 0 if pVFObj = NULL, 1 otherwise.  

    See vectorfield.py for an abstract base class that can be overridden to produce
    one of these objects.  

    """
    return _rootfind.setVectorField(pVFObj)
示例#7
0
def setVectorField(*args):
  return _rootfind.setVectorField(*args)