예제 #1
0
    def GetNFaces(self, *args):
        r"""
        GetNFaces(Segment self, int & nFaceVertices) -> int
        GetNFaces(Segment self) -> int
        """

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

        return _segment.Segment_GetNFaces(self, *args)
예제 #2
0
 def GetNFaces(self, nFaceVertices):
     return _segment.Segment_GetNFaces(self, nFaceVertices)
예제 #3
0
파일: segment.py 프로젝트: totorosw/PyMFEM
 def GetNFaces(self, nFaceVertices):
     r"""GetNFaces(Segment self, int & nFaceVertices) -> int"""
     return _segment.Segment_GetNFaces(self, nFaceVertices)