示例#1
0
文件: vertex.py 项目: tomstitt/PyMFEM
    def SetCoords(self, *args):
        r"""
        SetCoords(Vertex self, double const * p)
        SetCoords(Vertex self, int dim, double const * p)
        """

        if len(args) == 2:
             import warnings
             warnings.warn("Vertex::SetCoords(const double *p) is deprecated is deprecated",
         	              DeprecationWarning,)


        return _vertex.Vertex_SetCoords(self, *args)
示例#2
0
文件: vertex.py 项目: tomstitt/PyMFEM
 def SetCoords(self, *args):
     r"""
     SetCoords(Vertex self, double const * p)
     SetCoords(Vertex self, int dim, double const * p)
     """
     return _vertex.Vertex_SetCoords(self, *args)
示例#3
0
 def SetCoords(self, p):
     return _vertex.Vertex_SetCoords(self, p)