Beispiel #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)
Beispiel #2
0
 def GetNFaces(self, nFaceVertices):
     return _segment.Segment_GetNFaces(self, nFaceVertices)
Beispiel #3
0
 def GetNFaces(self, nFaceVertices):
     r"""GetNFaces(Segment self, int & nFaceVertices) -> int"""
     return _segment.Segment_GetNFaces(self, nFaceVertices)