Ejemplo n.º 1
0
    def GetNFaces(self, *args):
        r"""
        GetNFaces(Element self, int & nFaceVertices) -> int
        GetNFaces(Element self) -> int
        """

        if len(args) == 1:
            import warnings
            warnings.warn(
                "Element::GetNFaces(int & nFaceVertices) is deprecated is deprecated",
                DeprecationWarning,
            )

        return _element.Element_GetNFaces(self, *args)
Ejemplo n.º 2
0
 def GetNFaces(self, nFaceVertices):
     return _element.Element_GetNFaces(self, nFaceVertices)
Ejemplo n.º 3
0
 def GetNFaces(self, nFaceVertices):
     """GetNFaces(Element self, int & nFaceVertices) -> int"""
     return _element.Element_GetNFaces(self, nFaceVertices)
Ejemplo n.º 4
0
 def GetNFaces(self, *args):
     r"""
     GetNFaces(Element self, int & nFaceVertices) -> int
     GetNFaces(Element self) -> int
     """
     return _element.Element_GetNFaces(self, *args)