# encoding: utf-8
# module vtkmodules.vtkInteractionWidgets
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkInteractionWidgets.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel
import vtkmodules.vtkFiltersSources as __vtkmodules_vtkFiltersSources
import vtkmodules.vtkRenderingContext2D as __vtkmodules_vtkRenderingContext2D
import vtkmodules.vtkRenderingCore as __vtkmodules_vtkRenderingCore


from .vtkPointPlacer import vtkPointPlacer

class vtkFocalPlanePointPlacer(vtkPointPlacer):
    """
    vtkFocalPlanePointPlacer - no description provided.
    
    Superclass: vtkPointPlacer
    
    See Also:
    """
    def ComputeWorldPosition(self, ren, displayPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        ComputeWorldPosition(self, ren:vtkRenderer, displayPos:[float,
            float], worldPos:[float, float, float], worldOrient:[float,
            float, float, float, float, float, float, float, float])
            -> int
        C++: int ComputeWorldPosition(vtkRenderer *ren,
            double displayPos[2], double worldPos[3],
            double worldOrient[9]) override;
        ComputeWorldPosition(self, ren:vtkRenderer, displayPos:[float,
            float], refWorldPos:[float, float, float], worldPos:[float,
            float, float], worldOrient:[float, float, float, float, float,
             float, float, float, float]) -> int
        C++: int ComputeWorldPosition(vtkRenderer *ren,
            double displayPos[2], double refWorldPos[3],
            double worldPos[3], double worldOrient[9]) override;
        
        Given a renderer and a display position, compute the world
        position and orientation. The orientation computed by the placer
        will always line up with the standard coordinate axes. The world
        position will be computed by projecting the display position onto
        the focal plane. This method is typically used to place a point
        for the first time.
        """
        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 GetOffset(self): # real signature unknown; restored from __doc__
        """
        GetOffset(self) -> float
        C++: virtual double GetOffset()
        """
        return 0.0

    def GetPointBounds(self): # real signature unknown; restored from __doc__
        """
        GetPointBounds(self) -> (float, float, float, float, float, float)
        C++: virtual double *GetPointBounds()
        """
        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) -> vtkFocalPlanePointPlacer
        C++: vtkFocalPlanePointPlacer *NewInstance()
        """
        return vtkFocalPlanePointPlacer

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkFocalPlanePointPlacer
        C++: static vtkFocalPlanePointPlacer *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkFocalPlanePointPlacer

    def SetOffset(self, _arg): # real signature unknown; restored from __doc__
        """
        SetOffset(self, _arg:float) -> None
        C++: virtual void SetOffset(double _arg)
        
        Optionally specify a signed offset from the focal plane for the
        points to be placed at.  If negative, the constraint plane is
        offset closer to the camera. If positive, its further away from
        the camera.
        """
        pass

    def SetPointBounds(self, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6): # real signature unknown; restored from __doc__
        """
        SetPointBounds(self, _arg1:float, _arg2:float, _arg3:float,
            _arg4:float, _arg5:float, _arg6:float) -> None
        C++: virtual void SetPointBounds(double _arg1, double _arg2,
            double _arg3, double _arg4, double _arg5, double _arg6)
        SetPointBounds(self, _arg:(float, float, float, float, float,
            float)) -> None
        C++: virtual void SetPointBounds(const double _arg[6])
        
        Optionally Restrict the points to a set of bounds. The placer
        will invalidate points outside these bounds.
        """
        pass

    def ValidateWorldPosition(self, worldPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        ValidateWorldPosition(self, worldPos:[float, float, float]) -> int
        C++: int ValidateWorldPosition(double worldPos[3]) override;
        ValidateWorldPosition(self, worldPos:[float, float, float],
            worldOrient:[float, float, float, float, float, float, float,
            float, float]) -> int
        C++: int ValidateWorldPosition(double worldPos[3],
            double worldOrient[9]) override;
        
        Validate a world position. All world positions are valid so these
        methods always return 1.
        """
        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__': 'vtkFocalPlanePointPlacer', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'ComputeWorldPosition': <method 'ComputeWorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'ValidateWorldPosition': <method 'ValidateWorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'SetOffset': <method 'SetOffset' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'GetOffset': <method 'GetOffset' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'SetPointBounds': <method 'SetPointBounds' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, 'GetPointBounds': <method 'GetPointBounds' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D64A1A0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkFocalPlanePointPlacer' objects>, '__doc__': 'vtkFocalPlanePointPlacer - no description provided.\\n\\nSuperclass: vtkPointPlacer\\n\\nSee Also:\\n\\n'})"
    __vtkname__ = 'vtkFocalPlanePointPlacer'


