# 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


class vtkPointsProjectedHull(__vtkmodules_vtkCommonCore.vtkPoints):
    """
    vtkPointsProjectedHull - the convex hull of the orthogonal
       projection of the vtkPoints in the 3 coordinate directions
    
    Superclass: vtkPoints
    
    a subclass of vtkPoints, it maintains the counter clockwise
       convex hull of the points (projected orthogonally in the
       three coordinate directions) and has a method to
       test for intersection of that hull with an axis aligned
       rectangle.  This is used for intersection tests of 3D volumes.
    """
    def GetCCWHullX(self, pts, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetCCWHullX(self, pts:[float, ...], len:int) -> int
        C++: int GetCCWHullX(double *pts, int len)
        """
        pass

    def GetCCWHullY(self, pts, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetCCWHullY(self, pts:[float, ...], len:int) -> int
        C++: int GetCCWHullY(double *pts, int len)
        """
        pass

    def GetCCWHullZ(self, pts, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetCCWHullZ(self, pts:[float, ...], len:int) -> int
        C++: int GetCCWHullZ(double *pts, int len)
        """
        pass

    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 GetSizeCCWHullX(self): # real signature unknown; restored from __doc__
        """
        GetSizeCCWHullX(self) -> int
        C++: int GetSizeCCWHullX()
        
        Returns the number of points in the convex hull of the projection
        of the points down the positive x-axis
        """
        return 0

    def GetSizeCCWHullY(self): # real signature unknown; restored from __doc__
        """
        GetSizeCCWHullY(self) -> int
        C++: int GetSizeCCWHullY()
        
        Returns the number of points in the convex hull of the projection
        of the points down the positive y-axis
        """
        return 0

    def GetSizeCCWHullZ(self): # real signature unknown; restored from __doc__
        """
        GetSizeCCWHullZ(self) -> int
        C++: int GetSizeCCWHullZ()
        
        Returns the number of points in the convex hull of the projection
        of the points down the positive z-axis
        """
        return 0

    def Initialize(self): # real signature unknown; restored from __doc__
        """
        Initialize(self) -> None
        C++: void Initialize() override;
        
        Return object to instantiated state.
        """
        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 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) -> vtkPointsProjectedHull
        C++: vtkPointsProjectedHull *NewInstance()
        """
        return vtkPointsProjectedHull

    def RectangleIntersectionX(self, R): # real signature unknown; restored from __doc__
        """
        RectangleIntersectionX(self, R:vtkPoints) -> int
        C++: int RectangleIntersectionX(vtkPoints *R)
        RectangleIntersectionX(self, ymin:float, ymax:float, zmin:float,
            zmax:float) -> int
        C++: int RectangleIntersectionX(double ymin, double ymax,
            double zmin, double zmax)
        
        determine whether the resulting rectangle intersects the convex
        hull of the projection of the points along that axis.
        """
        return 0

    def RectangleIntersectionY(self, R): # real signature unknown; restored from __doc__
        """
        RectangleIntersectionY(self, R:vtkPoints) -> int
        C++: int RectangleIntersectionY(vtkPoints *R)
        RectangleIntersectionY(self, zmin:float, zmax:float, xmin:float,
            xmax:float) -> int
        C++: int RectangleIntersectionY(double zmin, double zmax,
            double xmin, double xmax)
        
        of the parallel projection along the Y axis of the points
        """
        return 0

    def RectangleIntersectionZ(self, R): # real signature unknown; restored from __doc__
        """
        RectangleIntersectionZ(self, R:vtkPoints) -> int
        C++: int RectangleIntersectionZ(vtkPoints *R)
        RectangleIntersectionZ(self, xmin:float, xmax:float, ymin:float,
            ymax:float) -> int
        C++: int RectangleIntersectionZ(double xmin, double xmax,
            double ymin, double ymax)
        
        of the parallel projection along the Z axis of the points
        """
        return 0

    def Reset(self): # real signature unknown; restored from __doc__
        """
        Reset(self) -> None
        C++: void Reset() override;
        
        Make object look empty but do not delete memory.
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkPointsProjectedHull
        C++: static vtkPointsProjectedHull *SafeDownCast(vtkObjectBase *o)
        """
        return vtkPointsProjectedHull

    def Update(self): # real signature unknown; restored from __doc__
        """
        Update(self) -> None
        C++: void Update()
        
        Forces recalculation of convex hulls, use this if you delete/add
        points
        """
        pass

    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__': 'vtkPointsProjectedHull', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'RectangleIntersectionX': <method 'RectangleIntersectionX' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'RectangleIntersectionY': <method 'RectangleIntersectionY' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'RectangleIntersectionZ': <method 'RectangleIntersectionZ' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetCCWHullX': <method 'GetCCWHullX' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetCCWHullY': <method 'GetCCWHullY' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetCCWHullZ': <method 'GetCCWHullZ' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetSizeCCWHullX': <method 'GetSizeCCWHullX' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetSizeCCWHullY': <method 'GetSizeCCWHullY' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'GetSizeCCWHullZ': <method 'GetSizeCCWHullZ' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'Initialize': <method 'Initialize' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'Reset': <method 'Reset' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, 'Update': <method 'Update' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D6425F0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkCommonDataModel.vtkPointsProjectedHull' objects>, '__doc__': 'vtkPointsProjectedHull - the convex hull of the orthogonal\\n   projection of the vtkPoints in the 3 coordinate directions\\n\\nSuperclass: vtkPoints\\n\\na subclass of vtkPoints, it maintains the counter clockwise\\n   convex hull of the points (projected orthogonally in the\\n   three coordinate directions) and has a method to\\n   test for intersection of that hull with an axis aligned\\n   rectangle.  This is used for intersection tests of 3D volumes.\\n\\n'})"
    __vtkname__ = 'vtkPointsProjectedHull'


