679 lines
31 KiB
Python
679 lines
31 KiB
Python
|
|
from typing import overload, Any, Callable, TypeVar, Union
|
||
|
|
from typing import Tuple, List, Sequence, MutableSequence
|
||
|
|
|
||
|
|
Callback = Union[Callable[..., None], None]
|
||
|
|
Buffer = TypeVar('Buffer')
|
||
|
|
Pointer = TypeVar('Pointer')
|
||
|
|
Template = TypeVar('Template')
|
||
|
|
|
||
|
|
import vtkmodules.vtkCommonCore
|
||
|
|
import vtkmodules.vtkCommonDataModel
|
||
|
|
|
||
|
|
class vtkBilinearQuadIntersection(object):
|
||
|
|
p00_data:'getset_descriptor'
|
||
|
|
p01_data:'getset_descriptor'
|
||
|
|
p10_data:'getset_descriptor'
|
||
|
|
p11_data:'getset_descriptor'
|
||
|
|
@overload
|
||
|
|
def __init__(self, pt00:'vtkVector3d', Pt01:'vtkVector3d', Pt10:'vtkVector3d', Pt11:'vtkVector3d') -> None: ...
|
||
|
|
@overload
|
||
|
|
def __init__(self) -> None: ...
|
||
|
|
@overload
|
||
|
|
def __init__(self, __a:'vtkBilinearQuadIntersection') -> None: ...
|
||
|
|
def ComputeCartesianCoordinates(self, u:float, v:float) -> 'vtkVector3d': ...
|
||
|
|
def GetP00Data(self) -> Pointer: ...
|
||
|
|
def GetP01Data(self) -> Pointer: ...
|
||
|
|
def GetP10Data(self) -> Pointer: ...
|
||
|
|
def GetP11Data(self) -> Pointer: ...
|
||
|
|
def RayIntersection(self, r:'vtkVector3d', q:'vtkVector3d', uv:'vtkVector3d') -> bool: ...
|
||
|
|
|
||
|
|
class vtkCardinalSpline(vtkmodules.vtkCommonDataModel.vtkSpline):
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Compute(self) -> None: ...
|
||
|
|
def DeepCopy(self, s:'vtkSpline') -> None: ...
|
||
|
|
def Evaluate(self, t:float) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkCardinalSpline': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkCardinalSpline': ...
|
||
|
|
|
||
|
|
class vtkKochanekSpline(vtkmodules.vtkCommonDataModel.vtkSpline):
|
||
|
|
default_bias:'getset_descriptor'
|
||
|
|
default_continuity:'getset_descriptor'
|
||
|
|
default_tension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Compute(self) -> None: ...
|
||
|
|
def DeepCopy(self, s:'vtkSpline') -> None: ...
|
||
|
|
def Evaluate(self, t:float) -> float: ...
|
||
|
|
def GetDefaultBias(self) -> float: ...
|
||
|
|
def GetDefaultContinuity(self) -> float: ...
|
||
|
|
def GetDefaultTension(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkKochanekSpline': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkKochanekSpline': ...
|
||
|
|
def SetDefaultBias(self, _arg:float) -> None: ...
|
||
|
|
def SetDefaultContinuity(self, _arg:float) -> None: ...
|
||
|
|
def SetDefaultTension(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricFunction(vtkmodules.vtkCommonCore.vtkObject):
|
||
|
|
clockwise_ordering:'getset_descriptor'
|
||
|
|
derivatives_available:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
join_u:'getset_descriptor'
|
||
|
|
join_v:'getset_descriptor'
|
||
|
|
join_w:'getset_descriptor'
|
||
|
|
maximum_u:'getset_descriptor'
|
||
|
|
maximum_v:'getset_descriptor'
|
||
|
|
maximum_w:'getset_descriptor'
|
||
|
|
minimum_u:'getset_descriptor'
|
||
|
|
minimum_v:'getset_descriptor'
|
||
|
|
minimum_w:'getset_descriptor'
|
||
|
|
twist_u:'getset_descriptor'
|
||
|
|
twist_v:'getset_descriptor'
|
||
|
|
twist_w:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def ClockwiseOrderingOff(self) -> None: ...
|
||
|
|
def ClockwiseOrderingOn(self) -> None: ...
|
||
|
|
def DerivativesAvailableOff(self) -> None: ...
|
||
|
|
def DerivativesAvailableOn(self) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetClockwiseOrdering(self) -> int: ...
|
||
|
|
def GetClockwiseOrderingMaxValue(self) -> int: ...
|
||
|
|
def GetClockwiseOrderingMinValue(self) -> int: ...
|
||
|
|
def GetDerivativesAvailable(self) -> int: ...
|
||
|
|
def GetDerivativesAvailableMaxValue(self) -> int: ...
|
||
|
|
def GetDerivativesAvailableMinValue(self) -> int: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetJoinU(self) -> int: ...
|
||
|
|
def GetJoinUMaxValue(self) -> int: ...
|
||
|
|
def GetJoinUMinValue(self) -> int: ...
|
||
|
|
def GetJoinV(self) -> int: ...
|
||
|
|
def GetJoinVMaxValue(self) -> int: ...
|
||
|
|
def GetJoinVMinValue(self) -> int: ...
|
||
|
|
def GetJoinW(self) -> int: ...
|
||
|
|
def GetJoinWMaxValue(self) -> int: ...
|
||
|
|
def GetJoinWMinValue(self) -> int: ...
|
||
|
|
def GetMaximumU(self) -> float: ...
|
||
|
|
def GetMaximumV(self) -> float: ...
|
||
|
|
def GetMaximumW(self) -> float: ...
|
||
|
|
def GetMinimumU(self) -> float: ...
|
||
|
|
def GetMinimumV(self) -> float: ...
|
||
|
|
def GetMinimumW(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetTwistU(self) -> int: ...
|
||
|
|
def GetTwistUMaxValue(self) -> int: ...
|
||
|
|
def GetTwistUMinValue(self) -> int: ...
|
||
|
|
def GetTwistV(self) -> int: ...
|
||
|
|
def GetTwistVMaxValue(self) -> int: ...
|
||
|
|
def GetTwistVMinValue(self) -> int: ...
|
||
|
|
def GetTwistW(self) -> int: ...
|
||
|
|
def GetTwistWMaxValue(self) -> int: ...
|
||
|
|
def GetTwistWMinValue(self) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def JoinUOff(self) -> None: ...
|
||
|
|
def JoinUOn(self) -> None: ...
|
||
|
|
def JoinVOff(self) -> None: ...
|
||
|
|
def JoinVOn(self) -> None: ...
|
||
|
|
def JoinWOff(self) -> None: ...
|
||
|
|
def JoinWOn(self) -> None: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricFunction': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricFunction': ...
|
||
|
|
def SetClockwiseOrdering(self, _arg:int) -> None: ...
|
||
|
|
def SetDerivativesAvailable(self, _arg:int) -> None: ...
|
||
|
|
def SetJoinU(self, _arg:int) -> None: ...
|
||
|
|
def SetJoinV(self, _arg:int) -> None: ...
|
||
|
|
def SetJoinW(self, _arg:int) -> None: ...
|
||
|
|
def SetMaximumU(self, _arg:float) -> None: ...
|
||
|
|
def SetMaximumV(self, _arg:float) -> None: ...
|
||
|
|
def SetMaximumW(self, _arg:float) -> None: ...
|
||
|
|
def SetMinimumU(self, _arg:float) -> None: ...
|
||
|
|
def SetMinimumV(self, _arg:float) -> None: ...
|
||
|
|
def SetMinimumW(self, _arg:float) -> None: ...
|
||
|
|
def SetTwistU(self, _arg:int) -> None: ...
|
||
|
|
def SetTwistV(self, _arg:int) -> None: ...
|
||
|
|
def SetTwistW(self, _arg:int) -> None: ...
|
||
|
|
def TwistUOff(self) -> None: ...
|
||
|
|
def TwistUOn(self) -> None: ...
|
||
|
|
def TwistVOff(self) -> None: ...
|
||
|
|
def TwistVOn(self) -> None: ...
|
||
|
|
def TwistWOff(self) -> None: ...
|
||
|
|
def TwistWOn(self) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricBohemianDome(vtkParametricFunction):
|
||
|
|
a:'getset_descriptor'
|
||
|
|
b:'getset_descriptor'
|
||
|
|
c:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetA(self) -> float: ...
|
||
|
|
def GetB(self) -> float: ...
|
||
|
|
def GetC(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricBohemianDome': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricBohemianDome': ...
|
||
|
|
def SetA(self, _arg:float) -> None: ...
|
||
|
|
def SetB(self, _arg:float) -> None: ...
|
||
|
|
def SetC(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricBour(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricBour': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricBour': ...
|
||
|
|
|
||
|
|
class vtkParametricBoy(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
z_scale:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetZScale(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricBoy': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricBoy': ...
|
||
|
|
def SetZScale(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricCatalanMinimal(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricCatalanMinimal': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricCatalanMinimal': ...
|
||
|
|
|
||
|
|
class vtkParametricConicSpiral(vtkParametricFunction):
|
||
|
|
a:'getset_descriptor'
|
||
|
|
b:'getset_descriptor'
|
||
|
|
c:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
n:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetA(self) -> float: ...
|
||
|
|
def GetB(self) -> float: ...
|
||
|
|
def GetC(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetN(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricConicSpiral': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricConicSpiral': ...
|
||
|
|
def SetA(self, _arg:float) -> None: ...
|
||
|
|
def SetB(self, _arg:float) -> None: ...
|
||
|
|
def SetC(self, _arg:float) -> None: ...
|
||
|
|
def SetN(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricCrossCap(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricCrossCap': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricCrossCap': ...
|
||
|
|
|
||
|
|
class vtkParametricDini(vtkParametricFunction):
|
||
|
|
a:'getset_descriptor'
|
||
|
|
b:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetA(self) -> float: ...
|
||
|
|
def GetB(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricDini': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricDini': ...
|
||
|
|
def SetA(self, _arg:float) -> None: ...
|
||
|
|
def SetB(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricEllipsoid(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
x_radius:'getset_descriptor'
|
||
|
|
y_radius:'getset_descriptor'
|
||
|
|
z_radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetXRadius(self) -> float: ...
|
||
|
|
def GetYRadius(self) -> float: ...
|
||
|
|
def GetZRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricEllipsoid': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricEllipsoid': ...
|
||
|
|
def SetXRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetYRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetZRadius(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricEnneper(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricEnneper': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricEnneper': ...
|
||
|
|
|
||
|
|
class vtkParametricFigure8Klein(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricFigure8Klein': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricFigure8Klein': ...
|
||
|
|
def SetRadius(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricHenneberg(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricHenneberg': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricHenneberg': ...
|
||
|
|
|
||
|
|
class vtkParametricKlein(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricKlein': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricKlein': ...
|
||
|
|
|
||
|
|
class vtkParametricKuen(vtkParametricFunction):
|
||
|
|
delta_v0:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDeltaV0(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricKuen': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricKuen': ...
|
||
|
|
def SetDeltaV0(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricMobius(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricMobius': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricMobius': ...
|
||
|
|
def SetRadius(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricPluckerConoid(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
n:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetN(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricPluckerConoid': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricPluckerConoid': ...
|
||
|
|
def SetN(self, _arg:int) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricPseudosphere(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricPseudosphere': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricPseudosphere': ...
|
||
|
|
|
||
|
|
class vtkParametricRandomHills(vtkParametricFunction):
|
||
|
|
allow_random_generation:'getset_descriptor'
|
||
|
|
amplitude_scale_factor:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
hill_amplitude:'getset_descriptor'
|
||
|
|
hill_x_variance:'getset_descriptor'
|
||
|
|
hill_y_variance:'getset_descriptor'
|
||
|
|
number_of_hills:'getset_descriptor'
|
||
|
|
random_seed:'getset_descriptor'
|
||
|
|
x_variance_scale_factor:'getset_descriptor'
|
||
|
|
y_variance_scale_factor:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def AllowRandomGenerationOff(self) -> None: ...
|
||
|
|
def AllowRandomGenerationOn(self) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetAllowRandomGeneration(self) -> int: ...
|
||
|
|
def GetAllowRandomGenerationMaxValue(self) -> int: ...
|
||
|
|
def GetAllowRandomGenerationMinValue(self) -> int: ...
|
||
|
|
def GetAmplitudeScaleFactor(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetHillAmplitude(self) -> float: ...
|
||
|
|
def GetHillXVariance(self) -> float: ...
|
||
|
|
def GetHillYVariance(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetNumberOfHills(self) -> int: ...
|
||
|
|
def GetRandomSeed(self) -> int: ...
|
||
|
|
def GetXVarianceScaleFactor(self) -> float: ...
|
||
|
|
def GetYVarianceScaleFactor(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricRandomHills': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricRandomHills': ...
|
||
|
|
def SetAllowRandomGeneration(self, _arg:int) -> None: ...
|
||
|
|
def SetAmplitudeScaleFactor(self, _arg:float) -> None: ...
|
||
|
|
def SetHillAmplitude(self, _arg:float) -> None: ...
|
||
|
|
def SetHillXVariance(self, _arg:float) -> None: ...
|
||
|
|
def SetHillYVariance(self, _arg:float) -> None: ...
|
||
|
|
def SetNumberOfHills(self, _arg:int) -> None: ...
|
||
|
|
def SetRandomSeed(self, _arg:int) -> None: ...
|
||
|
|
def SetXVarianceScaleFactor(self, _arg:float) -> None: ...
|
||
|
|
def SetYVarianceScaleFactor(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricRoman(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricRoman': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricRoman': ...
|
||
|
|
def SetRadius(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricSpline(vtkParametricFunction):
|
||
|
|
closed:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
left_constraint:'getset_descriptor'
|
||
|
|
left_value:'getset_descriptor'
|
||
|
|
number_of_points:'getset_descriptor'
|
||
|
|
parameterize_by_length:'getset_descriptor'
|
||
|
|
points:'getset_descriptor'
|
||
|
|
right_constraint:'getset_descriptor'
|
||
|
|
right_value:'getset_descriptor'
|
||
|
|
x_spline:'getset_descriptor'
|
||
|
|
y_spline:'getset_descriptor'
|
||
|
|
z_spline:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def ClosedOff(self) -> None: ...
|
||
|
|
def ClosedOn(self) -> None: ...
|
||
|
|
def Evaluate(self, u:MutableSequence[float], Pt:MutableSequence[float], Du:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, u:MutableSequence[float], Pt:MutableSequence[float], Du:MutableSequence[float]) -> float: ...
|
||
|
|
def GetClosed(self) -> int: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetLeftConstraint(self) -> int: ...
|
||
|
|
def GetLeftConstraintMaxValue(self) -> int: ...
|
||
|
|
def GetLeftConstraintMinValue(self) -> int: ...
|
||
|
|
def GetLeftValue(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetParameterizeByLength(self) -> int: ...
|
||
|
|
def GetPoints(self) -> 'vtkPoints': ...
|
||
|
|
def GetRightConstraint(self) -> int: ...
|
||
|
|
def GetRightConstraintMaxValue(self) -> int: ...
|
||
|
|
def GetRightConstraintMinValue(self) -> int: ...
|
||
|
|
def GetRightValue(self) -> float: ...
|
||
|
|
def GetXSpline(self) -> 'vtkSpline': ...
|
||
|
|
def GetYSpline(self) -> 'vtkSpline': ...
|
||
|
|
def GetZSpline(self) -> 'vtkSpline': ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricSpline': ...
|
||
|
|
def ParameterizeByLengthOff(self) -> None: ...
|
||
|
|
def ParameterizeByLengthOn(self) -> None: ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricSpline': ...
|
||
|
|
def SetClosed(self, _arg:int) -> None: ...
|
||
|
|
def SetLeftConstraint(self, _arg:int) -> None: ...
|
||
|
|
def SetLeftValue(self, _arg:float) -> None: ...
|
||
|
|
def SetNumberOfPoints(self, numPts:int) -> None: ...
|
||
|
|
def SetParameterizeByLength(self, _arg:int) -> None: ...
|
||
|
|
def SetPoint(self, index:int, x:float, y:float, z:float) -> None: ...
|
||
|
|
def SetPoints(self, __a:'vtkPoints') -> None: ...
|
||
|
|
def SetRightConstraint(self, _arg:int) -> None: ...
|
||
|
|
def SetRightValue(self, _arg:float) -> None: ...
|
||
|
|
def SetXSpline(self, __a:'vtkSpline') -> None: ...
|
||
|
|
def SetYSpline(self, __a:'vtkSpline') -> None: ...
|
||
|
|
def SetZSpline(self, __a:'vtkSpline') -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricSuperEllipsoid(vtkParametricFunction):
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
n1:'getset_descriptor'
|
||
|
|
n2:'getset_descriptor'
|
||
|
|
x_radius:'getset_descriptor'
|
||
|
|
y_radius:'getset_descriptor'
|
||
|
|
z_radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetN1(self) -> float: ...
|
||
|
|
def GetN2(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetXRadius(self) -> float: ...
|
||
|
|
def GetYRadius(self) -> float: ...
|
||
|
|
def GetZRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricSuperEllipsoid': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricSuperEllipsoid': ...
|
||
|
|
def SetN1(self, _arg:float) -> None: ...
|
||
|
|
def SetN2(self, _arg:float) -> None: ...
|
||
|
|
def SetXRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetYRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetZRadius(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricSuperToroid(vtkParametricFunction):
|
||
|
|
cross_section_radius:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
n1:'getset_descriptor'
|
||
|
|
n2:'getset_descriptor'
|
||
|
|
ring_radius:'getset_descriptor'
|
||
|
|
x_radius:'getset_descriptor'
|
||
|
|
y_radius:'getset_descriptor'
|
||
|
|
z_radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetCrossSectionRadius(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetN1(self) -> float: ...
|
||
|
|
def GetN2(self) -> float: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetRingRadius(self) -> float: ...
|
||
|
|
def GetXRadius(self) -> float: ...
|
||
|
|
def GetYRadius(self) -> float: ...
|
||
|
|
def GetZRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricSuperToroid': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricSuperToroid': ...
|
||
|
|
def SetCrossSectionRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetN1(self, _arg:float) -> None: ...
|
||
|
|
def SetN2(self, _arg:float) -> None: ...
|
||
|
|
def SetRingRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetXRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetYRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetZRadius(self, _arg:float) -> None: ...
|
||
|
|
|
||
|
|
class vtkParametricTorus(vtkParametricFunction):
|
||
|
|
cross_section_radius:'getset_descriptor'
|
||
|
|
dimension:'getset_descriptor'
|
||
|
|
ring_radius:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
def Evaluate(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> None: ...
|
||
|
|
def EvaluateScalar(self, uvw:MutableSequence[float], Pt:MutableSequence[float], Duvw:MutableSequence[float]) -> float: ...
|
||
|
|
def GetCrossSectionRadius(self) -> float: ...
|
||
|
|
def GetDimension(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetRingRadius(self) -> float: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkParametricTorus': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkParametricTorus': ...
|
||
|
|
def SetCrossSectionRadius(self, _arg:float) -> None: ...
|
||
|
|
def SetRingRadius(self, _arg:float) -> None: ...
|
||
|
|
|