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)
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)
def SetCoords(self, p): return _vertex.Vertex_SetCoords(self, p)