# encoding: utf-8
# module vtkmodules.vtkCommonDataModel
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkCommonDataModel.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonMath as __vtkmodules_vtkCommonMath
import vtkmodules.vtkCommonTransforms as __vtkmodules_vtkCommonTransforms


from .vtkCell import vtkCell

class vtkGenericCell(vtkCell):
    """
    vtkGenericCell - provides thread-safe access to cells
    
    Superclass: vtkCell
    
    vtkGenericCell is a class that provides access to concrete types of
    cells. It's main purpose is to allow thread-safe access to cells,
    supporting the vtkDataSet::GetCell(vtkGenericCell *) method.
    vtkGenericCell acts like any type of cell, it just dereferences an
    internal representation. The SetCellType() methods use #define
    constants; these are defined in the file vtkCellType.h.
    
    @sa
    vtkCell vtkDataSet
    """
    def CellBoundary(self, subId, pcoords, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        CellBoundary(self, subId:int, pcoords:(float, float, float),
            pts:vtkIdList) -> int
        C++: int CellBoundary(int subId, const double pcoords[3],
            vtkIdList *pts) override;
        
        Given parametric coordinates of a point, return the closest cell
        boundary, and whether the point is inside or outside of the cell.
        The cell boundary is defined by a list of points (pts) that
        specify a face (3D cell), edge (2D cell), or vertex (1D cell). If
        the return value of the method is != 0, then the point is inside
        the cell.
        """
        pass

    def Clip(self, value, cellScalars, locator, connectivity, inPd, outPd, inCd, cellId, outCd, insideOut): # real signature unknown; restored from __doc__
        """
        Clip(self, value:float, cellScalars:vtkDataArray,
            locator:vtkIncrementalPointLocator, connectivity:vtkCellArray,
             inPd:vtkPointData, outPd:vtkPointData, inCd:vtkCellData,
            cellId:int, outCd:vtkCellData, insideOut:int) -> None
        C++: void Clip(double value, vtkDataArray *cellScalars,
            vtkIncrementalPointLocator *locator,
            vtkCellArray *connectivity, vtkPointData *inPd,
            vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId,
            vtkCellData *outCd, int insideOut) override;
        
        Cut (or clip) the cell based on the input cellScalars and the
        specified value. The output of the clip operation will be one or
        more cells of the same topological dimension as the original
        cell. The flag insideOut controls what part of the cell is
        considered inside - normally cell points whose scalar value is
        greater than "value" are considered inside. If insideOut is on,
        this is reversed. Also, if the output cell data is non-nullptr,
        the cell data from the clipped cell is passed to the generated
        contouring primitives. (Note: the CopyAllocate() method must be
        invoked on both the output cell and point data. The cellId refers
        to the cell from which the cell data is copied.)
        """
        pass

    def Contour(self, value, cellScalars, locator, verts, lines, polys, inPd, outPd, inCd, cellId, outCd): # real signature unknown; restored from __doc__
        """
        Contour(self, value:float, cellScalars:vtkDataArray,
            locator:vtkIncrementalPointLocator, verts:vtkCellArray,
            lines:vtkCellArray, polys:vtkCellArray, inPd:vtkPointData,
            outPd:vtkPointData, inCd:vtkCellData, cellId:int,
            outCd:vtkCellData) -> None
        C++: void Contour(double value, vtkDataArray *cellScalars,
            vtkIncrementalPointLocator *locator, vtkCellArray *verts,
            vtkCellArray *lines, vtkCellArray *polys, vtkPointData *inPd,
            vtkPointData *outPd, vtkCellData *inCd, vtkIdType cellId,
            vtkCellData *outCd) override;
        
        Generate contouring primitives. The scalar list cellScalars are
        scalar values at each cell point. The point locator is
        essentially a points list that merges points as they are inserted
        (i.e., prevents duplicates). Contouring primitives can be
        vertices, lines, or polygons. It is possible to interpolate point
        data along the edge by providing input and output point data - if
        outPd is nullptr, then no interpolation is performed. Also, if
        the output cell data is non-nullptr, the cell data from the
        contoured cell is passed to the generated contouring primitives.
        (Note: the CopyAllocate() method must be invoked on both the
        output cell and point data. The cellId refers to the cell from
        which the cell data is copied.)
        """
        pass

    def DeepCopy(self, c): # real signature unknown; restored from __doc__
        """
        DeepCopy(self, c:vtkCell) -> None
        C++: void DeepCopy(vtkCell *c) override;
        
        Copy this cell by completely copying internal data structures.
        This is slower but safer than ShallowCopy().
        """
        pass

    def Derivatives(self, subId, pcoords, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        Derivatives(self, subId:int, pcoords:(float, float, float),
            values:(float, ...), dim:int, derivs:[float, ...]) -> None
        C++: void Derivatives(int subId, const double pcoords[3],
            const double *values, int dim, double *derivs) override;
        
        Compute derivatives given cell subId and parametric coordinates.
        The values array is a series of data value(s) at the cell points.
        There is a one-to-one correspondence between cell point and data
        value(s). Dim is the number of data values per cell point. Derivs
        are derivatives in the x-y-z coordinate directions for each data
        value. Thus, if computing derivatives for a scalar function in a
        hexahedron, dim=1, 8 values are supplied, and 3 deriv values are
        returned (i.e., derivatives in x-y-z directions). On the other
        hand, if computing derivatives of velocity (vx,vy,vz) dim=3, 24
        values are supplied ((vx,vy,vz)1, (vx,vy,vz)2, ....()8), and 9
        deriv values are returned ((d(vx)/dx),(d(vx)/dy),(d(vx)/dz),
        (d(vy)/dx),(d(vy)/dy), (d(vy)/dz),
        (d(vz)/dx),(d(vz)/dy),(d(vz)/dz)).
        """
        pass

    def EvaluateLocation(self, subId, pcoords, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        EvaluateLocation(self, subId:int, pcoords:(float, float, float),
            x:[float, float, float], weights:[float, ...]) -> None
        C++: void EvaluateLocation(int &subId, const double pcoords[3],
            double x[3], double *weights) override;
        
        Determine global coordinate (x[3]) from subId and parametric
        coordinates. Also returns interpolation weights. (The number of
        weights is equal to the number of points in the cell.)
        """
        pass

    def EvaluatePosition(self, x, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        EvaluatePosition(self, x:(float, float, float),
            closestPoint:[float, float, float], subId:int, pcoords:[float,
             float, float], dist2:float, weights:[float, ...]) -> int
        C++: int EvaluatePosition(const double x[3],
            double closestPoint[3], int &subId, double pcoords[3],
            double &dist2, double weights[]) override;
        
        Given a point x[3] return inside(=1), outside(=0) cell, or (-1)
        computational problem encountered; evaluate parametric
        coordinates, sub-cell id (!=0 only if cell is composite),
        distance squared of point x[3] to cell (in particular, the
        sub-cell indicated), closest point on cell to x[3] (unless
        closestPoint is null, in which case, the closest point and dist2
        are not found), and interpolation weights in cell. (The number of
        weights is equal to the number of points defining the cell).
        Note: on rare occasions a -1 is returned from the method. This
        means that numerical error has occurred and all data returned
        from this method should be ignored. Also, inside/outside is
        determine parametrically. That is, a point is inside if it
        satisfies parametric limits. This can cause problems for cells of
        topological dimension 2 or less, since a point in 3D can project
        onto the cell within parametric limits but be "far" from the
        cell.  Thus the value dist2 may be checked to determine true
        in/out.
        """
        pass

    def GetCellDimension(self): # real signature unknown; restored from __doc__
        """
        GetCellDimension(self) -> int
        C++: int GetCellDimension() override;
        
        Return the topological dimensional of the cell (0,1,2, or 3).
        """
        return 0

    def GetCellType(self): # real signature unknown; restored from __doc__
        """
        GetCellType(self) -> int
        C++: int GetCellType() override;
        
        Return the type of cell.
        """
        return 0

    def GetEdge(self, edgeId): # real signature unknown; restored from __doc__
        """
        GetEdge(self, edgeId:int) -> vtkCell
        C++: vtkCell *GetEdge(int edgeId) override;
        
        Return the edge cell from the edgeId of the cell.
        """
        return vtkCell

    def GetFace(self, faceId): # real signature unknown; restored from __doc__
        """
        GetFace(self, faceId:int) -> vtkCell
        C++: vtkCell *GetFace(int faceId) override;
        
        Return the face cell from the faceId of the cell. The returned
        vtkCell is an object owned by this instance, hence the return
        value must not be deleted by the caller.
        
        @warning Repeat calls to this function for different face ids
            will change
        the data stored in the internal member object whose pointer is
        returned by this function.
        
        @warning THIS METHOD IS NOT THREAD SAFE.
        """
        return vtkCell

    def GetFaces(self): # real signature unknown; restored from __doc__
        """
        GetFaces(self) -> Pointer
        C++: vtkIdType *GetFaces() override;
        """
        pass

    def GetNumberOfEdges(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfEdges(self) -> int
        C++: int GetNumberOfEdges() override;
        
        Return the number of edges in the cell.
        """
        return 0

    def GetNumberOfFaces(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfFaces(self) -> int
        C++: int GetNumberOfFaces() override;
        
        Return the number of faces in the cell.
        """
        return 0

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetParametricCenter(self, pcoords, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetParametricCenter(self, pcoords:[float, float, float]) -> int
        C++: int GetParametricCenter(double pcoords[3]) override;
        
        Return center of the cell in parametric coordinates.  Note that
        the parametric center is not always located at (0.5,0.5,0.5). The
        return value is the subId that the center is in (if a composite
        cell). If you want the center in x-y-z space, invoke the
        EvaluateLocation() method.
        """
        pass

    def GetParametricCoords(self): # real signature unknown; restored from __doc__
        """
        GetParametricCoords(self) -> (float, ...)
        C++: double *GetParametricCoords() override;
        
        Return a contiguous array of parametric coordinates of the points
        defining this cell. In other words, (px,py,pz, px,py,pz, etc..) 
        The coordinates are ordered consistent with the definition of the
        point ordering for the cell. This method returns a non-nullptr
        pointer when the cell is a primary type (i.e., IsPrimaryCell() is
        true). Note that 3D parametric coordinates are returned no matter
        what the topological dimension of the cell.
        """
        pass

    def GetRepresentativeCell(self): # real signature unknown; restored from __doc__
        """
        GetRepresentativeCell(self) -> vtkCell
        C++: vtkCell *GetRepresentativeCell()
        """
        return vtkCell

    def Initialize(self): # real signature unknown; restored from __doc__
        """
        Initialize(self) -> None
        C++: void Initialize() override;
        """
        pass

    def InstantiateCell(self, cellType): # real signature unknown; restored from __doc__
        """
        InstantiateCell(cellType:int) -> vtkCell
        C++: static vtkCell *InstantiateCell(int cellType)
        
        Instantiate a new vtkCell based on it's cell type value
        """
        return vtkCell

    def InterpolateDerivs(self, pcoords, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        InterpolateDerivs(self, pcoords:(float, float, float),
            derivs:[float, ...]) -> None
        C++: void InterpolateDerivs(const double pcoords[3],
            double *derivs) override;
        """
        pass

    def InterpolateFunctions(self, pcoords, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        InterpolateFunctions(self, pcoords:(float, float, float),
            weights:[float, ...]) -> None
        C++: void InterpolateFunctions(const double pcoords[3],
            double *weights) override;
        
        Compute the interpolation functions/derivatives (aka shape
        functions/derivatives)
        """
        pass

    def IntersectWithLine(self, p1, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        IntersectWithLine(self, p1:(float, float, float), p2:(float,
            float, float), tol:float, t:float, x:[float, float, float],
            pcoords:[float, float, float], subId:int) -> int
        C++: int IntersectWithLine(const double p1[3], const double p2[3],
             double tol, double &t, double x[3], double pcoords[3],
            int &subId) override;
        
        Intersect with a ray. Return parametric coordinates (both line
        and cell) and global intersection coordinates, given ray
        definition p1[3], p2[3] and tolerance tol. The method returns
        non-zero value if intersection occurs. A parametric distance t
        between 0 and 1 along the ray representing the intersection
        point, the point coordinates x[3] in data coordinates and also
        pcoords[3] in parametric coordinates. subId is the index within
        the cell if a composed cell like a triangle strip.
        """
        pass

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsLinear(self): # real signature unknown; restored from __doc__
        """
        IsLinear(self) -> int
        C++: int IsLinear() override;
        
        Non-linear cells require special treatment beyond the usual cell
        type and connectivity list information.  Most cells in VTK are
        implicit cells.
        """
        return 0

    def IsPrimaryCell(self): # real signature unknown; restored from __doc__
        """
        IsPrimaryCell(self) -> int
        C++: int IsPrimaryCell() override;
        
        Return whether this cell type has a fixed topology or whether the
        topology varies depending on the data (e.g., vtkConvexPointSet).
        This compares to composite cells that are typically composed of
        primary cells (e.g., a triangle strip composite cell is made up
        of triangle primary cells).
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkGenericCell
        C++: vtkGenericCell *NewInstance()
        """
        return vtkGenericCell

    def RequiresExplicitFaceRepresentation(self): # real signature unknown; restored from __doc__
        """
        RequiresExplicitFaceRepresentation(self) -> int
        C++: int RequiresExplicitFaceRepresentation() override;
        
        Determine whether the cell requires explicit face representation,
        and methods for setting and getting the faces (see vtkPolyhedron
        for example usage of these methods).
        """
        return 0

    def RequiresInitialization(self): # real signature unknown; restored from __doc__
        """
        RequiresInitialization(self) -> int
        C++: int RequiresInitialization() override;
        
        Some cells require initialization prior to access. For example,
        they may have to triangulate themselves or set up internal data
        structures.
        """
        return 0

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkGenericCell
        C++: static vtkGenericCell *SafeDownCast(vtkObjectBase *o)
        """
        return vtkGenericCell

    def SetCellType(self, cellType): # real signature unknown; restored from __doc__
        """
        SetCellType(self, cellType:int) -> None
        C++: void SetCellType(int cellType)
        
        This method is used to support the
        vtkDataSet::GetCell(vtkGenericCell *) method. It allows
        vtkGenericCell to act like any cell type by dereferencing an
        internal instance of a concrete cell type. When you set the cell
        type, you are resetting a pointer to an internal cell which is
        then used for computation.
        """
        pass

    def SetCellTypeToBezierCurve(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBezierCurve(self) -> None
        C++: void SetCellTypeToBezierCurve()
        """
        pass

    def SetCellTypeToBezierHexahedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBezierHexahedron(self) -> None
        C++: void SetCellTypeToBezierHexahedron()
        """
        pass

    def SetCellTypeToBezierQuadrilateral(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBezierQuadrilateral(self) -> None
        C++: void SetCellTypeToBezierQuadrilateral()
        """
        pass

    def SetCellTypeToBezierTetra(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBezierTetra(self) -> None
        C++: void SetCellTypeToBezierTetra()
        """
        pass

    def SetCellTypeToBezierTriangle(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBezierTriangle(self) -> None
        C++: void SetCellTypeToBezierTriangle()
        """
        pass

    def SetCellTypeToBezierWedge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBezierWedge(self) -> None
        C++: void SetCellTypeToBezierWedge()
        """
        pass

    def SetCellTypeToBiQuadraticQuad(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBiQuadraticQuad(self) -> None
        C++: void SetCellTypeToBiQuadraticQuad()
        """
        pass

    def SetCellTypeToBiQuadraticQuadraticHexahedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBiQuadraticQuadraticHexahedron(self) -> None
        C++: void SetCellTypeToBiQuadraticQuadraticHexahedron()
        """
        pass

    def SetCellTypeToBiQuadraticQuadraticWedge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBiQuadraticQuadraticWedge(self) -> None
        C++: void SetCellTypeToBiQuadraticQuadraticWedge()
        """
        pass

    def SetCellTypeToBiQuadraticTriangle(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToBiQuadraticTriangle(self) -> None
        C++: void SetCellTypeToBiQuadraticTriangle()
        """
        pass

    def SetCellTypeToConvexPointSet(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToConvexPointSet(self) -> None
        C++: void SetCellTypeToConvexPointSet()
        """
        pass

    def SetCellTypeToCubicLine(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToCubicLine(self) -> None
        C++: void SetCellTypeToCubicLine()
        """
        pass

    def SetCellTypeToEmptyCell(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToEmptyCell(self) -> None
        C++: void SetCellTypeToEmptyCell()
        """
        pass

    def SetCellTypeToHexagonalPrism(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToHexagonalPrism(self) -> None
        C++: void SetCellTypeToHexagonalPrism()
        """
        pass

    def SetCellTypeToHexahedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToHexahedron(self) -> None
        C++: void SetCellTypeToHexahedron()
        """
        pass

    def SetCellTypeToLagrangeCurve(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLagrangeCurve(self) -> None
        C++: void SetCellTypeToLagrangeCurve()
        """
        pass

    def SetCellTypeToLagrangeHexahedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLagrangeHexahedron(self) -> None
        C++: void SetCellTypeToLagrangeHexahedron()
        """
        pass

    def SetCellTypeToLagrangeQuadrilateral(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLagrangeQuadrilateral(self) -> None
        C++: void SetCellTypeToLagrangeQuadrilateral()
        """
        pass

    def SetCellTypeToLagrangeTetra(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLagrangeTetra(self) -> None
        C++: void SetCellTypeToLagrangeTetra()
        """
        pass

    def SetCellTypeToLagrangeTriangle(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLagrangeTriangle(self) -> None
        C++: void SetCellTypeToLagrangeTriangle()
        """
        pass

    def SetCellTypeToLagrangeWedge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLagrangeWedge(self) -> None
        C++: void SetCellTypeToLagrangeWedge()
        """
        pass

    def SetCellTypeToLine(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToLine(self) -> None
        C++: void SetCellTypeToLine()
        """
        pass

    def SetCellTypeToPentagonalPrism(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPentagonalPrism(self) -> None
        C++: void SetCellTypeToPentagonalPrism()
        """
        pass

    def SetCellTypeToPixel(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPixel(self) -> None
        C++: void SetCellTypeToPixel()
        """
        pass

    def SetCellTypeToPolygon(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPolygon(self) -> None
        C++: void SetCellTypeToPolygon()
        """
        pass

    def SetCellTypeToPolyhedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPolyhedron(self) -> None
        C++: void SetCellTypeToPolyhedron()
        """
        pass

    def SetCellTypeToPolyLine(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPolyLine(self) -> None
        C++: void SetCellTypeToPolyLine()
        """
        pass

    def SetCellTypeToPolyVertex(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPolyVertex(self) -> None
        C++: void SetCellTypeToPolyVertex()
        """
        pass

    def SetCellTypeToPyramid(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToPyramid(self) -> None
        C++: void SetCellTypeToPyramid()
        """
        pass

    def SetCellTypeToQuad(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuad(self) -> None
        C++: void SetCellTypeToQuad()
        """
        pass

    def SetCellTypeToQuadraticEdge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticEdge(self) -> None
        C++: void SetCellTypeToQuadraticEdge()
        """
        pass

    def SetCellTypeToQuadraticHexahedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticHexahedron(self) -> None
        C++: void SetCellTypeToQuadraticHexahedron()
        """
        pass

    def SetCellTypeToQuadraticLinearQuad(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticLinearQuad(self) -> None
        C++: void SetCellTypeToQuadraticLinearQuad()
        """
        pass

    def SetCellTypeToQuadraticLinearWedge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticLinearWedge(self) -> None
        C++: void SetCellTypeToQuadraticLinearWedge()
        """
        pass

    def SetCellTypeToQuadraticPolygon(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticPolygon(self) -> None
        C++: void SetCellTypeToQuadraticPolygon()
        """
        pass

    def SetCellTypeToQuadraticPyramid(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticPyramid(self) -> None
        C++: void SetCellTypeToQuadraticPyramid()
        """
        pass

    def SetCellTypeToQuadraticQuad(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticQuad(self) -> None
        C++: void SetCellTypeToQuadraticQuad()
        """
        pass

    def SetCellTypeToQuadraticTetra(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticTetra(self) -> None
        C++: void SetCellTypeToQuadraticTetra()
        """
        pass

    def SetCellTypeToQuadraticTriangle(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticTriangle(self) -> None
        C++: void SetCellTypeToQuadraticTriangle()
        """
        pass

    def SetCellTypeToQuadraticWedge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToQuadraticWedge(self) -> None
        C++: void SetCellTypeToQuadraticWedge()
        """
        pass

    def SetCellTypeToTetra(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToTetra(self) -> None
        C++: void SetCellTypeToTetra()
        """
        pass

    def SetCellTypeToTriangle(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToTriangle(self) -> None
        C++: void SetCellTypeToTriangle()
        """
        pass

    def SetCellTypeToTriangleStrip(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToTriangleStrip(self) -> None
        C++: void SetCellTypeToTriangleStrip()
        """
        pass

    def SetCellTypeToTriQuadraticHexahedron(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToTriQuadraticHexahedron(self) -> None
        C++: void SetCellTypeToTriQuadraticHexahedron()
        """
        pass

    def SetCellTypeToTriQuadraticPyramid(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToTriQuadraticPyramid(self) -> None
        C++: void SetCellTypeToTriQuadraticPyramid()
        """
        pass

    def SetCellTypeToVertex(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToVertex(self) -> None
        C++: void SetCellTypeToVertex()
        """
        pass

    def SetCellTypeToVoxel(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToVoxel(self) -> None
        C++: void SetCellTypeToVoxel()
        """
        pass

    def SetCellTypeToWedge(self): # real signature unknown; restored from __doc__
        """
        SetCellTypeToWedge(self) -> None
        C++: void SetCellTypeToWedge()
        """
        pass

    def SetFaces(self, faces, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetFaces(self, faces:[int, ...]) -> None
        C++: void SetFaces(vtkIdType *faces) override;
        """
        pass

    def SetPointIds(self, pointIds): # real signature unknown; restored from __doc__
        """
        SetPointIds(self, pointIds:vtkIdList) -> None
        C++: void SetPointIds(vtkIdList *pointIds)
        
        Set the point ids to use for this cell. This updates the internal
        cell storage as well as the public member variable PointIds.
        """
        pass

    def SetPoints(self, points): # real signature unknown; restored from __doc__
        """
        SetPoints(self, points:vtkPoints) -> None
        C++: void SetPoints(vtkPoints *points)
        
        Set the points object to use for this cell. This updates the
        internal cell storage as well as the public member variable
        Points.
        """
        pass

    def ShallowCopy(self, c): # real signature unknown; restored from __doc__
        """
        ShallowCopy(self, c:vtkCell) -> None
        C++: void ShallowCopy(vtkCell *c) override;
        
        See the vtkCell API for descriptions of these methods.
        """
        pass

    def Triangulate(self, index, ptIds, pts): # real signature unknown; restored from __doc__
        """
        Triangulate(self, index:int, ptIds:vtkIdList, pts:vtkPoints)
            -> int
        C++: int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts)
            override;
        
        Generate simplices of proper dimension. If cell is 3D,
        tetrahedron are generated; if 2D triangles; if 1D lines; if 0D
        points. The form of the output is a sequence of points, each n+1
        points (where n is topological cell dimension) defining a
        simplex. The index is a parameter that controls which
        triangulation to use (if more than one is possible). If numerical
        degeneracy encountered, 0 is returned, otherwise 1 is returned.
        This method does not insert new points: all the points that
        define the simplices are the points that define the cell.
        """
        return 0

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    __dict__ = None # (!) real value is 'mappingproxy({\'__vtkname__\': \'vtkGenericCell\', \'IsTypeOf\': <method \'IsTypeOf\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'IsA\': <method \'IsA\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SafeDownCast\': <method \'SafeDownCast\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'NewInstance\': <method \'NewInstance\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetNumberOfGenerationsFromBaseType\': <method \'GetNumberOfGenerationsFromBaseType\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetNumberOfGenerationsFromBase\': <method \'GetNumberOfGenerationsFromBase\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetPoints\': <method \'SetPoints\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetPointIds\': <method \'SetPointIds\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'ShallowCopy\': <method \'ShallowCopy\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'DeepCopy\': <method \'DeepCopy\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetCellType\': <method \'GetCellType\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetCellDimension\': <method \'GetCellDimension\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'IsLinear\': <method \'IsLinear\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'RequiresInitialization\': <method \'RequiresInitialization\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'Initialize\': <method \'Initialize\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'RequiresExplicitFaceRepresentation\': <method \'RequiresExplicitFaceRepresentation\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetFaces\': <method \'SetFaces\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetFaces\': <method \'GetFaces\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetNumberOfEdges\': <method \'GetNumberOfEdges\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetNumberOfFaces\': <method \'GetNumberOfFaces\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetEdge\': <method \'GetEdge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetFace\': <method \'GetFace\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'CellBoundary\': <method \'CellBoundary\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'EvaluatePosition\': <method \'EvaluatePosition\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'EvaluateLocation\': <method \'EvaluateLocation\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'Contour\': <method \'Contour\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'Clip\': <method \'Clip\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'IntersectWithLine\': <method \'IntersectWithLine\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'Triangulate\': <method \'Triangulate\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'Derivatives\': <method \'Derivatives\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetParametricCenter\': <method \'GetParametricCenter\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetParametricCoords\': <method \'GetParametricCoords\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'IsPrimaryCell\': <method \'IsPrimaryCell\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'InterpolateFunctions\': <method \'InterpolateFunctions\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'InterpolateDerivs\': <method \'InterpolateDerivs\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellType\': <method \'SetCellType\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToEmptyCell\': <method \'SetCellTypeToEmptyCell\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToVertex\': <method \'SetCellTypeToVertex\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPolyVertex\': <method \'SetCellTypeToPolyVertex\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLine\': <method \'SetCellTypeToLine\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPolyLine\': <method \'SetCellTypeToPolyLine\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToTriangle\': <method \'SetCellTypeToTriangle\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToTriangleStrip\': <method \'SetCellTypeToTriangleStrip\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPolygon\': <method \'SetCellTypeToPolygon\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPixel\': <method \'SetCellTypeToPixel\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuad\': <method \'SetCellTypeToQuad\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToTetra\': <method \'SetCellTypeToTetra\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToVoxel\': <method \'SetCellTypeToVoxel\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToHexahedron\': <method \'SetCellTypeToHexahedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToWedge\': <method \'SetCellTypeToWedge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPyramid\': <method \'SetCellTypeToPyramid\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPentagonalPrism\': <method \'SetCellTypeToPentagonalPrism\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToHexagonalPrism\': <method \'SetCellTypeToHexagonalPrism\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToPolyhedron\': <method \'SetCellTypeToPolyhedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToConvexPointSet\': <method \'SetCellTypeToConvexPointSet\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticEdge\': <method \'SetCellTypeToQuadraticEdge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToCubicLine\': <method \'SetCellTypeToCubicLine\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticTriangle\': <method \'SetCellTypeToQuadraticTriangle\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBiQuadraticTriangle\': <method \'SetCellTypeToBiQuadraticTriangle\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticQuad\': <method \'SetCellTypeToQuadraticQuad\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticPolygon\': <method \'SetCellTypeToQuadraticPolygon\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticTetra\': <method \'SetCellTypeToQuadraticTetra\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticHexahedron\': <method \'SetCellTypeToQuadraticHexahedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticWedge\': <method \'SetCellTypeToQuadraticWedge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticPyramid\': <method \'SetCellTypeToQuadraticPyramid\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticLinearQuad\': <method \'SetCellTypeToQuadraticLinearQuad\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBiQuadraticQuad\': <method \'SetCellTypeToBiQuadraticQuad\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToQuadraticLinearWedge\': <method \'SetCellTypeToQuadraticLinearWedge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBiQuadraticQuadraticWedge\': <method \'SetCellTypeToBiQuadraticQuadraticWedge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToTriQuadraticHexahedron\': <method \'SetCellTypeToTriQuadraticHexahedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToTriQuadraticPyramid\': <method \'SetCellTypeToTriQuadraticPyramid\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBiQuadraticQuadraticHexahedron\': <method \'SetCellTypeToBiQuadraticQuadraticHexahedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLagrangeTriangle\': <method \'SetCellTypeToLagrangeTriangle\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLagrangeTetra\': <method \'SetCellTypeToLagrangeTetra\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLagrangeCurve\': <method \'SetCellTypeToLagrangeCurve\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLagrangeQuadrilateral\': <method \'SetCellTypeToLagrangeQuadrilateral\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLagrangeHexahedron\': <method \'SetCellTypeToLagrangeHexahedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToLagrangeWedge\': <method \'SetCellTypeToLagrangeWedge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBezierTriangle\': <method \'SetCellTypeToBezierTriangle\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBezierTetra\': <method \'SetCellTypeToBezierTetra\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBezierCurve\': <method \'SetCellTypeToBezierCurve\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBezierQuadrilateral\': <method \'SetCellTypeToBezierQuadrilateral\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBezierHexahedron\': <method \'SetCellTypeToBezierHexahedron\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'SetCellTypeToBezierWedge\': <method \'SetCellTypeToBezierWedge\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'InstantiateCell\': <method \'InstantiateCell\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'GetRepresentativeCell\': <method \'GetRepresentativeCell\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__new__\': <built-in method __new__ of type object at 0x00007FF81D6236E0>, \'__repr__\': <slot wrapper \'__repr__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__str__\': <slot wrapper \'__str__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__getattribute__\': <slot wrapper \'__getattribute__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__setattr__\': <slot wrapper \'__setattr__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__delattr__\': <slot wrapper \'__delattr__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__dict__\': <attribute \'__dict__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__this__\': <attribute \'__this__\' of \'vtkmodules.vtkCommonDataModel.vtkGenericCell\' objects>, \'__doc__\': "vtkGenericCell - provides thread-safe access to cells\\n\\nSuperclass: vtkCell\\n\\nvtkGenericCell is a class that provides access to concrete types of\\ncells. It\'s main purpose is to allow thread-safe access to cells,\\nsupporting the vtkDataSet::GetCell(vtkGenericCell *) method.\\nvtkGenericCell acts like any type of cell, it just dereferences an\\ninternal representation. The SetCellType() methods use #define\\nconstants; these are defined in the file vtkCellType.h.\\n\\n@sa\\nvtkCell vtkDataSet\\n\\n"})'
    __vtkname__ = 'vtkGenericCell'


