// python wrapper for vtkPolarAxesActor // #define VTK_WRAPPING_CXX #define VTK_STREAMS_FWD_ONLY #include "vtkPythonArgs.h" #include "vtkPythonOverload.h" #include "vtkConfigure.h" #include #include #include "vtkVariant.h" #include "vtkIndent.h" #include "vtkPolarAxesActor.h" extern "C" { VTK_ABI_EXPORT void PyVTKAddFile_vtkPolarAxesActor(PyObject *); } extern "C" { VTK_ABI_EXPORT PyObject *PyvtkPolarAxesActor_ClassNew(); } #ifndef DECLARED_PyvtkActor_ClassNew extern "C" { PyObject *PyvtkActor_ClassNew(); } #define DECLARED_PyvtkActor_ClassNew #endif static const char *PyvtkPolarAxesActor_Doc = "vtkPolarAxesActor - create an actor of a polar axes -\n\n" "Superclass: vtkActor\n\n" "vtkPolarAxesActor is a composite actor that draws polar axes in a\n" "specified plane for a give pole. Currently the plane has to be the xy\n" "plane.\n\n" "@par Thanks: This class was written by Philippe Pebay, Kitware SAS\n" "2011. This work was supported by CEA/DIF - Commissariat a l'Energie\n" "Atomique, Centre DAM Ile-De-France, BP12, F-91297 Arpajon, France.\n\n" "@sa\n" "vtkActor vtkAxisActor vtkPolarAxesActor\n\n"; static PyTypeObject PyvtkPolarAxesActor_ExponentLocation_Type = { PyVarObject_HEAD_INIT(&PyType_Type, 0) "vtkRenderingAnnotationPython.vtkPolarAxesActor.ExponentLocation", // tp_name sizeof(PyIntObject), // tp_basicsize 0, // tp_itemsize nullptr, // tp_dealloc 0, // tp_print nullptr, // tp_getattr nullptr, // tp_setattr nullptr, // tp_compare nullptr, // tp_repr nullptr, // tp_as_number nullptr, // tp_as_sequence nullptr, // tp_as_mapping nullptr, // tp_hash nullptr, // tp_call nullptr, // tp_str nullptr, // tp_getattro nullptr, // tp_setattro nullptr, // tp_as_buffer Py_TPFLAGS_DEFAULT, // tp_flags nullptr, // tp_doc nullptr, // tp_traverse nullptr, // tp_clear nullptr, // tp_richcompare 0, // tp_weaklistoffset nullptr, // tp_iter nullptr, // tp_iternext nullptr, // tp_methods nullptr, // tp_members nullptr, // tp_getset &PyInt_Type, // tp_base nullptr, // tp_dict nullptr, // tp_descr_get nullptr, // tp_descr_set 0, // tp_dictoffset nullptr, // tp_init nullptr, // tp_alloc nullptr, // tp_new PyObject_Del, // tp_free nullptr, // tp_is_gc nullptr, // tp_bases nullptr, // tp_mro nullptr, // tp_cache nullptr, // tp_subclasses nullptr, // tp_weaklist VTK_WRAP_PYTHON_SUPPRESS_UNINITIALIZED }; PyObject *PyvtkPolarAxesActor_ExponentLocation_FromEnum(int val) { #ifdef VTK_PY3K PyObject *args = Py_BuildValue("(i)", val); PyObject *obj = PyLong_Type.tp_new(&PyvtkPolarAxesActor_ExponentLocation_Type, args, nullptr); Py_DECREF(args); return obj; #else PyIntObject *self = PyObject_New(PyIntObject, &PyvtkPolarAxesActor_ExponentLocation_Type); self->ob_ival = val; return (PyObject *)self; #endif } static PyTypeObject PyvtkPolarAxesActor_TitleLocation_Type = { PyVarObject_HEAD_INIT(&PyType_Type, 0) "vtkRenderingAnnotationPython.vtkPolarAxesActor.TitleLocation", // tp_name sizeof(PyIntObject), // tp_basicsize 0, // tp_itemsize nullptr, // tp_dealloc 0, // tp_print nullptr, // tp_getattr nullptr, // tp_setattr nullptr, // tp_compare nullptr, // tp_repr nullptr, // tp_as_number nullptr, // tp_as_sequence nullptr, // tp_as_mapping nullptr, // tp_hash nullptr, // tp_call nullptr, // tp_str nullptr, // tp_getattro nullptr, // tp_setattro nullptr, // tp_as_buffer Py_TPFLAGS_DEFAULT, // tp_flags nullptr, // tp_doc nullptr, // tp_traverse nullptr, // tp_clear nullptr, // tp_richcompare 0, // tp_weaklistoffset nullptr, // tp_iter nullptr, // tp_iternext nullptr, // tp_methods nullptr, // tp_members nullptr, // tp_getset &PyInt_Type, // tp_base nullptr, // tp_dict nullptr, // tp_descr_get nullptr, // tp_descr_set 0, // tp_dictoffset nullptr, // tp_init nullptr, // tp_alloc nullptr, // tp_new PyObject_Del, // tp_free nullptr, // tp_is_gc nullptr, // tp_bases nullptr, // tp_mro nullptr, // tp_cache nullptr, // tp_subclasses nullptr, // tp_weaklist VTK_WRAP_PYTHON_SUPPRESS_UNINITIALIZED }; PyObject *PyvtkPolarAxesActor_TitleLocation_FromEnum(int val) { #ifdef VTK_PY3K PyObject *args = Py_BuildValue("(i)", val); PyObject *obj = PyLong_Type.tp_new(&PyvtkPolarAxesActor_TitleLocation_Type, args, nullptr); Py_DECREF(args); return obj; #else PyIntObject *self = PyObject_New(PyIntObject, &PyvtkPolarAxesActor_TitleLocation_Type); self->ob_ival = val; return (PyObject *)self; #endif } static PyObject * PyvtkPolarAxesActor_IsTypeOf(PyObject *, PyObject *args) { vtkPythonArgs ap(args, "IsTypeOf"); char *temp0 = nullptr; PyObject *result = nullptr; if (ap.CheckArgCount(1) && ap.GetValue(temp0)) { int tempr = vtkPolarAxesActor::IsTypeOf(temp0); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_IsA(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "IsA"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); char *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { int tempr = (ap.IsBound() ? op->IsA(temp0) : op->vtkPolarAxesActor::IsA(temp0)); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SafeDownCast(PyObject *, PyObject *args) { vtkPythonArgs ap(args, "SafeDownCast"); vtkObjectBase *temp0 = nullptr; PyObject *result = nullptr; if (ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkObjectBase")) { vtkPolarAxesActor *tempr = vtkPolarAxesActor::SafeDownCast(temp0); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_NewInstance(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "NewInstance"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkPolarAxesActor *tempr = (ap.IsBound() ? op->NewInstance() : op->vtkPolarAxesActor::NewInstance()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); if (result && PyVTKObject_Check(result)) { PyVTKObject_GetObject(result)->UnRegister(0); PyVTKObject_SetFlag(result, VTK_PYTHON_IGNORE_UNREGISTER, 1); } } } return result; } static PyObject * PyvtkPolarAxesActor_RenderOpaqueGeometry(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RenderOpaqueGeometry"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkViewport *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkViewport")) { int tempr = (ap.IsBound() ? op->RenderOpaqueGeometry(temp0) : op->vtkPolarAxesActor::RenderOpaqueGeometry(temp0)); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_RenderOverlay(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RenderOverlay"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkViewport *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkViewport")) { int tempr = (ap.IsBound() ? op->RenderOverlay(temp0) : op->vtkPolarAxesActor::RenderOverlay(temp0)); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_RenderTranslucentPolygonalGeometry(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RenderTranslucentPolygonalGeometry"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkViewport *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkViewport")) { int tempr = (ap.IsBound() ? op->RenderTranslucentPolygonalGeometry(temp0) : op->vtkPolarAxesActor::RenderTranslucentPolygonalGeometry(temp0)); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPole_s1(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPole"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); const int size0 = 3; double temp0[3]; double save0[3]; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetArray(temp0, size0)) { ap.SaveArray(temp0, save0, size0); if (ap.IsBound()) { op->SetPole(temp0); } else { op->vtkPolarAxesActor::SetPole(temp0); } if (ap.ArrayHasChanged(temp0, save0, size0) && !ap.ErrorOccurred()) { ap.SetArray(0, temp0, size0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPole_s2(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPole"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; double temp1; double temp2; PyObject *result = nullptr; if (op && ap.CheckArgCount(3) && ap.GetValue(temp0) && ap.GetValue(temp1) && ap.GetValue(temp2)) { if (ap.IsBound()) { op->SetPole(temp0, temp1, temp2); } else { op->vtkPolarAxesActor::SetPole(temp0, temp1, temp2); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPole(PyObject *self, PyObject *args) { int nargs = vtkPythonArgs::GetArgCount(self, args); switch(nargs) { case 1: return PyvtkPolarAxesActor_SetPole_s1(self, args); case 3: return PyvtkPolarAxesActor_SetPole_s2(self, args); } vtkPythonArgs::ArgCountError(nargs, "SetPole"); return nullptr; } static PyObject * PyvtkPolarAxesActor_GetPole(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPole"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int sizer = 3; PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double *tempr = (ap.IsBound() ? op->GetPole() : op->vtkPolarAxesActor::GetPole()); if (!ap.ErrorOccurred()) { result = ap.BuildTuple(tempr, sizer); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLog(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLog"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); bool temp0 = false; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetLog(temp0); } else { op->vtkPolarAxesActor::SetLog(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLog(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLog"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { bool tempr = (ap.IsBound() ? op->GetLog() : op->vtkPolarAxesActor::GetLog()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_LogOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "LogOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->LogOn(); } else { op->vtkPolarAxesActor::LogOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_LogOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "LogOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->LogOff(); } else { op->vtkPolarAxesActor::LogOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRequestedNumberOfRadialAxes(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRequestedNumberOfRadialAxes"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkIdType temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRequestedNumberOfRadialAxes(temp0); } else { op->vtkPolarAxesActor::SetRequestedNumberOfRadialAxes(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRequestedNumberOfRadialAxesMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRequestedNumberOfRadialAxesMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkIdType tempr = (ap.IsBound() ? op->GetRequestedNumberOfRadialAxesMinValue() : op->vtkPolarAxesActor::GetRequestedNumberOfRadialAxesMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRequestedNumberOfRadialAxesMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRequestedNumberOfRadialAxesMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkIdType tempr = (ap.IsBound() ? op->GetRequestedNumberOfRadialAxesMaxValue() : op->vtkPolarAxesActor::GetRequestedNumberOfRadialAxesMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRequestedNumberOfRadialAxes(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRequestedNumberOfRadialAxes"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkIdType tempr = (ap.IsBound() ? op->GetRequestedNumberOfRadialAxes() : op->vtkPolarAxesActor::GetRequestedNumberOfRadialAxes()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetNumberOfPolarAxisTicks(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetNumberOfPolarAxisTicks"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetNumberOfPolarAxisTicks(temp0); } else { op->vtkPolarAxesActor::SetNumberOfPolarAxisTicks(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetNumberOfPolarAxisTicks(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetNumberOfPolarAxisTicks"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetNumberOfPolarAxisTicks() : op->vtkPolarAxesActor::GetNumberOfPolarAxisTicks()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetAutoSubdividePolarAxis(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetAutoSubdividePolarAxis"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); bool temp0 = false; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetAutoSubdividePolarAxis(temp0); } else { op->vtkPolarAxesActor::SetAutoSubdividePolarAxis(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetAutoSubdividePolarAxis(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetAutoSubdividePolarAxis"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { bool tempr = (ap.IsBound() ? op->GetAutoSubdividePolarAxis() : op->vtkPolarAxesActor::GetAutoSubdividePolarAxis()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_AutoSubdividePolarAxisOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AutoSubdividePolarAxisOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->AutoSubdividePolarAxisOn(); } else { op->vtkPolarAxesActor::AutoSubdividePolarAxisOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_AutoSubdividePolarAxisOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AutoSubdividePolarAxisOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->AutoSubdividePolarAxisOff(); } else { op->vtkPolarAxesActor::AutoSubdividePolarAxisOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRange_s1(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRange"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; double temp1; PyObject *result = nullptr; if (op && ap.CheckArgCount(2) && ap.GetValue(temp0) && ap.GetValue(temp1)) { if (ap.IsBound()) { op->SetRange(temp0, temp1); } else { op->vtkPolarAxesActor::SetRange(temp0, temp1); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRange_s2(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRange"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); const int size0 = 2; double temp0[2]; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetArray(temp0, size0)) { if (ap.IsBound()) { op->SetRange(temp0); } else { op->vtkPolarAxesActor::SetRange(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRange(PyObject *self, PyObject *args) { int nargs = vtkPythonArgs::GetArgCount(self, args); switch(nargs) { case 2: return PyvtkPolarAxesActor_SetRange_s1(self, args); case 1: return PyvtkPolarAxesActor_SetRange_s2(self, args); } vtkPythonArgs::ArgCountError(nargs, "SetRange"); return nullptr; } static PyObject * PyvtkPolarAxesActor_GetRange(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRange"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int sizer = 2; PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double *tempr = (ap.IsBound() ? op->GetRange() : op->vtkPolarAxesActor::GetRange()); if (!ap.ErrorOccurred()) { result = ap.BuildTuple(tempr, sizer); } } return result; } static PyObject * PyvtkPolarAxesActor_SetMinimumRadius(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetMinimumRadius"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetMinimumRadius(temp0); } else { op->vtkPolarAxesActor::SetMinimumRadius(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetMinimumRadius(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetMinimumRadius"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetMinimumRadius() : op->vtkPolarAxesActor::GetMinimumRadius()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetMaximumRadius(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetMaximumRadius"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetMaximumRadius(temp0); } else { op->vtkPolarAxesActor::SetMaximumRadius(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetMaximumRadius(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetMaximumRadius"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetMaximumRadius() : op->vtkPolarAxesActor::GetMaximumRadius()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetMinimumAngle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetMinimumAngle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetMinimumAngle(temp0); } else { op->vtkPolarAxesActor::SetMinimumAngle(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetMinimumAngle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetMinimumAngle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetMinimumAngle() : op->vtkPolarAxesActor::GetMinimumAngle()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetMaximumAngle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetMaximumAngle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetMaximumAngle(temp0); } else { op->vtkPolarAxesActor::SetMaximumAngle(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetMaximumAngle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetMaximumAngle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetMaximumAngle() : op->vtkPolarAxesActor::GetMaximumAngle()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetSmallestVisiblePolarAngle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetSmallestVisiblePolarAngle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetSmallestVisiblePolarAngle(temp0); } else { op->vtkPolarAxesActor::SetSmallestVisiblePolarAngle(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetSmallestVisiblePolarAngleMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetSmallestVisiblePolarAngleMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetSmallestVisiblePolarAngleMinValue() : op->vtkPolarAxesActor::GetSmallestVisiblePolarAngleMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetSmallestVisiblePolarAngleMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetSmallestVisiblePolarAngleMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetSmallestVisiblePolarAngleMaxValue() : op->vtkPolarAxesActor::GetSmallestVisiblePolarAngleMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetSmallestVisiblePolarAngle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetSmallestVisiblePolarAngle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetSmallestVisiblePolarAngle() : op->vtkPolarAxesActor::GetSmallestVisiblePolarAngle()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetTickLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetTickLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetTickLocation(temp0); } else { op->vtkPolarAxesActor::SetTickLocation(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetTickLocationMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetTickLocationMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetTickLocationMinValue() : op->vtkPolarAxesActor::GetTickLocationMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetTickLocationMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetTickLocationMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetTickLocationMaxValue() : op->vtkPolarAxesActor::GetTickLocationMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetTickLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetTickLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetTickLocation() : op->vtkPolarAxesActor::GetTickLocation()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRadialUnits(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRadialUnits"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); bool temp0 = false; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRadialUnits(temp0); } else { op->vtkPolarAxesActor::SetRadialUnits(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialUnits(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialUnits"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { bool tempr = (ap.IsBound() ? op->GetRadialUnits() : op->vtkPolarAxesActor::GetRadialUnits()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetScreenSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetScreenSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetScreenSize(temp0); } else { op->vtkPolarAxesActor::SetScreenSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetScreenSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetScreenSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetScreenSize() : op->vtkPolarAxesActor::GetScreenSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetCamera(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetCamera"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkCamera *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkCamera")) { if (ap.IsBound()) { op->SetCamera(temp0); } else { op->vtkPolarAxesActor::SetCamera(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetCamera(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetCamera"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkCamera *tempr = (ap.IsBound() ? op->GetCamera() : op->vtkPolarAxesActor::GetCamera()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisTitle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisTitle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); char *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisTitle(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisTitle(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTitle(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTitle"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { char *tempr = (ap.IsBound() ? op->GetPolarAxisTitle() : op->vtkPolarAxesActor::GetPolarAxisTitle()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarLabelFormat(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarLabelFormat"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); char *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarLabelFormat(temp0); } else { op->vtkPolarAxesActor::SetPolarLabelFormat(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarLabelFormat(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarLabelFormat"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { char *tempr = (ap.IsBound() ? op->GetPolarLabelFormat() : op->vtkPolarAxesActor::GetPolarLabelFormat()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetExponentLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetExponentLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetExponentLocation(temp0); } else { op->vtkPolarAxesActor::SetExponentLocation(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetExponentLocationMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetExponentLocationMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetExponentLocationMinValue() : op->vtkPolarAxesActor::GetExponentLocationMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetExponentLocationMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetExponentLocationMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetExponentLocationMaxValue() : op->vtkPolarAxesActor::GetExponentLocationMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetExponentLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetExponentLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetExponentLocation() : op->vtkPolarAxesActor::GetExponentLocation()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRadialAngleFormat(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRadialAngleFormat"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); char *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRadialAngleFormat(temp0); } else { op->vtkPolarAxesActor::SetRadialAngleFormat(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialAngleFormat(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialAngleFormat"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { char *tempr = (ap.IsBound() ? op->GetRadialAngleFormat() : op->vtkPolarAxesActor::GetRadialAngleFormat()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_ReleaseGraphicsResources(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ReleaseGraphicsResources"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkWindow *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkWindow")) { if (ap.IsBound()) { op->ReleaseGraphicsResources(temp0); } else { op->vtkPolarAxesActor::ReleaseGraphicsResources(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetEnableDistanceLOD(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetEnableDistanceLOD"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetEnableDistanceLOD(temp0); } else { op->vtkPolarAxesActor::SetEnableDistanceLOD(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetEnableDistanceLOD(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetEnableDistanceLOD"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetEnableDistanceLOD() : op->vtkPolarAxesActor::GetEnableDistanceLOD()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDistanceLODThreshold(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDistanceLODThreshold"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDistanceLODThreshold(temp0); } else { op->vtkPolarAxesActor::SetDistanceLODThreshold(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDistanceLODThresholdMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDistanceLODThresholdMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDistanceLODThresholdMinValue() : op->vtkPolarAxesActor::GetDistanceLODThresholdMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDistanceLODThresholdMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDistanceLODThresholdMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDistanceLODThresholdMaxValue() : op->vtkPolarAxesActor::GetDistanceLODThresholdMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDistanceLODThreshold(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDistanceLODThreshold"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDistanceLODThreshold() : op->vtkPolarAxesActor::GetDistanceLODThreshold()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetEnableViewAngleLOD(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetEnableViewAngleLOD"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetEnableViewAngleLOD(temp0); } else { op->vtkPolarAxesActor::SetEnableViewAngleLOD(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetEnableViewAngleLOD(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetEnableViewAngleLOD"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetEnableViewAngleLOD() : op->vtkPolarAxesActor::GetEnableViewAngleLOD()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetViewAngleLODThreshold(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetViewAngleLODThreshold"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetViewAngleLODThreshold(temp0); } else { op->vtkPolarAxesActor::SetViewAngleLODThreshold(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetViewAngleLODThresholdMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetViewAngleLODThresholdMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetViewAngleLODThresholdMinValue() : op->vtkPolarAxesActor::GetViewAngleLODThresholdMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetViewAngleLODThresholdMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetViewAngleLODThresholdMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetViewAngleLODThresholdMaxValue() : op->vtkPolarAxesActor::GetViewAngleLODThresholdMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetViewAngleLODThreshold(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetViewAngleLODThreshold"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetViewAngleLODThreshold() : op->vtkPolarAxesActor::GetViewAngleLODThreshold()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisVisibility(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarAxisVisibility() : op->vtkPolarAxesActor::GetPolarAxisVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarAxisVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarAxisVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarAxisVisibilityOn(); } else { op->vtkPolarAxesActor::PolarAxisVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarAxisVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarAxisVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarAxisVisibilityOff(); } else { op->vtkPolarAxesActor::PolarAxisVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDrawRadialGridlines(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDrawRadialGridlines"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDrawRadialGridlines(temp0); } else { op->vtkPolarAxesActor::SetDrawRadialGridlines(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDrawRadialGridlines(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDrawRadialGridlines"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetDrawRadialGridlines() : op->vtkPolarAxesActor::GetDrawRadialGridlines()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_DrawRadialGridlinesOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "DrawRadialGridlinesOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->DrawRadialGridlinesOn(); } else { op->vtkPolarAxesActor::DrawRadialGridlinesOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_DrawRadialGridlinesOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "DrawRadialGridlinesOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->DrawRadialGridlinesOff(); } else { op->vtkPolarAxesActor::DrawRadialGridlinesOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDrawPolarArcsGridlines(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDrawPolarArcsGridlines"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDrawPolarArcsGridlines(temp0); } else { op->vtkPolarAxesActor::SetDrawPolarArcsGridlines(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDrawPolarArcsGridlines(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDrawPolarArcsGridlines"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetDrawPolarArcsGridlines() : op->vtkPolarAxesActor::GetDrawPolarArcsGridlines()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_DrawPolarArcsGridlinesOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "DrawPolarArcsGridlinesOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->DrawPolarArcsGridlinesOn(); } else { op->vtkPolarAxesActor::DrawPolarArcsGridlinesOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_DrawPolarArcsGridlinesOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "DrawPolarArcsGridlinesOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->DrawPolarArcsGridlinesOff(); } else { op->vtkPolarAxesActor::DrawPolarArcsGridlinesOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarTitleVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarTitleVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarTitleVisibility(temp0); } else { op->vtkPolarAxesActor::SetPolarTitleVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarTitleVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarTitleVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarTitleVisibility() : op->vtkPolarAxesActor::GetPolarTitleVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarTitleVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarTitleVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarTitleVisibilityOn(); } else { op->vtkPolarAxesActor::PolarTitleVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarTitleVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarTitleVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarTitleVisibilityOff(); } else { op->vtkPolarAxesActor::PolarTitleVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRadialAxisTitleLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRadialAxisTitleLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRadialAxisTitleLocation(temp0); } else { op->vtkPolarAxesActor::SetRadialAxisTitleLocation(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialAxisTitleLocationMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialAxisTitleLocationMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetRadialAxisTitleLocationMinValue() : op->vtkPolarAxesActor::GetRadialAxisTitleLocationMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialAxisTitleLocationMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialAxisTitleLocationMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetRadialAxisTitleLocationMaxValue() : op->vtkPolarAxesActor::GetRadialAxisTitleLocationMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialAxisTitleLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialAxisTitleLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetRadialAxisTitleLocation() : op->vtkPolarAxesActor::GetRadialAxisTitleLocation()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisTitleLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisTitleLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisTitleLocation(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisTitleLocation(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTitleLocationMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTitleLocationMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarAxisTitleLocationMinValue() : op->vtkPolarAxesActor::GetPolarAxisTitleLocationMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTitleLocationMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTitleLocationMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarAxisTitleLocationMaxValue() : op->vtkPolarAxesActor::GetPolarAxisTitleLocationMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTitleLocation(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTitleLocation"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarAxisTitleLocation() : op->vtkPolarAxesActor::GetPolarAxisTitleLocation()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarLabelVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarLabelVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarLabelVisibility(temp0); } else { op->vtkPolarAxesActor::SetPolarLabelVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarLabelVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarLabelVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarLabelVisibility() : op->vtkPolarAxesActor::GetPolarLabelVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarLabelVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarLabelVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarLabelVisibilityOn(); } else { op->vtkPolarAxesActor::PolarLabelVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarLabelVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarLabelVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarLabelVisibilityOff(); } else { op->vtkPolarAxesActor::PolarLabelVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcTicksOriginToPolarAxis(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcTicksOriginToPolarAxis"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcTicksOriginToPolarAxis(temp0); } else { op->vtkPolarAxesActor::SetArcTicksOriginToPolarAxis(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcTicksOriginToPolarAxis(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcTicksOriginToPolarAxis"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetArcTicksOriginToPolarAxis() : op->vtkPolarAxesActor::GetArcTicksOriginToPolarAxis()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_ArcTicksOriginToPolarAxisOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ArcTicksOriginToPolarAxisOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->ArcTicksOriginToPolarAxisOn(); } else { op->vtkPolarAxesActor::ArcTicksOriginToPolarAxisOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_ArcTicksOriginToPolarAxisOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ArcTicksOriginToPolarAxisOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->ArcTicksOriginToPolarAxisOff(); } else { op->vtkPolarAxesActor::ArcTicksOriginToPolarAxisOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRadialAxesOriginToPolarAxis(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRadialAxesOriginToPolarAxis"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRadialAxesOriginToPolarAxis(temp0); } else { op->vtkPolarAxesActor::SetRadialAxesOriginToPolarAxis(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialAxesOriginToPolarAxis(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialAxesOriginToPolarAxis"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetRadialAxesOriginToPolarAxis() : op->vtkPolarAxesActor::GetRadialAxesOriginToPolarAxis()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_RadialAxesOriginToPolarAxisOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RadialAxesOriginToPolarAxisOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->RadialAxesOriginToPolarAxisOn(); } else { op->vtkPolarAxesActor::RadialAxesOriginToPolarAxisOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_RadialAxesOriginToPolarAxisOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RadialAxesOriginToPolarAxisOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->RadialAxesOriginToPolarAxisOff(); } else { op->vtkPolarAxesActor::RadialAxesOriginToPolarAxisOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarTickVisibility(temp0); } else { op->vtkPolarAxesActor::SetPolarTickVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarTickVisibility() : op->vtkPolarAxesActor::GetPolarTickVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarTickVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarTickVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarTickVisibilityOn(); } else { op->vtkPolarAxesActor::PolarTickVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarTickVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarTickVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarTickVisibilityOff(); } else { op->vtkPolarAxesActor::PolarTickVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetAxisTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetAxisTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetAxisTickVisibility(temp0); } else { op->vtkPolarAxesActor::SetAxisTickVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetAxisTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetAxisTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetAxisTickVisibility() : op->vtkPolarAxesActor::GetAxisTickVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_AxisTickVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AxisTickVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->AxisTickVisibilityOn(); } else { op->vtkPolarAxesActor::AxisTickVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_AxisTickVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AxisTickVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->AxisTickVisibilityOff(); } else { op->vtkPolarAxesActor::AxisTickVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetAxisMinorTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetAxisMinorTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetAxisMinorTickVisibility(temp0); } else { op->vtkPolarAxesActor::SetAxisMinorTickVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetAxisMinorTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetAxisMinorTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetAxisMinorTickVisibility() : op->vtkPolarAxesActor::GetAxisMinorTickVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_AxisMinorTickVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AxisMinorTickVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->AxisMinorTickVisibilityOn(); } else { op->vtkPolarAxesActor::AxisMinorTickVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_AxisMinorTickVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "AxisMinorTickVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->AxisMinorTickVisibilityOff(); } else { op->vtkPolarAxesActor::AxisMinorTickVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcTickVisibility(temp0); } else { op->vtkPolarAxesActor::SetArcTickVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetArcTickVisibility() : op->vtkPolarAxesActor::GetArcTickVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_ArcTickVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ArcTickVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->ArcTickVisibilityOn(); } else { op->vtkPolarAxesActor::ArcTickVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_ArcTickVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ArcTickVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->ArcTickVisibilityOff(); } else { op->vtkPolarAxesActor::ArcTickVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcMinorTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcMinorTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcMinorTickVisibility(temp0); } else { op->vtkPolarAxesActor::SetArcMinorTickVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcMinorTickVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcMinorTickVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetArcMinorTickVisibility() : op->vtkPolarAxesActor::GetArcMinorTickVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_ArcMinorTickVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ArcMinorTickVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->ArcMinorTickVisibilityOn(); } else { op->vtkPolarAxesActor::ArcMinorTickVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_ArcMinorTickVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "ArcMinorTickVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->ArcMinorTickVisibilityOff(); } else { op->vtkPolarAxesActor::ArcMinorTickVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcMajorTickSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcMajorTickSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcMajorTickSize(temp0); } else { op->vtkPolarAxesActor::SetArcMajorTickSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcMajorTickSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcMajorTickSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetArcMajorTickSize() : op->vtkPolarAxesActor::GetArcMajorTickSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisMajorTickSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisMajorTickSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisMajorTickSize(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisMajorTickSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisMajorTickSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisMajorTickSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetPolarAxisMajorTickSize() : op->vtkPolarAxesActor::GetPolarAxisMajorTickSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLastRadialAxisMajorTickSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLastRadialAxisMajorTickSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetLastRadialAxisMajorTickSize(temp0); } else { op->vtkPolarAxesActor::SetLastRadialAxisMajorTickSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLastRadialAxisMajorTickSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLastRadialAxisMajorTickSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetLastRadialAxisMajorTickSize() : op->vtkPolarAxesActor::GetLastRadialAxisMajorTickSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisTickRatioSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisTickRatioSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisTickRatioSize(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisTickRatioSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTickRatioSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTickRatioSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetPolarAxisTickRatioSize() : op->vtkPolarAxesActor::GetPolarAxisTickRatioSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLastAxisTickRatioSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLastAxisTickRatioSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetLastAxisTickRatioSize(temp0); } else { op->vtkPolarAxesActor::SetLastAxisTickRatioSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLastAxisTickRatioSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLastAxisTickRatioSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetLastAxisTickRatioSize() : op->vtkPolarAxesActor::GetLastAxisTickRatioSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcTickRatioSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcTickRatioSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcTickRatioSize(temp0); } else { op->vtkPolarAxesActor::SetArcTickRatioSize(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcTickRatioSize(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcTickRatioSize"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetArcTickRatioSize() : op->vtkPolarAxesActor::GetArcTickRatioSize()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisMajorTickThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisMajorTickThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisMajorTickThickness(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisMajorTickThickness(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisMajorTickThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisMajorTickThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetPolarAxisMajorTickThickness() : op->vtkPolarAxesActor::GetPolarAxisMajorTickThickness()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLastRadialAxisMajorTickThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLastRadialAxisMajorTickThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetLastRadialAxisMajorTickThickness(temp0); } else { op->vtkPolarAxesActor::SetLastRadialAxisMajorTickThickness(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLastRadialAxisMajorTickThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLastRadialAxisMajorTickThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetLastRadialAxisMajorTickThickness() : op->vtkPolarAxesActor::GetLastRadialAxisMajorTickThickness()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcMajorTickThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcMajorTickThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcMajorTickThickness(temp0); } else { op->vtkPolarAxesActor::SetArcMajorTickThickness(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcMajorTickThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcMajorTickThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetArcMajorTickThickness() : op->vtkPolarAxesActor::GetArcMajorTickThickness()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisTickRatioThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisTickRatioThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarAxisTickRatioThickness(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisTickRatioThickness(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTickRatioThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTickRatioThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetPolarAxisTickRatioThickness() : op->vtkPolarAxesActor::GetPolarAxisTickRatioThickness()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLastAxisTickRatioThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLastAxisTickRatioThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetLastAxisTickRatioThickness(temp0); } else { op->vtkPolarAxesActor::SetLastAxisTickRatioThickness(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLastAxisTickRatioThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLastAxisTickRatioThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetLastAxisTickRatioThickness() : op->vtkPolarAxesActor::GetLastAxisTickRatioThickness()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetArcTickRatioThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetArcTickRatioThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetArcTickRatioThickness(temp0); } else { op->vtkPolarAxesActor::SetArcTickRatioThickness(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetArcTickRatioThickness(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetArcTickRatioThickness"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetArcTickRatioThickness() : op->vtkPolarAxesActor::GetArcTickRatioThickness()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDeltaRangeMajor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDeltaRangeMajor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDeltaRangeMajor(temp0); } else { op->vtkPolarAxesActor::SetDeltaRangeMajor(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDeltaRangeMajor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDeltaRangeMajor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDeltaRangeMajor() : op->vtkPolarAxesActor::GetDeltaRangeMajor()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDeltaRangeMinor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDeltaRangeMinor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDeltaRangeMinor(temp0); } else { op->vtkPolarAxesActor::SetDeltaRangeMinor(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDeltaRangeMinor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDeltaRangeMinor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDeltaRangeMinor() : op->vtkPolarAxesActor::GetDeltaRangeMinor()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDeltaAngleMajor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDeltaAngleMajor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDeltaAngleMajor(temp0); } else { op->vtkPolarAxesActor::SetDeltaAngleMajor(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDeltaAngleMajor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDeltaAngleMajor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDeltaAngleMajor() : op->vtkPolarAxesActor::GetDeltaAngleMajor()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDeltaAngleMinor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDeltaAngleMinor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDeltaAngleMinor(temp0); } else { op->vtkPolarAxesActor::SetDeltaAngleMinor(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDeltaAngleMinor(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDeltaAngleMinor"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDeltaAngleMinor() : op->vtkPolarAxesActor::GetDeltaAngleMinor()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetDeltaAngleRadialAxes(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetDeltaAngleRadialAxes"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetDeltaAngleRadialAxes(temp0); } else { op->vtkPolarAxesActor::SetDeltaAngleRadialAxes(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetDeltaAngleRadialAxes(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetDeltaAngleRadialAxes"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetDeltaAngleRadialAxes() : op->vtkPolarAxesActor::GetDeltaAngleRadialAxes()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRadialAxesVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRadialAxesVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRadialAxesVisibility(temp0); } else { op->vtkPolarAxesActor::SetRadialAxesVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialAxesVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialAxesVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetRadialAxesVisibility() : op->vtkPolarAxesActor::GetRadialAxesVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_RadialAxesVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RadialAxesVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->RadialAxesVisibilityOn(); } else { op->vtkPolarAxesActor::RadialAxesVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_RadialAxesVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RadialAxesVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->RadialAxesVisibilityOff(); } else { op->vtkPolarAxesActor::RadialAxesVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetRadialTitleVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRadialTitleVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRadialTitleVisibility(temp0); } else { op->vtkPolarAxesActor::SetRadialTitleVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRadialTitleVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRadialTitleVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetRadialTitleVisibility() : op->vtkPolarAxesActor::GetRadialTitleVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_RadialTitleVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RadialTitleVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->RadialTitleVisibilityOn(); } else { op->vtkPolarAxesActor::RadialTitleVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_RadialTitleVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "RadialTitleVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->RadialTitleVisibilityOff(); } else { op->vtkPolarAxesActor::RadialTitleVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarArcsVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarArcsVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetPolarArcsVisibility(temp0); } else { op->vtkPolarAxesActor::SetPolarArcsVisibility(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarArcsVisibility(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarArcsVisibility"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetPolarArcsVisibility() : op->vtkPolarAxesActor::GetPolarArcsVisibility()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarArcsVisibilityOn(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarArcsVisibilityOn"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarArcsVisibilityOn(); } else { op->vtkPolarAxesActor::PolarArcsVisibilityOn(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_PolarArcsVisibilityOff(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "PolarArcsVisibilityOff"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { if (ap.IsBound()) { op->PolarArcsVisibilityOff(); } else { op->vtkPolarAxesActor::PolarArcsVisibilityOff(); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetUse2DMode(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetUse2DMode"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); int temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetUse2DMode(temp0); } else { op->vtkPolarAxesActor::SetUse2DMode(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetUse2DMode(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetUse2DMode"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { int tempr = (ap.IsBound() ? op->GetUse2DMode() : op->vtkPolarAxesActor::GetUse2DMode()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisTitleTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisTitleTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkTextProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkTextProperty")) { if (ap.IsBound()) { op->SetPolarAxisTitleTextProperty(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisTitleTextProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisTitleTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisTitleTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkTextProperty *tempr = (ap.IsBound() ? op->GetPolarAxisTitleTextProperty() : op->vtkPolarAxesActor::GetPolarAxisTitleTextProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisLabelTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisLabelTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkTextProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkTextProperty")) { if (ap.IsBound()) { op->SetPolarAxisLabelTextProperty(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisLabelTextProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisLabelTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisLabelTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkTextProperty *tempr = (ap.IsBound() ? op->GetPolarAxisLabelTextProperty() : op->vtkPolarAxesActor::GetPolarAxisLabelTextProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLastRadialAxisTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLastRadialAxisTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkTextProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkTextProperty")) { if (ap.IsBound()) { op->SetLastRadialAxisTextProperty(temp0); } else { op->vtkPolarAxesActor::SetLastRadialAxisTextProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLastRadialAxisTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLastRadialAxisTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkTextProperty *tempr = (ap.IsBound() ? op->GetLastRadialAxisTextProperty() : op->vtkPolarAxesActor::GetLastRadialAxisTextProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetSecondaryRadialAxesTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetSecondaryRadialAxesTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkTextProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkTextProperty")) { if (ap.IsBound()) { op->SetSecondaryRadialAxesTextProperty(temp0); } else { op->vtkPolarAxesActor::SetSecondaryRadialAxesTextProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetSecondaryRadialAxesTextProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetSecondaryRadialAxesTextProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkTextProperty *tempr = (ap.IsBound() ? op->GetSecondaryRadialAxesTextProperty() : op->vtkPolarAxesActor::GetSecondaryRadialAxesTextProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarAxisProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarAxisProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkProperty")) { if (ap.IsBound()) { op->SetPolarAxisProperty(temp0); } else { op->vtkPolarAxesActor::SetPolarAxisProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarAxisProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarAxisProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkProperty *tempr = (ap.IsBound() ? op->GetPolarAxisProperty() : op->vtkPolarAxesActor::GetPolarAxisProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetLastRadialAxisProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetLastRadialAxisProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkProperty")) { if (ap.IsBound()) { op->SetLastRadialAxisProperty(temp0); } else { op->vtkPolarAxesActor::SetLastRadialAxisProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetLastRadialAxisProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetLastRadialAxisProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkProperty *tempr = (ap.IsBound() ? op->GetLastRadialAxisProperty() : op->vtkPolarAxesActor::GetLastRadialAxisProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetSecondaryRadialAxesProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetSecondaryRadialAxesProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkProperty")) { if (ap.IsBound()) { op->SetSecondaryRadialAxesProperty(temp0); } else { op->vtkPolarAxesActor::SetSecondaryRadialAxesProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetSecondaryRadialAxesProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetSecondaryRadialAxesProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkProperty *tempr = (ap.IsBound() ? op->GetSecondaryRadialAxesProperty() : op->vtkPolarAxesActor::GetSecondaryRadialAxesProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetPolarArcsProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetPolarArcsProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkProperty")) { if (ap.IsBound()) { op->SetPolarArcsProperty(temp0); } else { op->vtkPolarAxesActor::SetPolarArcsProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetPolarArcsProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetPolarArcsProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkProperty *tempr = (ap.IsBound() ? op->GetPolarArcsProperty() : op->vtkPolarAxesActor::GetPolarArcsProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetSecondaryPolarArcsProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetSecondaryPolarArcsProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); vtkProperty *temp0 = nullptr; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetVTKObject(temp0, "vtkProperty")) { if (ap.IsBound()) { op->SetSecondaryPolarArcsProperty(temp0); } else { op->vtkPolarAxesActor::SetSecondaryPolarArcsProperty(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetSecondaryPolarArcsProperty(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetSecondaryPolarArcsProperty"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { vtkProperty *tempr = (ap.IsBound() ? op->GetSecondaryPolarArcsProperty() : op->vtkPolarAxesActor::GetSecondaryPolarArcsProperty()); if (!ap.ErrorOccurred()) { result = ap.BuildVTKObject(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_SetBounds_s1(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetBounds"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; double temp1; double temp2; double temp3; double temp4; double temp5; PyObject *result = nullptr; if (op && ap.CheckArgCount(6) && ap.GetValue(temp0) && ap.GetValue(temp1) && ap.GetValue(temp2) && ap.GetValue(temp3) && ap.GetValue(temp4) && ap.GetValue(temp5)) { if (ap.IsBound()) { op->SetBounds(temp0, temp1, temp2, temp3, temp4, temp5); } else { op->vtkPolarAxesActor::SetBounds(temp0, temp1, temp2, temp3, temp4, temp5); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetBounds_s2(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetBounds"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); const int size0 = 6; double temp0[6]; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetArray(temp0, size0)) { if (ap.IsBound()) { op->SetBounds(temp0); } else { op->vtkPolarAxesActor::SetBounds(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_SetBounds(PyObject *self, PyObject *args) { int nargs = vtkPythonArgs::GetArgCount(self, args); switch(nargs) { case 6: return PyvtkPolarAxesActor_SetBounds_s1(self, args); case 1: return PyvtkPolarAxesActor_SetBounds_s2(self, args); } vtkPythonArgs::ArgCountError(nargs, "SetBounds"); return nullptr; } static PyObject * PyvtkPolarAxesActor_GetBounds_s1(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetBounds"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double *tempr = (ap.IsBound() ? op->GetBounds() : op->vtkPolarAxesActor::GetBounds()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetBounds_s2(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetBounds"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; double temp1; double temp2; double temp3; double temp4; double temp5; PyObject *result = nullptr; if (op && ap.CheckArgCount(6) && ap.GetValue(temp0) && ap.GetValue(temp1) && ap.GetValue(temp2) && ap.GetValue(temp3) && ap.GetValue(temp4) && ap.GetValue(temp5)) { if (ap.IsBound()) { op->GetBounds(temp0, temp1, temp2, temp3, temp4, temp5); } else { op->vtkPolarAxesActor::GetBounds(temp0, temp1, temp2, temp3, temp4, temp5); } if (!ap.ErrorOccurred()) { ap.SetArgValue(0, temp0); } if (!ap.ErrorOccurred()) { ap.SetArgValue(1, temp1); } if (!ap.ErrorOccurred()) { ap.SetArgValue(2, temp2); } if (!ap.ErrorOccurred()) { ap.SetArgValue(3, temp3); } if (!ap.ErrorOccurred()) { ap.SetArgValue(4, temp4); } if (!ap.ErrorOccurred()) { ap.SetArgValue(5, temp5); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetBounds_s3(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetBounds"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); const int size0 = 6; double temp0[6]; double save0[6]; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetArray(temp0, size0)) { ap.SaveArray(temp0, save0, size0); if (ap.IsBound()) { op->GetBounds(temp0); } else { op->vtkPolarAxesActor::GetBounds(temp0); } if (ap.ArrayHasChanged(temp0, save0, size0) && !ap.ErrorOccurred()) { ap.SetArray(0, temp0, size0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetBounds(PyObject *self, PyObject *args) { int nargs = vtkPythonArgs::GetArgCount(self, args); switch(nargs) { case 0: return PyvtkPolarAxesActor_GetBounds_s1(self, args); case 6: return PyvtkPolarAxesActor_GetBounds_s2(self, args); case 1: return PyvtkPolarAxesActor_GetBounds_s3(self, args); } vtkPythonArgs::ArgCountError(nargs, "GetBounds"); return nullptr; } static PyObject * PyvtkPolarAxesActor_SetRatio(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "SetRatio"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); double temp0; PyObject *result = nullptr; if (op && ap.CheckArgCount(1) && ap.GetValue(temp0)) { if (ap.IsBound()) { op->SetRatio(temp0); } else { op->vtkPolarAxesActor::SetRatio(temp0); } if (!ap.ErrorOccurred()) { result = ap.BuildNone(); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRatioMinValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRatioMinValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetRatioMinValue() : op->vtkPolarAxesActor::GetRatioMinValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRatioMaxValue(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRatioMaxValue"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetRatioMaxValue() : op->vtkPolarAxesActor::GetRatioMaxValue()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyObject * PyvtkPolarAxesActor_GetRatio(PyObject *self, PyObject *args) { vtkPythonArgs ap(self, args, "GetRatio"); vtkObjectBase *vp = ap.GetSelfPointer(self, args); vtkPolarAxesActor *op = static_cast(vp); PyObject *result = nullptr; if (op && ap.CheckArgCount(0)) { double tempr = (ap.IsBound() ? op->GetRatio() : op->vtkPolarAxesActor::GetRatio()); if (!ap.ErrorOccurred()) { result = ap.BuildValue(tempr); } } return result; } static PyMethodDef PyvtkPolarAxesActor_Methods[] = { {"IsTypeOf", PyvtkPolarAxesActor_IsTypeOf, METH_VARARGS, "V.IsTypeOf(string) -> int\nC++: static vtkTypeBool IsTypeOf(const char *type)\n\nReturn 1 if this class type is the same type of (or a subclass\nof) the named class. Returns 0 otherwise. This method works in\ncombination with vtkTypeMacro found in vtkSetGet.h.\n"}, {"IsA", PyvtkPolarAxesActor_IsA, METH_VARARGS, "V.IsA(string) -> int\nC++: vtkTypeBool IsA(const char *type) override;\n\nReturn 1 if this class is the same type of (or a subclass of) the\nnamed class. Returns 0 otherwise. This method works in\ncombination with vtkTypeMacro found in vtkSetGet.h.\n"}, {"SafeDownCast", PyvtkPolarAxesActor_SafeDownCast, METH_VARARGS, "V.SafeDownCast(vtkObjectBase) -> vtkPolarAxesActor\nC++: static vtkPolarAxesActor *SafeDownCast(vtkObjectBase *o)\n\n"}, {"NewInstance", PyvtkPolarAxesActor_NewInstance, METH_VARARGS, "V.NewInstance() -> vtkPolarAxesActor\nC++: vtkPolarAxesActor *NewInstance()\n\n"}, {"RenderOpaqueGeometry", PyvtkPolarAxesActor_RenderOpaqueGeometry, METH_VARARGS, "V.RenderOpaqueGeometry(vtkViewport) -> int\nC++: int RenderOpaqueGeometry(vtkViewport *) override;\n\nDraw the polar axes\n"}, {"RenderOverlay", PyvtkPolarAxesActor_RenderOverlay, METH_VARARGS, "V.RenderOverlay(vtkViewport) -> int\nC++: int RenderOverlay(vtkViewport *) override;\n\nDraw the polar axes\n"}, {"RenderTranslucentPolygonalGeometry", PyvtkPolarAxesActor_RenderTranslucentPolygonalGeometry, METH_VARARGS, "V.RenderTranslucentPolygonalGeometry(vtkViewport) -> int\nC++: int RenderTranslucentPolygonalGeometry(vtkViewport *)\n override;\n\nDraw the polar axes\n"}, {"SetPole", PyvtkPolarAxesActor_SetPole, METH_VARARGS, "V.SetPole([float, float, float])\nC++: virtual void SetPole(double[3])\nV.SetPole(float, float, float)\nC++: virtual void SetPole(double, double, double)\n\nExplicitly specify the coordinate of the pole.\n"}, {"GetPole", PyvtkPolarAxesActor_GetPole, METH_VARARGS, "V.GetPole() -> (float, float, float)\nC++: double *GetPole()\n\n"}, {"SetLog", PyvtkPolarAxesActor_SetLog, METH_VARARGS, "V.SetLog(bool)\nC++: virtual void SetLog(bool _arg)\n\nEnable/Disable log scale Default: false\n"}, {"GetLog", PyvtkPolarAxesActor_GetLog, METH_VARARGS, "V.GetLog() -> bool\nC++: virtual bool GetLog()\n\nEnable/Disable log scale Default: false\n"}, {"LogOn", PyvtkPolarAxesActor_LogOn, METH_VARARGS, "V.LogOn()\nC++: virtual void LogOn()\n\nEnable/Disable log scale Default: false\n"}, {"LogOff", PyvtkPolarAxesActor_LogOff, METH_VARARGS, "V.LogOff()\nC++: virtual void LogOff()\n\nEnable/Disable log scale Default: false\n"}, {"SetRequestedNumberOfRadialAxes", PyvtkPolarAxesActor_SetRequestedNumberOfRadialAxes, METH_VARARGS, "V.SetRequestedNumberOfRadialAxes(int)\nC++: virtual void SetRequestedNumberOfRadialAxes(vtkIdType _arg)\n\nGets/Sets the number of radial axes\n"}, {"GetRequestedNumberOfRadialAxesMinValue", PyvtkPolarAxesActor_GetRequestedNumberOfRadialAxesMinValue, METH_VARARGS, "V.GetRequestedNumberOfRadialAxesMinValue() -> int\nC++: virtual vtkIdType GetRequestedNumberOfRadialAxesMinValue()\n\nGets/Sets the number of radial axes\n"}, {"GetRequestedNumberOfRadialAxesMaxValue", PyvtkPolarAxesActor_GetRequestedNumberOfRadialAxesMaxValue, METH_VARARGS, "V.GetRequestedNumberOfRadialAxesMaxValue() -> int\nC++: virtual vtkIdType GetRequestedNumberOfRadialAxesMaxValue()\n\nGets/Sets the number of radial axes\n"}, {"GetRequestedNumberOfRadialAxes", PyvtkPolarAxesActor_GetRequestedNumberOfRadialAxes, METH_VARARGS, "V.GetRequestedNumberOfRadialAxes() -> int\nC++: virtual vtkIdType GetRequestedNumberOfRadialAxes()\n\nGets/Sets the number of radial axes\n"}, {"SetNumberOfPolarAxisTicks", PyvtkPolarAxesActor_SetNumberOfPolarAxisTicks, METH_VARARGS, "V.SetNumberOfPolarAxisTicks(int)\nC++: virtual void SetNumberOfPolarAxisTicks(int)\n\nSet/Get a number of ticks that one would like to display along\npolar axis NB: it modifies DeltaRangeMajor to correspond to this\nnumber\n"}, {"GetNumberOfPolarAxisTicks", PyvtkPolarAxesActor_GetNumberOfPolarAxisTicks, METH_VARARGS, "V.GetNumberOfPolarAxisTicks() -> int\nC++: int GetNumberOfPolarAxisTicks()\n\nSet/Get a number of ticks that one would like to display along\npolar axis NB: it modifies DeltaRangeMajor to correspond to this\nnumber\n"}, {"SetAutoSubdividePolarAxis", PyvtkPolarAxesActor_SetAutoSubdividePolarAxis, METH_VARARGS, "V.SetAutoSubdividePolarAxis(bool)\nC++: virtual void SetAutoSubdividePolarAxis(bool _arg)\n\nSet/Get whether the number of polar axis ticks and arcs should be\nautomatically calculated Default: true\n"}, {"GetAutoSubdividePolarAxis", PyvtkPolarAxesActor_GetAutoSubdividePolarAxis, METH_VARARGS, "V.GetAutoSubdividePolarAxis() -> bool\nC++: virtual bool GetAutoSubdividePolarAxis()\n\nSet/Get whether the number of polar axis ticks and arcs should be\nautomatically calculated Default: true\n"}, {"AutoSubdividePolarAxisOn", PyvtkPolarAxesActor_AutoSubdividePolarAxisOn, METH_VARARGS, "V.AutoSubdividePolarAxisOn()\nC++: virtual void AutoSubdividePolarAxisOn()\n\nSet/Get whether the number of polar axis ticks and arcs should be\nautomatically calculated Default: true\n"}, {"AutoSubdividePolarAxisOff", PyvtkPolarAxesActor_AutoSubdividePolarAxisOff, METH_VARARGS, "V.AutoSubdividePolarAxisOff()\nC++: virtual void AutoSubdividePolarAxisOff()\n\nSet/Get whether the number of polar axis ticks and arcs should be\nautomatically calculated Default: true\n"}, {"SetRange", PyvtkPolarAxesActor_SetRange, METH_VARARGS, "V.SetRange(float, float)\nC++: void SetRange(double, double)\nV.SetRange((float, float))\nC++: void SetRange(double a[2])\n\n"}, {"GetRange", PyvtkPolarAxesActor_GetRange, METH_VARARGS, "V.GetRange() -> (float, float)\nC++: double *GetRange()\n\nDefine the range values displayed on the polar Axis.\n"}, {"SetMinimumRadius", PyvtkPolarAxesActor_SetMinimumRadius, METH_VARARGS, "V.SetMinimumRadius(float)\nC++: virtual void SetMinimumRadius(double)\n\nSet/Get the minimal radius of the polar coordinates.\n"}, {"GetMinimumRadius", PyvtkPolarAxesActor_GetMinimumRadius, METH_VARARGS, "V.GetMinimumRadius() -> float\nC++: virtual double GetMinimumRadius()\n\nSet/Get the minimal radius of the polar coordinates.\n"}, {"SetMaximumRadius", PyvtkPolarAxesActor_SetMaximumRadius, METH_VARARGS, "V.SetMaximumRadius(float)\nC++: virtual void SetMaximumRadius(double)\n\nSet/Get the maximum radius of the polar coordinates.\n"}, {"GetMaximumRadius", PyvtkPolarAxesActor_GetMaximumRadius, METH_VARARGS, "V.GetMaximumRadius() -> float\nC++: virtual double GetMaximumRadius()\n\nSet/Get the maximum radius of the polar coordinates.\n"}, {"SetMinimumAngle", PyvtkPolarAxesActor_SetMinimumAngle, METH_VARARGS, "V.SetMinimumAngle(float)\nC++: virtual void SetMinimumAngle(double)\n\nSet/Get the minimum radius of the polar coordinates (in degrees).\n"}, {"GetMinimumAngle", PyvtkPolarAxesActor_GetMinimumAngle, METH_VARARGS, "V.GetMinimumAngle() -> float\nC++: virtual double GetMinimumAngle()\n\nSet/Get the minimum radius of the polar coordinates (in degrees).\n"}, {"SetMaximumAngle", PyvtkPolarAxesActor_SetMaximumAngle, METH_VARARGS, "V.SetMaximumAngle(float)\nC++: virtual void SetMaximumAngle(double)\n\nSet/Get the maximum radius of the polar coordinates (in degrees).\n"}, {"GetMaximumAngle", PyvtkPolarAxesActor_GetMaximumAngle, METH_VARARGS, "V.GetMaximumAngle() -> float\nC++: virtual double GetMaximumAngle()\n\nSet/Get the maximum radius of the polar coordinates (in degrees).\n"}, {"SetSmallestVisiblePolarAngle", PyvtkPolarAxesActor_SetSmallestVisiblePolarAngle, METH_VARARGS, "V.SetSmallestVisiblePolarAngle(float)\nC++: virtual void SetSmallestVisiblePolarAngle(double _arg)\n\nSet/Get the minimum radial angle distinguishable from polar axis\nNB: This is used only when polar axis is visible Default: 0.5\n"}, {"GetSmallestVisiblePolarAngleMinValue", PyvtkPolarAxesActor_GetSmallestVisiblePolarAngleMinValue, METH_VARARGS, "V.GetSmallestVisiblePolarAngleMinValue() -> float\nC++: virtual double GetSmallestVisiblePolarAngleMinValue()\n\nSet/Get the minimum radial angle distinguishable from polar axis\nNB: This is used only when polar axis is visible Default: 0.5\n"}, {"GetSmallestVisiblePolarAngleMaxValue", PyvtkPolarAxesActor_GetSmallestVisiblePolarAngleMaxValue, METH_VARARGS, "V.GetSmallestVisiblePolarAngleMaxValue() -> float\nC++: virtual double GetSmallestVisiblePolarAngleMaxValue()\n\nSet/Get the minimum radial angle distinguishable from polar axis\nNB: This is used only when polar axis is visible Default: 0.5\n"}, {"GetSmallestVisiblePolarAngle", PyvtkPolarAxesActor_GetSmallestVisiblePolarAngle, METH_VARARGS, "V.GetSmallestVisiblePolarAngle() -> float\nC++: virtual double GetSmallestVisiblePolarAngle()\n\nSet/Get the minimum radial angle distinguishable from polar axis\nNB: This is used only when polar axis is visible Default: 0.5\n"}, {"SetTickLocation", PyvtkPolarAxesActor_SetTickLocation, METH_VARARGS, "V.SetTickLocation(int)\nC++: virtual void SetTickLocation(int _arg)\n\nSet/Get the location of the ticks. Inside: tick end toward\npositive direction of perpendicular axes. Outside: tick end\ntoward negative direction of perpendicular axes.\n"}, {"GetTickLocationMinValue", PyvtkPolarAxesActor_GetTickLocationMinValue, METH_VARARGS, "V.GetTickLocationMinValue() -> int\nC++: virtual int GetTickLocationMinValue()\n\nSet/Get the location of the ticks. Inside: tick end toward\npositive direction of perpendicular axes. Outside: tick end\ntoward negative direction of perpendicular axes.\n"}, {"GetTickLocationMaxValue", PyvtkPolarAxesActor_GetTickLocationMaxValue, METH_VARARGS, "V.GetTickLocationMaxValue() -> int\nC++: virtual int GetTickLocationMaxValue()\n\nSet/Get the location of the ticks. Inside: tick end toward\npositive direction of perpendicular axes. Outside: tick end\ntoward negative direction of perpendicular axes.\n"}, {"GetTickLocation", PyvtkPolarAxesActor_GetTickLocation, METH_VARARGS, "V.GetTickLocation() -> int\nC++: virtual int GetTickLocation()\n\nSet/Get the location of the ticks. Inside: tick end toward\npositive direction of perpendicular axes. Outside: tick end\ntoward negative direction of perpendicular axes.\n"}, {"SetRadialUnits", PyvtkPolarAxesActor_SetRadialUnits, METH_VARARGS, "V.SetRadialUnits(bool)\nC++: virtual void SetRadialUnits(bool _arg)\n\nDefault: true\n"}, {"GetRadialUnits", PyvtkPolarAxesActor_GetRadialUnits, METH_VARARGS, "V.GetRadialUnits() -> bool\nC++: virtual bool GetRadialUnits()\n\nDefault: true\n"}, {"SetScreenSize", PyvtkPolarAxesActor_SetScreenSize, METH_VARARGS, "V.SetScreenSize(float)\nC++: virtual void SetScreenSize(double _arg)\n\nExplicitly specify the screen size of title and label text.\nScreenSize detemines the size of the text in terms of screen\npixels. Default: 10.0.\n"}, {"GetScreenSize", PyvtkPolarAxesActor_GetScreenSize, METH_VARARGS, "V.GetScreenSize() -> float\nC++: virtual double GetScreenSize()\n\nExplicitly specify the screen size of title and label text.\nScreenSize detemines the size of the text in terms of screen\npixels. Default: 10.0.\n"}, {"SetCamera", PyvtkPolarAxesActor_SetCamera, METH_VARARGS, "V.SetCamera(vtkCamera)\nC++: virtual void SetCamera(vtkCamera *)\n\nSet/Get the camera to perform scaling and translation of the\nvtkPolarAxesActor.\n"}, {"GetCamera", PyvtkPolarAxesActor_GetCamera, METH_VARARGS, "V.GetCamera() -> vtkCamera\nC++: virtual vtkCamera *GetCamera()\n\nSet/Get the camera to perform scaling and translation of the\nvtkPolarAxesActor.\n"}, {"SetPolarAxisTitle", PyvtkPolarAxesActor_SetPolarAxisTitle, METH_VARARGS, "V.SetPolarAxisTitle(string)\nC++: virtual void SetPolarAxisTitle(const char *_arg)\n\nSet/Get the labels for the polar axis. Default: \"Radial\nDistance\".\n"}, {"GetPolarAxisTitle", PyvtkPolarAxesActor_GetPolarAxisTitle, METH_VARARGS, "V.GetPolarAxisTitle() -> string\nC++: virtual char *GetPolarAxisTitle()\n\nSet/Get the labels for the polar axis. Default: \"Radial\nDistance\".\n"}, {"SetPolarLabelFormat", PyvtkPolarAxesActor_SetPolarLabelFormat, METH_VARARGS, "V.SetPolarLabelFormat(string)\nC++: virtual void SetPolarLabelFormat(const char *_arg)\n\nSet/Get the format with which to print the polar axis labels.\n"}, {"GetPolarLabelFormat", PyvtkPolarAxesActor_GetPolarLabelFormat, METH_VARARGS, "V.GetPolarLabelFormat() -> string\nC++: virtual char *GetPolarLabelFormat()\n\nSet/Get the format with which to print the polar axis labels.\n"}, {"SetExponentLocation", PyvtkPolarAxesActor_SetExponentLocation, METH_VARARGS, "V.SetExponentLocation(int)\nC++: virtual void SetExponentLocation(int _arg)\n\nGet/Set the location of the exponent (if any) of the polar axis\nvalues. Possible location: VTK_EXPONENT_BOTTOM,\nVTK_EXPONENT_EXTERN, VTK_EXPONENT_LABELS\n"}, {"GetExponentLocationMinValue", PyvtkPolarAxesActor_GetExponentLocationMinValue, METH_VARARGS, "V.GetExponentLocationMinValue() -> int\nC++: virtual int GetExponentLocationMinValue()\n\nGet/Set the location of the exponent (if any) of the polar axis\nvalues. Possible location: VTK_EXPONENT_BOTTOM,\nVTK_EXPONENT_EXTERN, VTK_EXPONENT_LABELS\n"}, {"GetExponentLocationMaxValue", PyvtkPolarAxesActor_GetExponentLocationMaxValue, METH_VARARGS, "V.GetExponentLocationMaxValue() -> int\nC++: virtual int GetExponentLocationMaxValue()\n\nGet/Set the location of the exponent (if any) of the polar axis\nvalues. Possible location: VTK_EXPONENT_BOTTOM,\nVTK_EXPONENT_EXTERN, VTK_EXPONENT_LABELS\n"}, {"GetExponentLocation", PyvtkPolarAxesActor_GetExponentLocation, METH_VARARGS, "V.GetExponentLocation() -> int\nC++: virtual int GetExponentLocation()\n\nGet/Set the location of the exponent (if any) of the polar axis\nvalues. Possible location: VTK_EXPONENT_BOTTOM,\nVTK_EXPONENT_EXTERN, VTK_EXPONENT_LABELS\n"}, {"SetRadialAngleFormat", PyvtkPolarAxesActor_SetRadialAngleFormat, METH_VARARGS, "V.SetRadialAngleFormat(string)\nC++: virtual void SetRadialAngleFormat(const char *_arg)\n\nString to format angle values displayed on the radial axes.\n"}, {"GetRadialAngleFormat", PyvtkPolarAxesActor_GetRadialAngleFormat, METH_VARARGS, "V.GetRadialAngleFormat() -> string\nC++: virtual char *GetRadialAngleFormat()\n\nString to format angle values displayed on the radial axes.\n"}, {"ReleaseGraphicsResources", PyvtkPolarAxesActor_ReleaseGraphicsResources, METH_VARARGS, "V.ReleaseGraphicsResources(vtkWindow)\nC++: void ReleaseGraphicsResources(vtkWindow *) override;\n\nRelease any graphics resources that are being consumed by this\nactor. The parameter window could be used to determine which\ngraphic resources to release.\n"}, {"SetEnableDistanceLOD", PyvtkPolarAxesActor_SetEnableDistanceLOD, METH_VARARGS, "V.SetEnableDistanceLOD(int)\nC++: virtual void SetEnableDistanceLOD(int _arg)\n\nEnable and disable the use of distance based LOD for titles and\nlabels.\n"}, {"GetEnableDistanceLOD", PyvtkPolarAxesActor_GetEnableDistanceLOD, METH_VARARGS, "V.GetEnableDistanceLOD() -> int\nC++: virtual int GetEnableDistanceLOD()\n\nEnable and disable the use of distance based LOD for titles and\nlabels.\n"}, {"SetDistanceLODThreshold", PyvtkPolarAxesActor_SetDistanceLODThreshold, METH_VARARGS, "V.SetDistanceLODThreshold(float)\nC++: virtual void SetDistanceLODThreshold(double _arg)\n\nSet distance LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"GetDistanceLODThresholdMinValue", PyvtkPolarAxesActor_GetDistanceLODThresholdMinValue, METH_VARARGS, "V.GetDistanceLODThresholdMinValue() -> float\nC++: virtual double GetDistanceLODThresholdMinValue()\n\nSet distance LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"GetDistanceLODThresholdMaxValue", PyvtkPolarAxesActor_GetDistanceLODThresholdMaxValue, METH_VARARGS, "V.GetDistanceLODThresholdMaxValue() -> float\nC++: virtual double GetDistanceLODThresholdMaxValue()\n\nSet distance LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"GetDistanceLODThreshold", PyvtkPolarAxesActor_GetDistanceLODThreshold, METH_VARARGS, "V.GetDistanceLODThreshold() -> float\nC++: virtual double GetDistanceLODThreshold()\n\nSet distance LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"SetEnableViewAngleLOD", PyvtkPolarAxesActor_SetEnableViewAngleLOD, METH_VARARGS, "V.SetEnableViewAngleLOD(int)\nC++: virtual void SetEnableViewAngleLOD(int _arg)\n\nEnable and disable the use of view angle based LOD for titles and\nlabels.\n"}, {"GetEnableViewAngleLOD", PyvtkPolarAxesActor_GetEnableViewAngleLOD, METH_VARARGS, "V.GetEnableViewAngleLOD() -> int\nC++: virtual int GetEnableViewAngleLOD()\n\nEnable and disable the use of view angle based LOD for titles and\nlabels.\n"}, {"SetViewAngleLODThreshold", PyvtkPolarAxesActor_SetViewAngleLODThreshold, METH_VARARGS, "V.SetViewAngleLODThreshold(float)\nC++: virtual void SetViewAngleLODThreshold(double _arg)\n\nSet view angle LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"GetViewAngleLODThresholdMinValue", PyvtkPolarAxesActor_GetViewAngleLODThresholdMinValue, METH_VARARGS, "V.GetViewAngleLODThresholdMinValue() -> float\nC++: virtual double GetViewAngleLODThresholdMinValue()\n\nSet view angle LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"GetViewAngleLODThresholdMaxValue", PyvtkPolarAxesActor_GetViewAngleLODThresholdMaxValue, METH_VARARGS, "V.GetViewAngleLODThresholdMaxValue() -> float\nC++: virtual double GetViewAngleLODThresholdMaxValue()\n\nSet view angle LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"GetViewAngleLODThreshold", PyvtkPolarAxesActor_GetViewAngleLODThreshold, METH_VARARGS, "V.GetViewAngleLODThreshold() -> float\nC++: virtual double GetViewAngleLODThreshold()\n\nSet view angle LOD threshold [0.0 - 1.0] for titles and labels.\n"}, {"SetPolarAxisVisibility", PyvtkPolarAxesActor_SetPolarAxisVisibility, METH_VARARGS, "V.SetPolarAxisVisibility(int)\nC++: virtual void SetPolarAxisVisibility(int _arg)\n\nTurn on and off the visibility of the polar axis.\n"}, {"GetPolarAxisVisibility", PyvtkPolarAxesActor_GetPolarAxisVisibility, METH_VARARGS, "V.GetPolarAxisVisibility() -> int\nC++: virtual int GetPolarAxisVisibility()\n\nTurn on and off the visibility of the polar axis.\n"}, {"PolarAxisVisibilityOn", PyvtkPolarAxesActor_PolarAxisVisibilityOn, METH_VARARGS, "V.PolarAxisVisibilityOn()\nC++: virtual void PolarAxisVisibilityOn()\n\nTurn on and off the visibility of the polar axis.\n"}, {"PolarAxisVisibilityOff", PyvtkPolarAxesActor_PolarAxisVisibilityOff, METH_VARARGS, "V.PolarAxisVisibilityOff()\nC++: virtual void PolarAxisVisibilityOff()\n\nTurn on and off the visibility of the polar axis.\n"}, {"SetDrawRadialGridlines", PyvtkPolarAxesActor_SetDrawRadialGridlines, METH_VARARGS, "V.SetDrawRadialGridlines(int)\nC++: virtual void SetDrawRadialGridlines(int _arg)\n\nTurn on and off the visibility of inner radial grid lines\n"}, {"GetDrawRadialGridlines", PyvtkPolarAxesActor_GetDrawRadialGridlines, METH_VARARGS, "V.GetDrawRadialGridlines() -> int\nC++: virtual int GetDrawRadialGridlines()\n\nTurn on and off the visibility of inner radial grid lines\n"}, {"DrawRadialGridlinesOn", PyvtkPolarAxesActor_DrawRadialGridlinesOn, METH_VARARGS, "V.DrawRadialGridlinesOn()\nC++: virtual void DrawRadialGridlinesOn()\n\nTurn on and off the visibility of inner radial grid lines\n"}, {"DrawRadialGridlinesOff", PyvtkPolarAxesActor_DrawRadialGridlinesOff, METH_VARARGS, "V.DrawRadialGridlinesOff()\nC++: virtual void DrawRadialGridlinesOff()\n\nTurn on and off the visibility of inner radial grid lines\n"}, {"SetDrawPolarArcsGridlines", PyvtkPolarAxesActor_SetDrawPolarArcsGridlines, METH_VARARGS, "V.SetDrawPolarArcsGridlines(int)\nC++: virtual void SetDrawPolarArcsGridlines(int _arg)\n\nTurn on and off the visibility of inner polar arcs grid lines\n"}, {"GetDrawPolarArcsGridlines", PyvtkPolarAxesActor_GetDrawPolarArcsGridlines, METH_VARARGS, "V.GetDrawPolarArcsGridlines() -> int\nC++: virtual int GetDrawPolarArcsGridlines()\n\nTurn on and off the visibility of inner polar arcs grid lines\n"}, {"DrawPolarArcsGridlinesOn", PyvtkPolarAxesActor_DrawPolarArcsGridlinesOn, METH_VARARGS, "V.DrawPolarArcsGridlinesOn()\nC++: virtual void DrawPolarArcsGridlinesOn()\n\nTurn on and off the visibility of inner polar arcs grid lines\n"}, {"DrawPolarArcsGridlinesOff", PyvtkPolarAxesActor_DrawPolarArcsGridlinesOff, METH_VARARGS, "V.DrawPolarArcsGridlinesOff()\nC++: virtual void DrawPolarArcsGridlinesOff()\n\nTurn on and off the visibility of inner polar arcs grid lines\n"}, {"SetPolarTitleVisibility", PyvtkPolarAxesActor_SetPolarTitleVisibility, METH_VARARGS, "V.SetPolarTitleVisibility(int)\nC++: virtual void SetPolarTitleVisibility(int _arg)\n\nTurn on and off the visibility of titles for polar axis.\n"}, {"GetPolarTitleVisibility", PyvtkPolarAxesActor_GetPolarTitleVisibility, METH_VARARGS, "V.GetPolarTitleVisibility() -> int\nC++: virtual int GetPolarTitleVisibility()\n\nTurn on and off the visibility of titles for polar axis.\n"}, {"PolarTitleVisibilityOn", PyvtkPolarAxesActor_PolarTitleVisibilityOn, METH_VARARGS, "V.PolarTitleVisibilityOn()\nC++: virtual void PolarTitleVisibilityOn()\n\nTurn on and off the visibility of titles for polar axis.\n"}, {"PolarTitleVisibilityOff", PyvtkPolarAxesActor_PolarTitleVisibilityOff, METH_VARARGS, "V.PolarTitleVisibilityOff()\nC++: virtual void PolarTitleVisibilityOff()\n\nTurn on and off the visibility of titles for polar axis.\n"}, {"SetRadialAxisTitleLocation", PyvtkPolarAxesActor_SetRadialAxisTitleLocation, METH_VARARGS, "V.SetRadialAxisTitleLocation(int)\nC++: virtual void SetRadialAxisTitleLocation(int _arg)\n\nGet/Set the alignment of the radial axes title related to the\naxis. Possible Alignment: VTK_TITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"GetRadialAxisTitleLocationMinValue", PyvtkPolarAxesActor_GetRadialAxisTitleLocationMinValue, METH_VARARGS, "V.GetRadialAxisTitleLocationMinValue() -> int\nC++: virtual int GetRadialAxisTitleLocationMinValue()\n\nGet/Set the alignment of the radial axes title related to the\naxis. Possible Alignment: VTK_TITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"GetRadialAxisTitleLocationMaxValue", PyvtkPolarAxesActor_GetRadialAxisTitleLocationMaxValue, METH_VARARGS, "V.GetRadialAxisTitleLocationMaxValue() -> int\nC++: virtual int GetRadialAxisTitleLocationMaxValue()\n\nGet/Set the alignment of the radial axes title related to the\naxis. Possible Alignment: VTK_TITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"GetRadialAxisTitleLocation", PyvtkPolarAxesActor_GetRadialAxisTitleLocation, METH_VARARGS, "V.GetRadialAxisTitleLocation() -> int\nC++: virtual int GetRadialAxisTitleLocation()\n\nGet/Set the alignment of the radial axes title related to the\naxis. Possible Alignment: VTK_TITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"SetPolarAxisTitleLocation", PyvtkPolarAxesActor_SetPolarAxisTitleLocation, METH_VARARGS, "V.SetPolarAxisTitleLocation(int)\nC++: virtual void SetPolarAxisTitleLocation(int _arg)\n\nGet/Set the alignment of the polar axes title related to the\naxis. Possible Alignment: VTKTITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"GetPolarAxisTitleLocationMinValue", PyvtkPolarAxesActor_GetPolarAxisTitleLocationMinValue, METH_VARARGS, "V.GetPolarAxisTitleLocationMinValue() -> int\nC++: virtual int GetPolarAxisTitleLocationMinValue()\n\nGet/Set the alignment of the polar axes title related to the\naxis. Possible Alignment: VTKTITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"GetPolarAxisTitleLocationMaxValue", PyvtkPolarAxesActor_GetPolarAxisTitleLocationMaxValue, METH_VARARGS, "V.GetPolarAxisTitleLocationMaxValue() -> int\nC++: virtual int GetPolarAxisTitleLocationMaxValue()\n\nGet/Set the alignment of the polar axes title related to the\naxis. Possible Alignment: VTKTITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"GetPolarAxisTitleLocation", PyvtkPolarAxesActor_GetPolarAxisTitleLocation, METH_VARARGS, "V.GetPolarAxisTitleLocation() -> int\nC++: virtual int GetPolarAxisTitleLocation()\n\nGet/Set the alignment of the polar axes title related to the\naxis. Possible Alignment: VTKTITLE_BOTTOM, VTK_TITLE_EXTERN\n"}, {"SetPolarLabelVisibility", PyvtkPolarAxesActor_SetPolarLabelVisibility, METH_VARARGS, "V.SetPolarLabelVisibility(int)\nC++: virtual void SetPolarLabelVisibility(int _arg)\n\nTurn on and off the visibility of labels for polar axis.\n"}, {"GetPolarLabelVisibility", PyvtkPolarAxesActor_GetPolarLabelVisibility, METH_VARARGS, "V.GetPolarLabelVisibility() -> int\nC++: virtual int GetPolarLabelVisibility()\n\nTurn on and off the visibility of labels for polar axis.\n"}, {"PolarLabelVisibilityOn", PyvtkPolarAxesActor_PolarLabelVisibilityOn, METH_VARARGS, "V.PolarLabelVisibilityOn()\nC++: virtual void PolarLabelVisibilityOn()\n\nTurn on and off the visibility of labels for polar axis.\n"}, {"PolarLabelVisibilityOff", PyvtkPolarAxesActor_PolarLabelVisibilityOff, METH_VARARGS, "V.PolarLabelVisibilityOff()\nC++: virtual void PolarLabelVisibilityOff()\n\nTurn on and off the visibility of labels for polar axis.\n"}, {"SetArcTicksOriginToPolarAxis", PyvtkPolarAxesActor_SetArcTicksOriginToPolarAxis, METH_VARARGS, "V.SetArcTicksOriginToPolarAxis(int)\nC++: virtual void SetArcTicksOriginToPolarAxis(int _arg)\n\nIf On, the ticks are drawn from the angle of the polarAxis (i.e.\nthis->MinimalRadius) and continue counterclockwise with the step\nDeltaAngle Major/Minor. if Off, the start angle is 0.0, i.e. the\nangle on the major radius of the ellipse.\n"}, {"GetArcTicksOriginToPolarAxis", PyvtkPolarAxesActor_GetArcTicksOriginToPolarAxis, METH_VARARGS, "V.GetArcTicksOriginToPolarAxis() -> int\nC++: virtual int GetArcTicksOriginToPolarAxis()\n\nIf On, the ticks are drawn from the angle of the polarAxis (i.e.\nthis->MinimalRadius) and continue counterclockwise with the step\nDeltaAngle Major/Minor. if Off, the start angle is 0.0, i.e. the\nangle on the major radius of the ellipse.\n"}, {"ArcTicksOriginToPolarAxisOn", PyvtkPolarAxesActor_ArcTicksOriginToPolarAxisOn, METH_VARARGS, "V.ArcTicksOriginToPolarAxisOn()\nC++: virtual void ArcTicksOriginToPolarAxisOn()\n\nIf On, the ticks are drawn from the angle of the polarAxis (i.e.\nthis->MinimalRadius) and continue counterclockwise with the step\nDeltaAngle Major/Minor. if Off, the start angle is 0.0, i.e. the\nangle on the major radius of the ellipse.\n"}, {"ArcTicksOriginToPolarAxisOff", PyvtkPolarAxesActor_ArcTicksOriginToPolarAxisOff, METH_VARARGS, "V.ArcTicksOriginToPolarAxisOff()\nC++: virtual void ArcTicksOriginToPolarAxisOff()\n\nIf On, the ticks are drawn from the angle of the polarAxis (i.e.\nthis->MinimalRadius) and continue counterclockwise with the step\nDeltaAngle Major/Minor. if Off, the start angle is 0.0, i.e. the\nangle on the major radius of the ellipse.\n"}, {"SetRadialAxesOriginToPolarAxis", PyvtkPolarAxesActor_SetRadialAxesOriginToPolarAxis, METH_VARARGS, "V.SetRadialAxesOriginToPolarAxis(int)\nC++: virtual void SetRadialAxesOriginToPolarAxis(int _arg)\n\nIf On, the radial axes are drawn from the angle of the polarAxis\n(i.e. this->MinimalRadius) and continue counterclockwise with the\nstep DeltaAngleRadialAxes. if Off, the start angle is 0.0, i.e.\nthe angle on the major radius of the ellipse.\n"}, {"GetRadialAxesOriginToPolarAxis", PyvtkPolarAxesActor_GetRadialAxesOriginToPolarAxis, METH_VARARGS, "V.GetRadialAxesOriginToPolarAxis() -> int\nC++: virtual int GetRadialAxesOriginToPolarAxis()\n\nIf On, the radial axes are drawn from the angle of the polarAxis\n(i.e. this->MinimalRadius) and continue counterclockwise with the\nstep DeltaAngleRadialAxes. if Off, the start angle is 0.0, i.e.\nthe angle on the major radius of the ellipse.\n"}, {"RadialAxesOriginToPolarAxisOn", PyvtkPolarAxesActor_RadialAxesOriginToPolarAxisOn, METH_VARARGS, "V.RadialAxesOriginToPolarAxisOn()\nC++: virtual void RadialAxesOriginToPolarAxisOn()\n\nIf On, the radial axes are drawn from the angle of the polarAxis\n(i.e. this->MinimalRadius) and continue counterclockwise with the\nstep DeltaAngleRadialAxes. if Off, the start angle is 0.0, i.e.\nthe angle on the major radius of the ellipse.\n"}, {"RadialAxesOriginToPolarAxisOff", PyvtkPolarAxesActor_RadialAxesOriginToPolarAxisOff, METH_VARARGS, "V.RadialAxesOriginToPolarAxisOff()\nC++: virtual void RadialAxesOriginToPolarAxisOff()\n\nIf On, the radial axes are drawn from the angle of the polarAxis\n(i.e. this->MinimalRadius) and continue counterclockwise with the\nstep DeltaAngleRadialAxes. if Off, the start angle is 0.0, i.e.\nthe angle on the major radius of the ellipse.\n"}, {"SetPolarTickVisibility", PyvtkPolarAxesActor_SetPolarTickVisibility, METH_VARARGS, "V.SetPolarTickVisibility(int)\nC++: virtual void SetPolarTickVisibility(int _arg)\n\nTurn on and off the overall visibility of ticks.\n"}, {"GetPolarTickVisibility", PyvtkPolarAxesActor_GetPolarTickVisibility, METH_VARARGS, "V.GetPolarTickVisibility() -> int\nC++: virtual int GetPolarTickVisibility()\n\nTurn on and off the overall visibility of ticks.\n"}, {"PolarTickVisibilityOn", PyvtkPolarAxesActor_PolarTickVisibilityOn, METH_VARARGS, "V.PolarTickVisibilityOn()\nC++: virtual void PolarTickVisibilityOn()\n\nTurn on and off the overall visibility of ticks.\n"}, {"PolarTickVisibilityOff", PyvtkPolarAxesActor_PolarTickVisibilityOff, METH_VARARGS, "V.PolarTickVisibilityOff()\nC++: virtual void PolarTickVisibilityOff()\n\nTurn on and off the overall visibility of ticks.\n"}, {"SetAxisTickVisibility", PyvtkPolarAxesActor_SetAxisTickVisibility, METH_VARARGS, "V.SetAxisTickVisibility(int)\nC++: virtual void SetAxisTickVisibility(int _arg)\n\nTurn on and off the visibility of major ticks on polar axis and\nlast radial axis.\n"}, {"GetAxisTickVisibility", PyvtkPolarAxesActor_GetAxisTickVisibility, METH_VARARGS, "V.GetAxisTickVisibility() -> int\nC++: virtual int GetAxisTickVisibility()\n\nTurn on and off the visibility of major ticks on polar axis and\nlast radial axis.\n"}, {"AxisTickVisibilityOn", PyvtkPolarAxesActor_AxisTickVisibilityOn, METH_VARARGS, "V.AxisTickVisibilityOn()\nC++: virtual void AxisTickVisibilityOn()\n\nTurn on and off the visibility of major ticks on polar axis and\nlast radial axis.\n"}, {"AxisTickVisibilityOff", PyvtkPolarAxesActor_AxisTickVisibilityOff, METH_VARARGS, "V.AxisTickVisibilityOff()\nC++: virtual void AxisTickVisibilityOff()\n\nTurn on and off the visibility of major ticks on polar axis and\nlast radial axis.\n"}, {"SetAxisMinorTickVisibility", PyvtkPolarAxesActor_SetAxisMinorTickVisibility, METH_VARARGS, "V.SetAxisMinorTickVisibility(int)\nC++: virtual void SetAxisMinorTickVisibility(int _arg)\n\nTurn on and off the visibility of minor ticks on polar axis and\nlast radial axis.\n"}, {"GetAxisMinorTickVisibility", PyvtkPolarAxesActor_GetAxisMinorTickVisibility, METH_VARARGS, "V.GetAxisMinorTickVisibility() -> int\nC++: virtual int GetAxisMinorTickVisibility()\n\nTurn on and off the visibility of minor ticks on polar axis and\nlast radial axis.\n"}, {"AxisMinorTickVisibilityOn", PyvtkPolarAxesActor_AxisMinorTickVisibilityOn, METH_VARARGS, "V.AxisMinorTickVisibilityOn()\nC++: virtual void AxisMinorTickVisibilityOn()\n\nTurn on and off the visibility of minor ticks on polar axis and\nlast radial axis.\n"}, {"AxisMinorTickVisibilityOff", PyvtkPolarAxesActor_AxisMinorTickVisibilityOff, METH_VARARGS, "V.AxisMinorTickVisibilityOff()\nC++: virtual void AxisMinorTickVisibilityOff()\n\nTurn on and off the visibility of minor ticks on polar axis and\nlast radial axis.\n"}, {"SetArcTickVisibility", PyvtkPolarAxesActor_SetArcTickVisibility, METH_VARARGS, "V.SetArcTickVisibility(int)\nC++: virtual void SetArcTickVisibility(int _arg)\n\nTurn on and off the visibility of major ticks on the last arc.\n"}, {"GetArcTickVisibility", PyvtkPolarAxesActor_GetArcTickVisibility, METH_VARARGS, "V.GetArcTickVisibility() -> int\nC++: virtual int GetArcTickVisibility()\n\nTurn on and off the visibility of major ticks on the last arc.\n"}, {"ArcTickVisibilityOn", PyvtkPolarAxesActor_ArcTickVisibilityOn, METH_VARARGS, "V.ArcTickVisibilityOn()\nC++: virtual void ArcTickVisibilityOn()\n\nTurn on and off the visibility of major ticks on the last arc.\n"}, {"ArcTickVisibilityOff", PyvtkPolarAxesActor_ArcTickVisibilityOff, METH_VARARGS, "V.ArcTickVisibilityOff()\nC++: virtual void ArcTickVisibilityOff()\n\nTurn on and off the visibility of major ticks on the last arc.\n"}, {"SetArcMinorTickVisibility", PyvtkPolarAxesActor_SetArcMinorTickVisibility, METH_VARARGS, "V.SetArcMinorTickVisibility(int)\nC++: virtual void SetArcMinorTickVisibility(int _arg)\n\nTurn on and off the visibility of minor ticks on the last arc.\n"}, {"GetArcMinorTickVisibility", PyvtkPolarAxesActor_GetArcMinorTickVisibility, METH_VARARGS, "V.GetArcMinorTickVisibility() -> int\nC++: virtual int GetArcMinorTickVisibility()\n\nTurn on and off the visibility of minor ticks on the last arc.\n"}, {"ArcMinorTickVisibilityOn", PyvtkPolarAxesActor_ArcMinorTickVisibilityOn, METH_VARARGS, "V.ArcMinorTickVisibilityOn()\nC++: virtual void ArcMinorTickVisibilityOn()\n\nTurn on and off the visibility of minor ticks on the last arc.\n"}, {"ArcMinorTickVisibilityOff", PyvtkPolarAxesActor_ArcMinorTickVisibilityOff, METH_VARARGS, "V.ArcMinorTickVisibilityOff()\nC++: virtual void ArcMinorTickVisibilityOff()\n\nTurn on and off the visibility of minor ticks on the last arc.\n"}, {"SetArcMajorTickSize", PyvtkPolarAxesActor_SetArcMajorTickSize, METH_VARARGS, "V.SetArcMajorTickSize(float)\nC++: virtual void SetArcMajorTickSize(double _arg)\n\nSet/Get the size of the major ticks on the last arc.\n"}, {"GetArcMajorTickSize", PyvtkPolarAxesActor_GetArcMajorTickSize, METH_VARARGS, "V.GetArcMajorTickSize() -> float\nC++: virtual double GetArcMajorTickSize()\n\nSet/Get the size of the major ticks on the last arc.\n"}, {"SetPolarAxisMajorTickSize", PyvtkPolarAxesActor_SetPolarAxisMajorTickSize, METH_VARARGS, "V.SetPolarAxisMajorTickSize(float)\nC++: virtual void SetPolarAxisMajorTickSize(double _arg)\n\nSet/Get the size of the major ticks on the polar axis.\n"}, {"GetPolarAxisMajorTickSize", PyvtkPolarAxesActor_GetPolarAxisMajorTickSize, METH_VARARGS, "V.GetPolarAxisMajorTickSize() -> float\nC++: virtual double GetPolarAxisMajorTickSize()\n\nSet/Get the size of the major ticks on the polar axis.\n"}, {"SetLastRadialAxisMajorTickSize", PyvtkPolarAxesActor_SetLastRadialAxisMajorTickSize, METH_VARARGS, "V.SetLastRadialAxisMajorTickSize(float)\nC++: virtual void SetLastRadialAxisMajorTickSize(double _arg)\n\nSet/Get the size of the major ticks on the last radial axis.\n"}, {"GetLastRadialAxisMajorTickSize", PyvtkPolarAxesActor_GetLastRadialAxisMajorTickSize, METH_VARARGS, "V.GetLastRadialAxisMajorTickSize() -> float\nC++: virtual double GetLastRadialAxisMajorTickSize()\n\nSet/Get the size of the major ticks on the last radial axis.\n"}, {"SetPolarAxisTickRatioSize", PyvtkPolarAxesActor_SetPolarAxisTickRatioSize, METH_VARARGS, "V.SetPolarAxisTickRatioSize(float)\nC++: virtual void SetPolarAxisTickRatioSize(double _arg)\n\nSet/Get the ratio between major and minor Polar Axis ticks size\n"}, {"GetPolarAxisTickRatioSize", PyvtkPolarAxesActor_GetPolarAxisTickRatioSize, METH_VARARGS, "V.GetPolarAxisTickRatioSize() -> float\nC++: virtual double GetPolarAxisTickRatioSize()\n\nSet/Get the ratio between major and minor Polar Axis ticks size\n"}, {"SetLastAxisTickRatioSize", PyvtkPolarAxesActor_SetLastAxisTickRatioSize, METH_VARARGS, "V.SetLastAxisTickRatioSize(float)\nC++: virtual void SetLastAxisTickRatioSize(double _arg)\n\nSet/Get the ratio between major and minor Last Radial axis ticks\nsize\n"}, {"GetLastAxisTickRatioSize", PyvtkPolarAxesActor_GetLastAxisTickRatioSize, METH_VARARGS, "V.GetLastAxisTickRatioSize() -> float\nC++: virtual double GetLastAxisTickRatioSize()\n\nSet/Get the ratio between major and minor Last Radial axis ticks\nsize\n"}, {"SetArcTickRatioSize", PyvtkPolarAxesActor_SetArcTickRatioSize, METH_VARARGS, "V.SetArcTickRatioSize(float)\nC++: virtual void SetArcTickRatioSize(double _arg)\n\nSet/Get the ratio between major and minor Arc ticks size\n"}, {"GetArcTickRatioSize", PyvtkPolarAxesActor_GetArcTickRatioSize, METH_VARARGS, "V.GetArcTickRatioSize() -> float\nC++: virtual double GetArcTickRatioSize()\n\nSet/Get the ratio between major and minor Arc ticks size\n"}, {"SetPolarAxisMajorTickThickness", PyvtkPolarAxesActor_SetPolarAxisMajorTickThickness, METH_VARARGS, "V.SetPolarAxisMajorTickThickness(float)\nC++: virtual void SetPolarAxisMajorTickThickness(double _arg)\n\nSet/Get the size of the thickness of polar axis ticks\n"}, {"GetPolarAxisMajorTickThickness", PyvtkPolarAxesActor_GetPolarAxisMajorTickThickness, METH_VARARGS, "V.GetPolarAxisMajorTickThickness() -> float\nC++: virtual double GetPolarAxisMajorTickThickness()\n\nSet/Get the size of the thickness of polar axis ticks\n"}, {"SetLastRadialAxisMajorTickThickness", PyvtkPolarAxesActor_SetLastRadialAxisMajorTickThickness, METH_VARARGS, "V.SetLastRadialAxisMajorTickThickness(float)\nC++: virtual void SetLastRadialAxisMajorTickThickness(double _arg)\n\nSet/Get the size of the thickness of last radial axis ticks\n"}, {"GetLastRadialAxisMajorTickThickness", PyvtkPolarAxesActor_GetLastRadialAxisMajorTickThickness, METH_VARARGS, "V.GetLastRadialAxisMajorTickThickness() -> float\nC++: virtual double GetLastRadialAxisMajorTickThickness()\n\nSet/Get the size of the thickness of last radial axis ticks\n"}, {"SetArcMajorTickThickness", PyvtkPolarAxesActor_SetArcMajorTickThickness, METH_VARARGS, "V.SetArcMajorTickThickness(float)\nC++: virtual void SetArcMajorTickThickness(double _arg)\n\nSet/Get the size of the thickness of the last arc ticks\n"}, {"GetArcMajorTickThickness", PyvtkPolarAxesActor_GetArcMajorTickThickness, METH_VARARGS, "V.GetArcMajorTickThickness() -> float\nC++: virtual double GetArcMajorTickThickness()\n\nSet/Get the size of the thickness of the last arc ticks\n"}, {"SetPolarAxisTickRatioThickness", PyvtkPolarAxesActor_SetPolarAxisTickRatioThickness, METH_VARARGS, "V.SetPolarAxisTickRatioThickness(float)\nC++: virtual void SetPolarAxisTickRatioThickness(double _arg)\n\nSet/Get the ratio between major and minor Polar Axis ticks\nthickness\n"}, {"GetPolarAxisTickRatioThickness", PyvtkPolarAxesActor_GetPolarAxisTickRatioThickness, METH_VARARGS, "V.GetPolarAxisTickRatioThickness() -> float\nC++: virtual double GetPolarAxisTickRatioThickness()\n\nSet/Get the ratio between major and minor Polar Axis ticks\nthickness\n"}, {"SetLastAxisTickRatioThickness", PyvtkPolarAxesActor_SetLastAxisTickRatioThickness, METH_VARARGS, "V.SetLastAxisTickRatioThickness(float)\nC++: virtual void SetLastAxisTickRatioThickness(double _arg)\n\nSet/Get the ratio between major and minor Last Radial axis ticks\nthickness\n"}, {"GetLastAxisTickRatioThickness", PyvtkPolarAxesActor_GetLastAxisTickRatioThickness, METH_VARARGS, "V.GetLastAxisTickRatioThickness() -> float\nC++: virtual double GetLastAxisTickRatioThickness()\n\nSet/Get the ratio between major and minor Last Radial axis ticks\nthickness\n"}, {"SetArcTickRatioThickness", PyvtkPolarAxesActor_SetArcTickRatioThickness, METH_VARARGS, "V.SetArcTickRatioThickness(float)\nC++: virtual void SetArcTickRatioThickness(double _arg)\n\nSet/Get the ratio between major and minor Arc ticks thickness\n"}, {"GetArcTickRatioThickness", PyvtkPolarAxesActor_GetArcTickRatioThickness, METH_VARARGS, "V.GetArcTickRatioThickness() -> float\nC++: virtual double GetArcTickRatioThickness()\n\nSet/Get the ratio between major and minor Arc ticks thickness\n"}, {"SetDeltaRangeMajor", PyvtkPolarAxesActor_SetDeltaRangeMajor, METH_VARARGS, "V.SetDeltaRangeMajor(float)\nC++: virtual void SetDeltaRangeMajor(double _arg)\n\nSet/Get the step between 2 major ticks, in range value (values\ndisplayed on the axis).\n"}, {"GetDeltaRangeMajor", PyvtkPolarAxesActor_GetDeltaRangeMajor, METH_VARARGS, "V.GetDeltaRangeMajor() -> float\nC++: virtual double GetDeltaRangeMajor()\n\nSet/Get the step between 2 major ticks, in range value (values\ndisplayed on the axis).\n"}, {"SetDeltaRangeMinor", PyvtkPolarAxesActor_SetDeltaRangeMinor, METH_VARARGS, "V.SetDeltaRangeMinor(float)\nC++: virtual void SetDeltaRangeMinor(double _arg)\n\nSet/Get the step between 2 minor ticks, in range value (values\ndisplayed on the axis).\n"}, {"GetDeltaRangeMinor", PyvtkPolarAxesActor_GetDeltaRangeMinor, METH_VARARGS, "V.GetDeltaRangeMinor() -> float\nC++: virtual double GetDeltaRangeMinor()\n\nSet/Get the step between 2 minor ticks, in range value (values\ndisplayed on the axis).\n"}, {"SetDeltaAngleMajor", PyvtkPolarAxesActor_SetDeltaAngleMajor, METH_VARARGS, "V.SetDeltaAngleMajor(float)\nC++: virtual void SetDeltaAngleMajor(double _arg)\n\nSet/Get the angle between 2 major ticks on the last arc.\n"}, {"GetDeltaAngleMajor", PyvtkPolarAxesActor_GetDeltaAngleMajor, METH_VARARGS, "V.GetDeltaAngleMajor() -> float\nC++: virtual double GetDeltaAngleMajor()\n\nSet/Get the angle between 2 major ticks on the last arc.\n"}, {"SetDeltaAngleMinor", PyvtkPolarAxesActor_SetDeltaAngleMinor, METH_VARARGS, "V.SetDeltaAngleMinor(float)\nC++: virtual void SetDeltaAngleMinor(double _arg)\n\nSet/Get the angle between 2 minor ticks on the last arc.\n"}, {"GetDeltaAngleMinor", PyvtkPolarAxesActor_GetDeltaAngleMinor, METH_VARARGS, "V.GetDeltaAngleMinor() -> float\nC++: virtual double GetDeltaAngleMinor()\n\nSet/Get the angle between 2 minor ticks on the last arc.\n"}, {"SetDeltaAngleRadialAxes", PyvtkPolarAxesActor_SetDeltaAngleRadialAxes, METH_VARARGS, "V.SetDeltaAngleRadialAxes(float)\nC++: virtual void SetDeltaAngleRadialAxes(double _arg)\n\nSet/Get the angle between 2 radial axes.\n"}, {"GetDeltaAngleRadialAxes", PyvtkPolarAxesActor_GetDeltaAngleRadialAxes, METH_VARARGS, "V.GetDeltaAngleRadialAxes() -> float\nC++: virtual double GetDeltaAngleRadialAxes()\n\nSet/Get the angle between 2 radial axes.\n"}, {"SetRadialAxesVisibility", PyvtkPolarAxesActor_SetRadialAxesVisibility, METH_VARARGS, "V.SetRadialAxesVisibility(int)\nC++: virtual void SetRadialAxesVisibility(int _arg)\n\nTurn on and off the visibility of non-polar radial axes.\n"}, {"GetRadialAxesVisibility", PyvtkPolarAxesActor_GetRadialAxesVisibility, METH_VARARGS, "V.GetRadialAxesVisibility() -> int\nC++: virtual int GetRadialAxesVisibility()\n\nTurn on and off the visibility of non-polar radial axes.\n"}, {"RadialAxesVisibilityOn", PyvtkPolarAxesActor_RadialAxesVisibilityOn, METH_VARARGS, "V.RadialAxesVisibilityOn()\nC++: virtual void RadialAxesVisibilityOn()\n\nTurn on and off the visibility of non-polar radial axes.\n"}, {"RadialAxesVisibilityOff", PyvtkPolarAxesActor_RadialAxesVisibilityOff, METH_VARARGS, "V.RadialAxesVisibilityOff()\nC++: virtual void RadialAxesVisibilityOff()\n\nTurn on and off the visibility of non-polar radial axes.\n"}, {"SetRadialTitleVisibility", PyvtkPolarAxesActor_SetRadialTitleVisibility, METH_VARARGS, "V.SetRadialTitleVisibility(int)\nC++: virtual void SetRadialTitleVisibility(int _arg)\n\nTurn on and off the visibility of titles for non-polar radial\naxes.\n"}, {"GetRadialTitleVisibility", PyvtkPolarAxesActor_GetRadialTitleVisibility, METH_VARARGS, "V.GetRadialTitleVisibility() -> int\nC++: virtual int GetRadialTitleVisibility()\n\nTurn on and off the visibility of titles for non-polar radial\naxes.\n"}, {"RadialTitleVisibilityOn", PyvtkPolarAxesActor_RadialTitleVisibilityOn, METH_VARARGS, "V.RadialTitleVisibilityOn()\nC++: virtual void RadialTitleVisibilityOn()\n\nTurn on and off the visibility of titles for non-polar radial\naxes.\n"}, {"RadialTitleVisibilityOff", PyvtkPolarAxesActor_RadialTitleVisibilityOff, METH_VARARGS, "V.RadialTitleVisibilityOff()\nC++: virtual void RadialTitleVisibilityOff()\n\nTurn on and off the visibility of titles for non-polar radial\naxes.\n"}, {"SetPolarArcsVisibility", PyvtkPolarAxesActor_SetPolarArcsVisibility, METH_VARARGS, "V.SetPolarArcsVisibility(int)\nC++: virtual void SetPolarArcsVisibility(int _arg)\n\nTurn on and off the visibility of arcs for polar axis.\n"}, {"GetPolarArcsVisibility", PyvtkPolarAxesActor_GetPolarArcsVisibility, METH_VARARGS, "V.GetPolarArcsVisibility() -> int\nC++: virtual int GetPolarArcsVisibility()\n\nTurn on and off the visibility of arcs for polar axis.\n"}, {"PolarArcsVisibilityOn", PyvtkPolarAxesActor_PolarArcsVisibilityOn, METH_VARARGS, "V.PolarArcsVisibilityOn()\nC++: virtual void PolarArcsVisibilityOn()\n\nTurn on and off the visibility of arcs for polar axis.\n"}, {"PolarArcsVisibilityOff", PyvtkPolarAxesActor_PolarArcsVisibilityOff, METH_VARARGS, "V.PolarArcsVisibilityOff()\nC++: virtual void PolarArcsVisibilityOff()\n\nTurn on and off the visibility of arcs for polar axis.\n"}, {"SetUse2DMode", PyvtkPolarAxesActor_SetUse2DMode, METH_VARARGS, "V.SetUse2DMode(int)\nC++: void SetUse2DMode(int val)\n\nEnable/Disable labels 2D mode (always facing the camera).\n"}, {"GetUse2DMode", PyvtkPolarAxesActor_GetUse2DMode, METH_VARARGS, "V.GetUse2DMode() -> int\nC++: int GetUse2DMode()\n\nEnable/Disable labels 2D mode (always facing the camera).\n"}, {"SetPolarAxisTitleTextProperty", PyvtkPolarAxesActor_SetPolarAxisTitleTextProperty, METH_VARARGS, "V.SetPolarAxisTitleTextProperty(vtkTextProperty)\nC++: virtual void SetPolarAxisTitleTextProperty(\n vtkTextProperty *p)\n\nSet/Get the polar axis title text property.\n"}, {"GetPolarAxisTitleTextProperty", PyvtkPolarAxesActor_GetPolarAxisTitleTextProperty, METH_VARARGS, "V.GetPolarAxisTitleTextProperty() -> vtkTextProperty\nC++: virtual vtkTextProperty *GetPolarAxisTitleTextProperty()\n\nSet/Get the polar axis title text property.\n"}, {"SetPolarAxisLabelTextProperty", PyvtkPolarAxesActor_SetPolarAxisLabelTextProperty, METH_VARARGS, "V.SetPolarAxisLabelTextProperty(vtkTextProperty)\nC++: virtual void SetPolarAxisLabelTextProperty(\n vtkTextProperty *p)\n\nSet/Get the polar axis labels text property.\n"}, {"GetPolarAxisLabelTextProperty", PyvtkPolarAxesActor_GetPolarAxisLabelTextProperty, METH_VARARGS, "V.GetPolarAxisLabelTextProperty() -> vtkTextProperty\nC++: virtual vtkTextProperty *GetPolarAxisLabelTextProperty()\n\nSet/Get the polar axis labels text property.\n"}, {"SetLastRadialAxisTextProperty", PyvtkPolarAxesActor_SetLastRadialAxisTextProperty, METH_VARARGS, "V.SetLastRadialAxisTextProperty(vtkTextProperty)\nC++: virtual void SetLastRadialAxisTextProperty(\n vtkTextProperty *p)\n\nSet/Get the last radial axis text property.\n"}, {"GetLastRadialAxisTextProperty", PyvtkPolarAxesActor_GetLastRadialAxisTextProperty, METH_VARARGS, "V.GetLastRadialAxisTextProperty() -> vtkTextProperty\nC++: virtual vtkTextProperty *GetLastRadialAxisTextProperty()\n\nSet/Get the last radial axis text property.\n"}, {"SetSecondaryRadialAxesTextProperty", PyvtkPolarAxesActor_SetSecondaryRadialAxesTextProperty, METH_VARARGS, "V.SetSecondaryRadialAxesTextProperty(vtkTextProperty)\nC++: virtual void SetSecondaryRadialAxesTextProperty(\n vtkTextProperty *p)\n\nSet/Get the secondary radial axes text property.\n"}, {"GetSecondaryRadialAxesTextProperty", PyvtkPolarAxesActor_GetSecondaryRadialAxesTextProperty, METH_VARARGS, "V.GetSecondaryRadialAxesTextProperty() -> vtkTextProperty\nC++: virtual vtkTextProperty *GetSecondaryRadialAxesTextProperty()\n\nSet/Get the secondary radial axes text property.\n"}, {"SetPolarAxisProperty", PyvtkPolarAxesActor_SetPolarAxisProperty, METH_VARARGS, "V.SetPolarAxisProperty(vtkProperty)\nC++: virtual void SetPolarAxisProperty(vtkProperty *)\n\nGet/Set polar axis actor properties.\n"}, {"GetPolarAxisProperty", PyvtkPolarAxesActor_GetPolarAxisProperty, METH_VARARGS, "V.GetPolarAxisProperty() -> vtkProperty\nC++: virtual vtkProperty *GetPolarAxisProperty()\n\nGet/Set polar axis actor properties.\n"}, {"SetLastRadialAxisProperty", PyvtkPolarAxesActor_SetLastRadialAxisProperty, METH_VARARGS, "V.SetLastRadialAxisProperty(vtkProperty)\nC++: virtual void SetLastRadialAxisProperty(vtkProperty *p)\n\nGet/Set last radial axis actor properties.\n"}, {"GetLastRadialAxisProperty", PyvtkPolarAxesActor_GetLastRadialAxisProperty, METH_VARARGS, "V.GetLastRadialAxisProperty() -> vtkProperty\nC++: virtual vtkProperty *GetLastRadialAxisProperty()\n\nGet/Set last radial axis actor properties.\n"}, {"SetSecondaryRadialAxesProperty", PyvtkPolarAxesActor_SetSecondaryRadialAxesProperty, METH_VARARGS, "V.SetSecondaryRadialAxesProperty(vtkProperty)\nC++: virtual void SetSecondaryRadialAxesProperty(vtkProperty *p)\n\nGet/Set secondary radial axes actors properties.\n"}, {"GetSecondaryRadialAxesProperty", PyvtkPolarAxesActor_GetSecondaryRadialAxesProperty, METH_VARARGS, "V.GetSecondaryRadialAxesProperty() -> vtkProperty\nC++: virtual vtkProperty *GetSecondaryRadialAxesProperty()\n\nGet/Set secondary radial axes actors properties.\n"}, {"SetPolarArcsProperty", PyvtkPolarAxesActor_SetPolarArcsProperty, METH_VARARGS, "V.SetPolarArcsProperty(vtkProperty)\nC++: virtual void SetPolarArcsProperty(vtkProperty *p)\n\nGet/Set principal polar arc actor property.\n"}, {"GetPolarArcsProperty", PyvtkPolarAxesActor_GetPolarArcsProperty, METH_VARARGS, "V.GetPolarArcsProperty() -> vtkProperty\nC++: vtkProperty *GetPolarArcsProperty()\n\nGet/Set principal polar arc actor property.\n"}, {"SetSecondaryPolarArcsProperty", PyvtkPolarAxesActor_SetSecondaryPolarArcsProperty, METH_VARARGS, "V.SetSecondaryPolarArcsProperty(vtkProperty)\nC++: virtual void SetSecondaryPolarArcsProperty(vtkProperty *p)\n\nGet/Set secondary polar arcs actors property.\n"}, {"GetSecondaryPolarArcsProperty", PyvtkPolarAxesActor_GetSecondaryPolarArcsProperty, METH_VARARGS, "V.GetSecondaryPolarArcsProperty() -> vtkProperty\nC++: vtkProperty *GetSecondaryPolarArcsProperty()\n\nGet/Set secondary polar arcs actors property.\n"}, {"SetBounds", PyvtkPolarAxesActor_SetBounds, METH_VARARGS, "V.SetBounds(float, float, float, float, float, float)\nC++: void SetBounds(double, double, double, double, double,\n double)\nV.SetBounds((float, float, float, float, float, float))\nC++: void SetBounds(double a[6])\n\n"}, {"GetBounds", PyvtkPolarAxesActor_GetBounds, METH_VARARGS, "V.GetBounds() -> (float, ...)\nC++: double *GetBounds() override;\nV.GetBounds(float, float, float, float, float, float)\nC++: void GetBounds(double &xmin, double &xmax, double &ymin,\n double &ymax, double &zmin, double &zmax)\nV.GetBounds([float, float, float, float, float, float])\nC++: void GetBounds(double bounds[6])\n\nExplicitly specify the region in space around which to draw the\nbounds. The bounds are used only when no Input or Prop is\nspecified. The bounds are specified according to (xmin,xmax,\nymin,ymax, zmin,zmax), making sure that the min's are less than the\nmax's.\n"}, {"SetRatio", PyvtkPolarAxesActor_SetRatio, METH_VARARGS, "V.SetRatio(float)\nC++: virtual void SetRatio(double _arg)\n\nRatio\n"}, {"GetRatioMinValue", PyvtkPolarAxesActor_GetRatioMinValue, METH_VARARGS, "V.GetRatioMinValue() -> float\nC++: virtual double GetRatioMinValue()\n\nRatio\n"}, {"GetRatioMaxValue", PyvtkPolarAxesActor_GetRatioMaxValue, METH_VARARGS, "V.GetRatioMaxValue() -> float\nC++: virtual double GetRatioMaxValue()\n\nRatio\n"}, {"GetRatio", PyvtkPolarAxesActor_GetRatio, METH_VARARGS, "V.GetRatio() -> float\nC++: virtual double GetRatio()\n\nRatio\n"}, {nullptr, nullptr, 0, nullptr} }; static PyTypeObject PyvtkPolarAxesActor_Type = { PyVarObject_HEAD_INIT(&PyType_Type, 0) "vtkRenderingAnnotationPython.vtkPolarAxesActor", // tp_name sizeof(PyVTKObject), // tp_basicsize 0, // tp_itemsize PyVTKObject_Delete, // tp_dealloc 0, // tp_print nullptr, // tp_getattr nullptr, // tp_setattr nullptr, // tp_compare PyVTKObject_Repr, // tp_repr nullptr, // tp_as_number nullptr, // tp_as_sequence nullptr, // tp_as_mapping nullptr, // tp_hash nullptr, // tp_call PyVTKObject_String, // tp_str PyObject_GenericGetAttr, // tp_getattro PyObject_GenericSetAttr, // tp_setattro &PyVTKObject_AsBuffer, // tp_as_buffer Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC|Py_TPFLAGS_BASETYPE, // tp_flags PyvtkPolarAxesActor_Doc, // tp_doc PyVTKObject_Traverse, // tp_traverse nullptr, // tp_clear nullptr, // tp_richcompare offsetof(PyVTKObject, vtk_weakreflist), // tp_weaklistoffset nullptr, // tp_iter nullptr, // tp_iternext nullptr, // tp_methods nullptr, // tp_members PyVTKObject_GetSet, // tp_getset nullptr, // tp_base nullptr, // tp_dict nullptr, // tp_descr_get nullptr, // tp_descr_set offsetof(PyVTKObject, vtk_dict), // tp_dictoffset nullptr, // tp_init nullptr, // tp_alloc PyVTKObject_New, // tp_new PyObject_GC_Del, // tp_free nullptr, // tp_is_gc nullptr, // tp_bases nullptr, // tp_mro nullptr, // tp_cache nullptr, // tp_subclasses nullptr, // tp_weaklist VTK_WRAP_PYTHON_SUPPRESS_UNINITIALIZED }; static vtkObjectBase *PyvtkPolarAxesActor_StaticNew() { return vtkPolarAxesActor::New(); } PyObject *PyvtkPolarAxesActor_ClassNew() { PyVTKClass_Add( &PyvtkPolarAxesActor_Type, PyvtkPolarAxesActor_Methods, "vtkPolarAxesActor", &PyvtkPolarAxesActor_StaticNew); PyTypeObject *pytype = &PyvtkPolarAxesActor_Type; if ((pytype->tp_flags & Py_TPFLAGS_READY) != 0) { return (PyObject *)pytype; } #if !defined(VTK_PY3K) && PY_VERSION_HEX >= 0x02060000 pytype->tp_flags |= Py_TPFLAGS_HAVE_NEWBUFFER; #endif pytype->tp_base = (PyTypeObject *)PyvtkActor_ClassNew(); PyObject *d = pytype->tp_dict; PyObject *o; PyType_Ready(&PyvtkPolarAxesActor_ExponentLocation_Type); PyvtkPolarAxesActor_ExponentLocation_Type.tp_new = nullptr; vtkPythonUtil::AddEnumToMap(&PyvtkPolarAxesActor_ExponentLocation_Type); o = (PyObject *)&PyvtkPolarAxesActor_ExponentLocation_Type; if (PyDict_SetItemString(d, "ExponentLocation", o) != 0) { Py_DECREF(o); } PyType_Ready(&PyvtkPolarAxesActor_TitleLocation_Type); PyvtkPolarAxesActor_TitleLocation_Type.tp_new = nullptr; vtkPythonUtil::AddEnumToMap(&PyvtkPolarAxesActor_TitleLocation_Type); o = (PyObject *)&PyvtkPolarAxesActor_TitleLocation_Type; if (PyDict_SetItemString(d, "TitleLocation", o) != 0) { Py_DECREF(o); } for (int c = 0; c < 3; c++) { static const struct { const char *name; int value; } constants[3] = { { "VTK_EXPONENT_BOTTOM", vtkPolarAxesActor::VTK_EXPONENT_BOTTOM }, { "VTK_EXPONENT_EXTERN", vtkPolarAxesActor::VTK_EXPONENT_EXTERN }, { "VTK_EXPONENT_LABELS", vtkPolarAxesActor::VTK_EXPONENT_LABELS }, }; o = PyvtkPolarAxesActor_ExponentLocation_FromEnum(constants[c].value); if (o) { PyDict_SetItemString(d, constants[c].name, o); Py_DECREF(o); } } for (int c = 0; c < 2; c++) { typedef vtkPolarAxesActor::TitleLocation cxx_enum_type; static const struct { const char *name; cxx_enum_type value; } constants[2] = { { "VTK_TITLE_BOTTOM", vtkPolarAxesActor::VTK_TITLE_BOTTOM }, { "VTK_TITLE_EXTERN", vtkPolarAxesActor::VTK_TITLE_EXTERN }, }; o = PyvtkPolarAxesActor_TitleLocation_FromEnum(constants[c].value); if (o) { PyDict_SetItemString(d, constants[c].name, o); Py_DECREF(o); } } PyType_Ready(pytype); return (PyObject *)pytype; } void PyVTKAddFile_vtkPolarAxesActor( PyObject *dict) { PyObject *o; o = PyvtkPolarAxesActor_ClassNew(); if (o && PyDict_SetItemString(dict, "vtkPolarAxesActor", o) != 0) { Py_DECREF(o); } for (int c = 0; c < 3; c++) { static const struct { const char *name; int value; } constants[3] = { { "VTK_MAXIMUM_NUMBER_OF_RADIAL_AXES", 50 }, { "VTK_DEFAULT_NUMBER_OF_RADIAL_AXES", 5 }, { "VTK_MAXIMUM_NUMBER_OF_POLAR_AXIS_TICKS", 200 }, }; o = PyInt_FromLong(constants[c].value); if (o) { PyDict_SetItemString(dict, constants[c].name, o); Py_DECREF(o); } } for (int c = 0; c < 2; c++) { static const struct { const char *name; double value; } constants[2] = { { "VTK_MAXIMUM_RATIO", 1000.0 }, { "VTK_POLAR_ARC_RESOLUTION_PER_DEG", 0.2 }, }; o = PyFloat_FromDouble(constants[c].value); if (o) { PyDict_SetItemString(dict, constants[c].name, o); Py_DECREF(o); } } }