ansys-fluent-core 0.34.0__py3-none-any.whl → 0.34.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +2 -2
- ansys/fluent/core/file_session.py +28 -2
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_231/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_231/meshing.py +182 -182
- ansys/fluent/core/generated/datamodel_232/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_232/meshing.py +201 -201
- ansys/fluent/core/generated/datamodel_241/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_241/meshing.py +298 -298
- ansys/fluent/core/generated/datamodel_242/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_242/meshing.py +334 -334
- ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_251/flicing.py +50 -50
- ansys/fluent/core/generated/datamodel_251/meshing.py +340 -340
- ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
- ansys/fluent/core/generated/datamodel_252/flicing.py +35 -35
- ansys/fluent/core/generated/datamodel_252/meshing.py +402 -402
- ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
- ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
- ansys/fluent/core/generated/datamodel_261/meshing.py +377 -377
- ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
- ansys/fluent/core/generated/datamodel_261/part_management.py +10 -10
- ansys/fluent/core/generated/fluent_version_261.py +3 -3
- ansys/fluent/core/generated/solver/settings_261.py +3023 -2378
- ansys/fluent/core/generated/solver/settings_261.pyi +1456 -1537
- ansys/fluent/core/generated/solver/tui_261.py +1436 -599
- ansys/fluent/core/services/field_data.py +27 -8
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/RECORD +31 -31
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.34.0.dist-info → ansys_fluent_core-0.34.1.dist-info}/WHEEL +0 -0
|
@@ -15610,6 +15610,7 @@ class main_menu(TUIMenu):
|
|
|
15610
15610
|
self.geometry = self.__class__.geometry(service, version, mode, path + ["geometry"])
|
|
15611
15611
|
self.manage_criteria = self.__class__.manage_criteria(service, version, mode, path + ["manage_criteria"])
|
|
15612
15612
|
self.multi_layer_refinement = self.__class__.multi_layer_refinement(service, version, mode, path + ["multi_layer_refinement"])
|
|
15613
|
+
self.predefined_criteria = self.__class__.predefined_criteria(service, version, mode, path + ["predefined_criteria"])
|
|
15613
15614
|
self.profile = self.__class__.profile(service, version, mode, path + ["profile"])
|
|
15614
15615
|
self.set = self.__class__.set(service, version, mode, path + ["set"])
|
|
15615
15616
|
self.adapt_mesh = self.__class__.adapt_mesh(service, version, mode, path + ["adapt_mesh"])
|
|
@@ -15825,6 +15826,126 @@ class main_menu(TUIMenu):
|
|
|
15825
15826
|
Refine the mesh for multiple boundary layers.
|
|
15826
15827
|
"""
|
|
15827
15828
|
|
|
15829
|
+
class predefined_criteria(TUIMenu):
|
|
15830
|
+
"""
|
|
15831
|
+
Enters the predefined-criteria menu, which allows you to select commonly used criteria for adapting the mesh.
|
|
15832
|
+
"""
|
|
15833
|
+
def __init__(self, service, version, mode, path):
|
|
15834
|
+
self.aerodynamics = self.__class__.aerodynamics(service, version, mode, path + ["aerodynamics"])
|
|
15835
|
+
self.boundary_layer = self.__class__.boundary_layer(service, version, mode, path + ["boundary_layer"])
|
|
15836
|
+
self.combustion = self.__class__.combustion(service, version, mode, path + ["combustion"])
|
|
15837
|
+
self.multiphase = self.__class__.multiphase(service, version, mode, path + ["multiphase"])
|
|
15838
|
+
self.overset = self.__class__.overset(service, version, mode, path + ["overset"])
|
|
15839
|
+
super().__init__(service, version, mode, path)
|
|
15840
|
+
class overset(TUIMethod):
|
|
15841
|
+
"""
|
|
15842
|
+
No help available.
|
|
15843
|
+
"""
|
|
15844
|
+
|
|
15845
|
+
class aerodynamics(TUIMenu):
|
|
15846
|
+
"""
|
|
15847
|
+
Enters the aerodynamics menu, which provides text commands that create cell registers and define adaption criteria that can be useful for aerodynamic simulations.
|
|
15848
|
+
"""
|
|
15849
|
+
def __init__(self, service, version, mode, path):
|
|
15850
|
+
self.error_based = self.__class__.error_based(service, version, mode, path + ["error_based"])
|
|
15851
|
+
self.shock_indicator = self.__class__.shock_indicator(service, version, mode, path + ["shock_indicator"])
|
|
15852
|
+
super().__init__(service, version, mode, path)
|
|
15853
|
+
|
|
15854
|
+
class error_based(TUIMenu):
|
|
15855
|
+
"""
|
|
15856
|
+
Enters the error-based menu, which provides text commands that create cell registers and define adaption criteria based on the solution error.
|
|
15857
|
+
"""
|
|
15858
|
+
def __init__(self, service, version, mode, path):
|
|
15859
|
+
self.combined_hessian_indicator = self.__class__.combined_hessian_indicator(service, version, mode, path + ["combined_hessian_indicator"])
|
|
15860
|
+
self.goal_based_error_indicator = self.__class__.goal_based_error_indicator(service, version, mode, path + ["goal_based_error_indicator"])
|
|
15861
|
+
self.mach_hessian_indicator = self.__class__.mach_hessian_indicator(service, version, mode, path + ["mach_hessian_indicator"])
|
|
15862
|
+
self.pressure_hessian_indicator = self.__class__.pressure_hessian_indicator(service, version, mode, path + ["pressure_hessian_indicator"])
|
|
15863
|
+
self.velocity_hessian_indicator = self.__class__.velocity_hessian_indicator(service, version, mode, path + ["velocity_hessian_indicator"])
|
|
15864
|
+
super().__init__(service, version, mode, path)
|
|
15865
|
+
class combined_hessian_indicator(TUIMethod):
|
|
15866
|
+
"""
|
|
15867
|
+
No help available.
|
|
15868
|
+
"""
|
|
15869
|
+
class goal_based_error_indicator(TUIMethod):
|
|
15870
|
+
"""
|
|
15871
|
+
Goal based error indicator.
|
|
15872
|
+
"""
|
|
15873
|
+
class mach_hessian_indicator(TUIMethod):
|
|
15874
|
+
"""
|
|
15875
|
+
No help available.
|
|
15876
|
+
"""
|
|
15877
|
+
class pressure_hessian_indicator(TUIMethod):
|
|
15878
|
+
"""
|
|
15879
|
+
Creates cell registers and defines an adaption criterion based on a pressure Hessian indicator, which is suitable for simulations that have significant pressure variations.
|
|
15880
|
+
"""
|
|
15881
|
+
class velocity_hessian_indicator(TUIMethod):
|
|
15882
|
+
"""
|
|
15883
|
+
No help available.
|
|
15884
|
+
"""
|
|
15885
|
+
|
|
15886
|
+
class shock_indicator(TUIMenu):
|
|
15887
|
+
"""
|
|
15888
|
+
Enters the shock indicator menu, which provides text commands that create cell registers and define adaption criteria that can be useful for simulations with shocks.
|
|
15889
|
+
"""
|
|
15890
|
+
def __init__(self, service, version, mode, path):
|
|
15891
|
+
self.density_based = self.__class__.density_based(service, version, mode, path + ["density_based"])
|
|
15892
|
+
super().__init__(service, version, mode, path)
|
|
15893
|
+
class density_based(TUIMethod):
|
|
15894
|
+
"""
|
|
15895
|
+
Creates cell registers and defines an adaption criterion that is suitable for simulations with shocks that use the density-based solver or the pressure-based solver with a fluid that uses a real-gas or ideal-gas model for the density.
|
|
15896
|
+
"""
|
|
15897
|
+
|
|
15898
|
+
class boundary_layer(TUIMenu):
|
|
15899
|
+
"""
|
|
15900
|
+
Enters the boundary layer menu, which provides text commands that create the necessary cell registers for refinement and define adaption criteria for the manual adaption of boundary layers.
|
|
15901
|
+
"""
|
|
15902
|
+
def __init__(self, service, version, mode, path):
|
|
15903
|
+
self.cell_distance = self.__class__.cell_distance(service, version, mode, path + ["cell_distance"])
|
|
15904
|
+
self.yplus_ystar = self.__class__.yplus_ystar(service, version, mode, path + ["yplus_ystar"])
|
|
15905
|
+
super().__init__(service, version, mode, path)
|
|
15906
|
+
class cell_distance(TUIMethod):
|
|
15907
|
+
"""
|
|
15908
|
+
S.
|
|
15909
|
+
"""
|
|
15910
|
+
class yplus_ystar(TUIMethod):
|
|
15911
|
+
"""
|
|
15912
|
+
No help available.
|
|
15913
|
+
"""
|
|
15914
|
+
|
|
15915
|
+
class combustion(TUIMenu):
|
|
15916
|
+
"""
|
|
15917
|
+
Enters the combustion menu, which provides text commands that create named expressions and cell registers and define adaption criteria that can be useful for combustion simulations.
|
|
15918
|
+
"""
|
|
15919
|
+
def __init__(self, service, version, mode, path):
|
|
15920
|
+
self.flame_indicator = self.__class__.flame_indicator(service, version, mode, path + ["flame_indicator"])
|
|
15921
|
+
super().__init__(service, version, mode, path)
|
|
15922
|
+
class flame_indicator(TUIMethod):
|
|
15923
|
+
"""
|
|
15924
|
+
Creates named expressions and cell registers and defines adaption criteria that are suitable for combustion simulations, so that the mesh is refined along a progressing flame front using various criteria like temperature, vorticity, species, and DPM concentration (depending on which models are used). There is also an option for refining a spherical spark region prior to a transient run, which after a specified time is then coarsened back to the original mesh.
|
|
15925
|
+
"""
|
|
15926
|
+
|
|
15927
|
+
class multiphase(TUIMenu):
|
|
15928
|
+
"""
|
|
15929
|
+
Enters the multiphase menu, which provides text commands that create named expressions and cell registers and define adaption criteria that can be useful for Volume of Fluid (VOF) simulations.
|
|
15930
|
+
"""
|
|
15931
|
+
def __init__(self, service, version, mode, path):
|
|
15932
|
+
self.vof = self.__class__.vof(service, version, mode, path + ["vof"])
|
|
15933
|
+
self.vof_to_dpm_advanced = self.__class__.vof_to_dpm_advanced(service, version, mode, path + ["vof_to_dpm_advanced"])
|
|
15934
|
+
self.vof_to_dpm_generic = self.__class__.vof_to_dpm_generic(service, version, mode, path + ["vof_to_dpm_generic"])
|
|
15935
|
+
super().__init__(service, version, mode, path)
|
|
15936
|
+
class vof(TUIMethod):
|
|
15937
|
+
"""
|
|
15938
|
+
Creates a named expression and cell registers, and defines adaption settings that are suitable for standard Volume of Fluid (VOF) simulations.
|
|
15939
|
+
"""
|
|
15940
|
+
class vof_to_dpm_advanced(TUIMethod):
|
|
15941
|
+
"""
|
|
15942
|
+
Sets up adaption that is suitable when using the VOF-to-DPM model transition mechanism; the resulting adaption criteria will be defined by complex expressions that draw upon cell registers, as well as parameters that you will need to define.
|
|
15943
|
+
"""
|
|
15944
|
+
class vof_to_dpm_generic(TUIMethod):
|
|
15945
|
+
"""
|
|
15946
|
+
Sets up adaption that is suitable when using the VOF-to-DPM model transition mechanism; the resulting adaption criteria will be defined by a named expression and cell registers that are fairly straightforward, as well as parameters that you will need to define.
|
|
15947
|
+
"""
|
|
15948
|
+
|
|
15828
15949
|
class profile(TUIMenu):
|
|
15829
15950
|
"""
|
|
15830
15951
|
Enters the profile menu.
|
|
@@ -24785,43 +24906,22 @@ class main_menu(TUIMenu):
|
|
|
24785
24906
|
def __init__(self, service, version, mode, path):
|
|
24786
24907
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
24787
24908
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
24788
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
24789
24909
|
super().__init__(service, version, mode, path)
|
|
24790
|
-
class background_color(TUIMethod):
|
|
24791
|
-
"""
|
|
24792
|
-
No help available.
|
|
24793
|
-
"""
|
|
24794
24910
|
|
|
24795
24911
|
class x(TUIMenu):
|
|
24796
24912
|
"""
|
|
24797
24913
|
No help available.
|
|
24798
24914
|
"""
|
|
24799
24915
|
def __init__(self, service, version, mode, path):
|
|
24916
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24800
24917
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
24801
24918
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24802
24919
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24803
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24804
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24805
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24806
24920
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24807
24921
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24808
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
24809
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
24810
24922
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
24811
24923
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
24812
24924
|
super().__init__(service, version, mode, path)
|
|
24813
|
-
class auto_range(TUIMethod):
|
|
24814
|
-
"""
|
|
24815
|
-
No help available.
|
|
24816
|
-
"""
|
|
24817
|
-
class auto_range_max(TUIMethod):
|
|
24818
|
-
"""
|
|
24819
|
-
No help available.
|
|
24820
|
-
"""
|
|
24821
|
-
class auto_range_min(TUIMethod):
|
|
24822
|
-
"""
|
|
24823
|
-
No help available.
|
|
24824
|
-
"""
|
|
24825
24925
|
class label(TUIMethod):
|
|
24826
24926
|
"""
|
|
24827
24927
|
No help available.
|
|
@@ -24830,22 +24930,46 @@ class main_menu(TUIMenu):
|
|
|
24830
24930
|
"""
|
|
24831
24931
|
No help available.
|
|
24832
24932
|
"""
|
|
24833
|
-
class
|
|
24834
|
-
"""
|
|
24835
|
-
No help available.
|
|
24836
|
-
"""
|
|
24837
|
-
class min(TUIMethod):
|
|
24933
|
+
class show_major_gridlines(TUIMethod):
|
|
24838
24934
|
"""
|
|
24839
24935
|
No help available.
|
|
24840
24936
|
"""
|
|
24841
|
-
class
|
|
24937
|
+
class show_minor_gridlines(TUIMethod):
|
|
24842
24938
|
"""
|
|
24843
24939
|
No help available.
|
|
24844
24940
|
"""
|
|
24845
|
-
|
|
24941
|
+
|
|
24942
|
+
class auto_range(TUIMenu):
|
|
24846
24943
|
"""
|
|
24847
24944
|
No help available.
|
|
24848
24945
|
"""
|
|
24946
|
+
def __init__(self, service, version, mode, path):
|
|
24947
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24948
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
24949
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
24950
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
24951
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
24952
|
+
super().__init__(service, version, mode, path)
|
|
24953
|
+
class auto_range(TUIMethod):
|
|
24954
|
+
"""
|
|
24955
|
+
No help available.
|
|
24956
|
+
"""
|
|
24957
|
+
class max(TUIMethod):
|
|
24958
|
+
"""
|
|
24959
|
+
No help available.
|
|
24960
|
+
"""
|
|
24961
|
+
class max_auto(TUIMethod):
|
|
24962
|
+
"""
|
|
24963
|
+
No help available.
|
|
24964
|
+
"""
|
|
24965
|
+
class min(TUIMethod):
|
|
24966
|
+
"""
|
|
24967
|
+
No help available.
|
|
24968
|
+
"""
|
|
24969
|
+
class min_auto(TUIMethod):
|
|
24970
|
+
"""
|
|
24971
|
+
No help available.
|
|
24972
|
+
"""
|
|
24849
24973
|
|
|
24850
24974
|
class major_gridlines(TUIMenu):
|
|
24851
24975
|
"""
|
|
@@ -24854,8 +24978,9 @@ class main_menu(TUIMenu):
|
|
|
24854
24978
|
def __init__(self, service, version, mode, path):
|
|
24855
24979
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24856
24980
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24857
|
-
self.
|
|
24858
|
-
self.
|
|
24981
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
24982
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
24983
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
24859
24984
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24860
24985
|
super().__init__(service, version, mode, path)
|
|
24861
24986
|
class auto_placement(TUIMethod):
|
|
@@ -24866,11 +24991,15 @@ class main_menu(TUIMenu):
|
|
|
24866
24991
|
"""
|
|
24867
24992
|
No help available.
|
|
24868
24993
|
"""
|
|
24869
|
-
class
|
|
24994
|
+
class divisions(TUIMethod):
|
|
24995
|
+
"""
|
|
24996
|
+
No help available.
|
|
24997
|
+
"""
|
|
24998
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
24870
24999
|
"""
|
|
24871
25000
|
No help available.
|
|
24872
25001
|
"""
|
|
24873
|
-
class
|
|
25002
|
+
class units(TUIMethod):
|
|
24874
25003
|
"""
|
|
24875
25004
|
No help available.
|
|
24876
25005
|
"""
|
|
@@ -24886,8 +25015,9 @@ class main_menu(TUIMenu):
|
|
|
24886
25015
|
def __init__(self, service, version, mode, path):
|
|
24887
25016
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24888
25017
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24889
|
-
self.
|
|
24890
|
-
self.
|
|
25018
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25019
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25020
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
24891
25021
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24892
25022
|
super().__init__(service, version, mode, path)
|
|
24893
25023
|
class auto_placement(TUIMethod):
|
|
@@ -24898,11 +25028,15 @@ class main_menu(TUIMenu):
|
|
|
24898
25028
|
"""
|
|
24899
25029
|
No help available.
|
|
24900
25030
|
"""
|
|
24901
|
-
class
|
|
25031
|
+
class divisions(TUIMethod):
|
|
24902
25032
|
"""
|
|
24903
25033
|
No help available.
|
|
24904
25034
|
"""
|
|
24905
|
-
class
|
|
25035
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25036
|
+
"""
|
|
25037
|
+
No help available.
|
|
25038
|
+
"""
|
|
25039
|
+
class units(TUIMethod):
|
|
24906
25040
|
"""
|
|
24907
25041
|
No help available.
|
|
24908
25042
|
"""
|
|
@@ -24933,31 +25067,15 @@ class main_menu(TUIMenu):
|
|
|
24933
25067
|
No help available.
|
|
24934
25068
|
"""
|
|
24935
25069
|
def __init__(self, service, version, mode, path):
|
|
25070
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24936
25071
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
24937
25072
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24938
25073
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24939
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24940
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24941
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24942
25074
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24943
25075
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24944
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
24945
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
24946
25076
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
24947
25077
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
24948
25078
|
super().__init__(service, version, mode, path)
|
|
24949
|
-
class auto_range(TUIMethod):
|
|
24950
|
-
"""
|
|
24951
|
-
No help available.
|
|
24952
|
-
"""
|
|
24953
|
-
class auto_range_max(TUIMethod):
|
|
24954
|
-
"""
|
|
24955
|
-
No help available.
|
|
24956
|
-
"""
|
|
24957
|
-
class auto_range_min(TUIMethod):
|
|
24958
|
-
"""
|
|
24959
|
-
No help available.
|
|
24960
|
-
"""
|
|
24961
25079
|
class label(TUIMethod):
|
|
24962
25080
|
"""
|
|
24963
25081
|
No help available.
|
|
@@ -24966,22 +25084,46 @@ class main_menu(TUIMenu):
|
|
|
24966
25084
|
"""
|
|
24967
25085
|
No help available.
|
|
24968
25086
|
"""
|
|
24969
|
-
class
|
|
24970
|
-
"""
|
|
24971
|
-
No help available.
|
|
24972
|
-
"""
|
|
24973
|
-
class min(TUIMethod):
|
|
25087
|
+
class show_major_gridlines(TUIMethod):
|
|
24974
25088
|
"""
|
|
24975
25089
|
No help available.
|
|
24976
25090
|
"""
|
|
24977
|
-
class
|
|
25091
|
+
class show_minor_gridlines(TUIMethod):
|
|
24978
25092
|
"""
|
|
24979
25093
|
No help available.
|
|
24980
25094
|
"""
|
|
24981
|
-
|
|
25095
|
+
|
|
25096
|
+
class auto_range(TUIMenu):
|
|
24982
25097
|
"""
|
|
24983
25098
|
No help available.
|
|
24984
25099
|
"""
|
|
25100
|
+
def __init__(self, service, version, mode, path):
|
|
25101
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25102
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25103
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
25104
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25105
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
25106
|
+
super().__init__(service, version, mode, path)
|
|
25107
|
+
class auto_range(TUIMethod):
|
|
25108
|
+
"""
|
|
25109
|
+
No help available.
|
|
25110
|
+
"""
|
|
25111
|
+
class max(TUIMethod):
|
|
25112
|
+
"""
|
|
25113
|
+
No help available.
|
|
25114
|
+
"""
|
|
25115
|
+
class max_auto(TUIMethod):
|
|
25116
|
+
"""
|
|
25117
|
+
No help available.
|
|
25118
|
+
"""
|
|
25119
|
+
class min(TUIMethod):
|
|
25120
|
+
"""
|
|
25121
|
+
No help available.
|
|
25122
|
+
"""
|
|
25123
|
+
class min_auto(TUIMethod):
|
|
25124
|
+
"""
|
|
25125
|
+
No help available.
|
|
25126
|
+
"""
|
|
24985
25127
|
|
|
24986
25128
|
class major_gridlines(TUIMenu):
|
|
24987
25129
|
"""
|
|
@@ -24990,8 +25132,9 @@ class main_menu(TUIMenu):
|
|
|
24990
25132
|
def __init__(self, service, version, mode, path):
|
|
24991
25133
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24992
25134
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24993
|
-
self.
|
|
24994
|
-
self.
|
|
25135
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25136
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25137
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
24995
25138
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24996
25139
|
super().__init__(service, version, mode, path)
|
|
24997
25140
|
class auto_placement(TUIMethod):
|
|
@@ -25002,11 +25145,15 @@ class main_menu(TUIMenu):
|
|
|
25002
25145
|
"""
|
|
25003
25146
|
No help available.
|
|
25004
25147
|
"""
|
|
25005
|
-
class
|
|
25148
|
+
class divisions(TUIMethod):
|
|
25006
25149
|
"""
|
|
25007
25150
|
No help available.
|
|
25008
25151
|
"""
|
|
25009
|
-
class
|
|
25152
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25153
|
+
"""
|
|
25154
|
+
No help available.
|
|
25155
|
+
"""
|
|
25156
|
+
class units(TUIMethod):
|
|
25010
25157
|
"""
|
|
25011
25158
|
No help available.
|
|
25012
25159
|
"""
|
|
@@ -25022,8 +25169,9 @@ class main_menu(TUIMenu):
|
|
|
25022
25169
|
def __init__(self, service, version, mode, path):
|
|
25023
25170
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25024
25171
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25025
|
-
self.
|
|
25026
|
-
self.
|
|
25172
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25173
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25174
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25027
25175
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25028
25176
|
super().__init__(service, version, mode, path)
|
|
25029
25177
|
class auto_placement(TUIMethod):
|
|
@@ -25034,11 +25182,15 @@ class main_menu(TUIMenu):
|
|
|
25034
25182
|
"""
|
|
25035
25183
|
No help available.
|
|
25036
25184
|
"""
|
|
25037
|
-
class
|
|
25185
|
+
class divisions(TUIMethod):
|
|
25186
|
+
"""
|
|
25187
|
+
No help available.
|
|
25188
|
+
"""
|
|
25189
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25038
25190
|
"""
|
|
25039
25191
|
No help available.
|
|
25040
25192
|
"""
|
|
25041
|
-
class
|
|
25193
|
+
class units(TUIMethod):
|
|
25042
25194
|
"""
|
|
25043
25195
|
No help available.
|
|
25044
25196
|
"""
|
|
@@ -25069,22 +25221,99 @@ class main_menu(TUIMenu):
|
|
|
25069
25221
|
No help available.
|
|
25070
25222
|
"""
|
|
25071
25223
|
def __init__(self, service, version, mode, path):
|
|
25072
|
-
self.
|
|
25073
|
-
self.
|
|
25074
|
-
self.
|
|
25224
|
+
self.line = self.__class__.line(service, version, mode, path + ["line"])
|
|
25225
|
+
self.line_in_file = self.__class__.line_in_file(service, version, mode, path + ["line_in_file"])
|
|
25226
|
+
self.marker = self.__class__.marker(service, version, mode, path + ["marker"])
|
|
25227
|
+
self.marker_in_file = self.__class__.marker_in_file(service, version, mode, path + ["marker_in_file"])
|
|
25075
25228
|
super().__init__(service, version, mode, path)
|
|
25076
|
-
|
|
25229
|
+
|
|
25230
|
+
class line(TUIMenu):
|
|
25077
25231
|
"""
|
|
25078
|
-
|
|
25232
|
+
No help available.
|
|
25079
25233
|
"""
|
|
25080
|
-
|
|
25234
|
+
def __init__(self, service, version, mode, path):
|
|
25235
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25236
|
+
self.pattern = self.__class__.pattern(service, version, mode, path + ["pattern"])
|
|
25237
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25238
|
+
super().__init__(service, version, mode, path)
|
|
25239
|
+
class color(TUIMethod):
|
|
25240
|
+
"""
|
|
25241
|
+
No help available.
|
|
25242
|
+
"""
|
|
25243
|
+
class pattern(TUIMethod):
|
|
25244
|
+
"""
|
|
25245
|
+
No help available.
|
|
25246
|
+
"""
|
|
25247
|
+
class weight(TUIMethod):
|
|
25248
|
+
"""
|
|
25249
|
+
No help available.
|
|
25250
|
+
"""
|
|
25251
|
+
|
|
25252
|
+
class line_in_file(TUIMenu):
|
|
25081
25253
|
"""
|
|
25082
25254
|
No help available.
|
|
25083
25255
|
"""
|
|
25084
|
-
|
|
25256
|
+
def __init__(self, service, version, mode, path):
|
|
25257
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25258
|
+
self.pattern = self.__class__.pattern(service, version, mode, path + ["pattern"])
|
|
25259
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25260
|
+
super().__init__(service, version, mode, path)
|
|
25261
|
+
class color(TUIMethod):
|
|
25262
|
+
"""
|
|
25263
|
+
No help available.
|
|
25264
|
+
"""
|
|
25265
|
+
class pattern(TUIMethod):
|
|
25266
|
+
"""
|
|
25267
|
+
No help available.
|
|
25268
|
+
"""
|
|
25269
|
+
class weight(TUIMethod):
|
|
25270
|
+
"""
|
|
25271
|
+
No help available.
|
|
25272
|
+
"""
|
|
25273
|
+
|
|
25274
|
+
class marker(TUIMenu):
|
|
25275
|
+
"""
|
|
25276
|
+
No help available.
|
|
25277
|
+
"""
|
|
25278
|
+
def __init__(self, service, version, mode, path):
|
|
25279
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25280
|
+
self.size = self.__class__.size(service, version, mode, path + ["size"])
|
|
25281
|
+
self.symbol = self.__class__.symbol(service, version, mode, path + ["symbol"])
|
|
25282
|
+
super().__init__(service, version, mode, path)
|
|
25283
|
+
class color(TUIMethod):
|
|
25284
|
+
"""
|
|
25285
|
+
No help available.
|
|
25286
|
+
"""
|
|
25287
|
+
class size(TUIMethod):
|
|
25288
|
+
"""
|
|
25289
|
+
No help available.
|
|
25290
|
+
"""
|
|
25291
|
+
class symbol(TUIMethod):
|
|
25292
|
+
"""
|
|
25293
|
+
No help available.
|
|
25294
|
+
"""
|
|
25295
|
+
|
|
25296
|
+
class marker_in_file(TUIMenu):
|
|
25085
25297
|
"""
|
|
25086
25298
|
No help available.
|
|
25087
25299
|
"""
|
|
25300
|
+
def __init__(self, service, version, mode, path):
|
|
25301
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25302
|
+
self.size = self.__class__.size(service, version, mode, path + ["size"])
|
|
25303
|
+
self.symbol = self.__class__.symbol(service, version, mode, path + ["symbol"])
|
|
25304
|
+
super().__init__(service, version, mode, path)
|
|
25305
|
+
class color(TUIMethod):
|
|
25306
|
+
"""
|
|
25307
|
+
No help available.
|
|
25308
|
+
"""
|
|
25309
|
+
class size(TUIMethod):
|
|
25310
|
+
"""
|
|
25311
|
+
No help available.
|
|
25312
|
+
"""
|
|
25313
|
+
class symbol(TUIMethod):
|
|
25314
|
+
"""
|
|
25315
|
+
No help available.
|
|
25316
|
+
"""
|
|
25088
25317
|
|
|
25089
25318
|
class interpolated_data(TUIMenu):
|
|
25090
25319
|
"""
|
|
@@ -25122,43 +25351,22 @@ class main_menu(TUIMenu):
|
|
|
25122
25351
|
def __init__(self, service, version, mode, path):
|
|
25123
25352
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
25124
25353
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
25125
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
25126
25354
|
super().__init__(service, version, mode, path)
|
|
25127
|
-
class background_color(TUIMethod):
|
|
25128
|
-
"""
|
|
25129
|
-
No help available.
|
|
25130
|
-
"""
|
|
25131
25355
|
|
|
25132
25356
|
class x(TUIMenu):
|
|
25133
25357
|
"""
|
|
25134
25358
|
No help available.
|
|
25135
25359
|
"""
|
|
25136
25360
|
def __init__(self, service, version, mode, path):
|
|
25361
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25137
25362
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
25138
25363
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25139
25364
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25140
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25141
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25142
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25143
25365
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25144
25366
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25145
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25146
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25147
25367
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
25148
25368
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
25149
25369
|
super().__init__(service, version, mode, path)
|
|
25150
|
-
class auto_range(TUIMethod):
|
|
25151
|
-
"""
|
|
25152
|
-
No help available.
|
|
25153
|
-
"""
|
|
25154
|
-
class auto_range_max(TUIMethod):
|
|
25155
|
-
"""
|
|
25156
|
-
No help available.
|
|
25157
|
-
"""
|
|
25158
|
-
class auto_range_min(TUIMethod):
|
|
25159
|
-
"""
|
|
25160
|
-
No help available.
|
|
25161
|
-
"""
|
|
25162
25370
|
class label(TUIMethod):
|
|
25163
25371
|
"""
|
|
25164
25372
|
No help available.
|
|
@@ -25167,14 +25375,6 @@ class main_menu(TUIMenu):
|
|
|
25167
25375
|
"""
|
|
25168
25376
|
No help available.
|
|
25169
25377
|
"""
|
|
25170
|
-
class max(TUIMethod):
|
|
25171
|
-
"""
|
|
25172
|
-
No help available.
|
|
25173
|
-
"""
|
|
25174
|
-
class min(TUIMethod):
|
|
25175
|
-
"""
|
|
25176
|
-
No help available.
|
|
25177
|
-
"""
|
|
25178
25378
|
class show_major_gridlines(TUIMethod):
|
|
25179
25379
|
"""
|
|
25180
25380
|
No help available.
|
|
@@ -25184,47 +25384,48 @@ class main_menu(TUIMenu):
|
|
|
25184
25384
|
No help available.
|
|
25185
25385
|
"""
|
|
25186
25386
|
|
|
25187
|
-
class
|
|
25387
|
+
class auto_range(TUIMenu):
|
|
25188
25388
|
"""
|
|
25189
25389
|
No help available.
|
|
25190
25390
|
"""
|
|
25191
25391
|
def __init__(self, service, version, mode, path):
|
|
25192
|
-
self.
|
|
25193
|
-
self.
|
|
25194
|
-
self.
|
|
25195
|
-
self.
|
|
25196
|
-
self.
|
|
25392
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25393
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25394
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
25395
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25396
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
25197
25397
|
super().__init__(service, version, mode, path)
|
|
25198
|
-
class
|
|
25398
|
+
class auto_range(TUIMethod):
|
|
25199
25399
|
"""
|
|
25200
25400
|
No help available.
|
|
25201
25401
|
"""
|
|
25202
|
-
class
|
|
25402
|
+
class max(TUIMethod):
|
|
25203
25403
|
"""
|
|
25204
25404
|
No help available.
|
|
25205
25405
|
"""
|
|
25206
|
-
class
|
|
25406
|
+
class max_auto(TUIMethod):
|
|
25207
25407
|
"""
|
|
25208
25408
|
No help available.
|
|
25209
25409
|
"""
|
|
25210
|
-
class
|
|
25410
|
+
class min(TUIMethod):
|
|
25211
25411
|
"""
|
|
25212
25412
|
No help available.
|
|
25213
25413
|
"""
|
|
25214
|
-
class
|
|
25414
|
+
class min_auto(TUIMethod):
|
|
25215
25415
|
"""
|
|
25216
25416
|
No help available.
|
|
25217
25417
|
"""
|
|
25218
25418
|
|
|
25219
|
-
class
|
|
25419
|
+
class major_gridlines(TUIMenu):
|
|
25220
25420
|
"""
|
|
25221
25421
|
No help available.
|
|
25222
25422
|
"""
|
|
25223
25423
|
def __init__(self, service, version, mode, path):
|
|
25224
25424
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25225
25425
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25226
|
-
self.
|
|
25227
|
-
self.
|
|
25426
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25427
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25428
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25228
25429
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25229
25430
|
super().__init__(service, version, mode, path)
|
|
25230
25431
|
class auto_placement(TUIMethod):
|
|
@@ -25235,15 +25436,56 @@ class main_menu(TUIMenu):
|
|
|
25235
25436
|
"""
|
|
25236
25437
|
No help available.
|
|
25237
25438
|
"""
|
|
25238
|
-
class
|
|
25439
|
+
class divisions(TUIMethod):
|
|
25239
25440
|
"""
|
|
25240
25441
|
No help available.
|
|
25241
25442
|
"""
|
|
25242
|
-
class
|
|
25443
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25243
25444
|
"""
|
|
25244
25445
|
No help available.
|
|
25245
25446
|
"""
|
|
25246
|
-
class
|
|
25447
|
+
class units(TUIMethod):
|
|
25448
|
+
"""
|
|
25449
|
+
No help available.
|
|
25450
|
+
"""
|
|
25451
|
+
class weight(TUIMethod):
|
|
25452
|
+
"""
|
|
25453
|
+
No help available.
|
|
25454
|
+
"""
|
|
25455
|
+
|
|
25456
|
+
class minor_gridlines(TUIMenu):
|
|
25457
|
+
"""
|
|
25458
|
+
No help available.
|
|
25459
|
+
"""
|
|
25460
|
+
def __init__(self, service, version, mode, path):
|
|
25461
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25462
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25463
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25464
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25465
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25466
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25467
|
+
super().__init__(service, version, mode, path)
|
|
25468
|
+
class auto_placement(TUIMethod):
|
|
25469
|
+
"""
|
|
25470
|
+
No help available.
|
|
25471
|
+
"""
|
|
25472
|
+
class color(TUIMethod):
|
|
25473
|
+
"""
|
|
25474
|
+
No help available.
|
|
25475
|
+
"""
|
|
25476
|
+
class divisions(TUIMethod):
|
|
25477
|
+
"""
|
|
25478
|
+
No help available.
|
|
25479
|
+
"""
|
|
25480
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25481
|
+
"""
|
|
25482
|
+
No help available.
|
|
25483
|
+
"""
|
|
25484
|
+
class units(TUIMethod):
|
|
25485
|
+
"""
|
|
25486
|
+
No help available.
|
|
25487
|
+
"""
|
|
25488
|
+
class weight(TUIMethod):
|
|
25247
25489
|
"""
|
|
25248
25490
|
No help available.
|
|
25249
25491
|
"""
|
|
@@ -25270,31 +25512,15 @@ class main_menu(TUIMenu):
|
|
|
25270
25512
|
No help available.
|
|
25271
25513
|
"""
|
|
25272
25514
|
def __init__(self, service, version, mode, path):
|
|
25515
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25273
25516
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
25274
25517
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25275
25518
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25276
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25277
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25278
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25279
25519
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25280
25520
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25281
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25282
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25283
25521
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
25284
25522
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
25285
25523
|
super().__init__(service, version, mode, path)
|
|
25286
|
-
class auto_range(TUIMethod):
|
|
25287
|
-
"""
|
|
25288
|
-
No help available.
|
|
25289
|
-
"""
|
|
25290
|
-
class auto_range_max(TUIMethod):
|
|
25291
|
-
"""
|
|
25292
|
-
No help available.
|
|
25293
|
-
"""
|
|
25294
|
-
class auto_range_min(TUIMethod):
|
|
25295
|
-
"""
|
|
25296
|
-
No help available.
|
|
25297
|
-
"""
|
|
25298
25524
|
class label(TUIMethod):
|
|
25299
25525
|
"""
|
|
25300
25526
|
No help available.
|
|
@@ -25303,22 +25529,46 @@ class main_menu(TUIMenu):
|
|
|
25303
25529
|
"""
|
|
25304
25530
|
No help available.
|
|
25305
25531
|
"""
|
|
25306
|
-
class
|
|
25307
|
-
"""
|
|
25308
|
-
No help available.
|
|
25309
|
-
"""
|
|
25310
|
-
class min(TUIMethod):
|
|
25532
|
+
class show_major_gridlines(TUIMethod):
|
|
25311
25533
|
"""
|
|
25312
25534
|
No help available.
|
|
25313
25535
|
"""
|
|
25314
|
-
class
|
|
25536
|
+
class show_minor_gridlines(TUIMethod):
|
|
25315
25537
|
"""
|
|
25316
25538
|
No help available.
|
|
25317
25539
|
"""
|
|
25318
|
-
|
|
25540
|
+
|
|
25541
|
+
class auto_range(TUIMenu):
|
|
25319
25542
|
"""
|
|
25320
25543
|
No help available.
|
|
25321
25544
|
"""
|
|
25545
|
+
def __init__(self, service, version, mode, path):
|
|
25546
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25547
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25548
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
25549
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25550
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
25551
|
+
super().__init__(service, version, mode, path)
|
|
25552
|
+
class auto_range(TUIMethod):
|
|
25553
|
+
"""
|
|
25554
|
+
No help available.
|
|
25555
|
+
"""
|
|
25556
|
+
class max(TUIMethod):
|
|
25557
|
+
"""
|
|
25558
|
+
No help available.
|
|
25559
|
+
"""
|
|
25560
|
+
class max_auto(TUIMethod):
|
|
25561
|
+
"""
|
|
25562
|
+
No help available.
|
|
25563
|
+
"""
|
|
25564
|
+
class min(TUIMethod):
|
|
25565
|
+
"""
|
|
25566
|
+
No help available.
|
|
25567
|
+
"""
|
|
25568
|
+
class min_auto(TUIMethod):
|
|
25569
|
+
"""
|
|
25570
|
+
No help available.
|
|
25571
|
+
"""
|
|
25322
25572
|
|
|
25323
25573
|
class major_gridlines(TUIMenu):
|
|
25324
25574
|
"""
|
|
@@ -25327,8 +25577,9 @@ class main_menu(TUIMenu):
|
|
|
25327
25577
|
def __init__(self, service, version, mode, path):
|
|
25328
25578
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25329
25579
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25330
|
-
self.
|
|
25331
|
-
self.
|
|
25580
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25581
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25582
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25332
25583
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25333
25584
|
super().__init__(service, version, mode, path)
|
|
25334
25585
|
class auto_placement(TUIMethod):
|
|
@@ -25339,11 +25590,15 @@ class main_menu(TUIMenu):
|
|
|
25339
25590
|
"""
|
|
25340
25591
|
No help available.
|
|
25341
25592
|
"""
|
|
25342
|
-
class
|
|
25593
|
+
class divisions(TUIMethod):
|
|
25594
|
+
"""
|
|
25595
|
+
No help available.
|
|
25596
|
+
"""
|
|
25597
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25343
25598
|
"""
|
|
25344
25599
|
No help available.
|
|
25345
25600
|
"""
|
|
25346
|
-
class
|
|
25601
|
+
class units(TUIMethod):
|
|
25347
25602
|
"""
|
|
25348
25603
|
No help available.
|
|
25349
25604
|
"""
|
|
@@ -25359,8 +25614,9 @@ class main_menu(TUIMenu):
|
|
|
25359
25614
|
def __init__(self, service, version, mode, path):
|
|
25360
25615
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25361
25616
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25362
|
-
self.
|
|
25363
|
-
self.
|
|
25617
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25618
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25619
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25364
25620
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25365
25621
|
super().__init__(service, version, mode, path)
|
|
25366
25622
|
class auto_placement(TUIMethod):
|
|
@@ -25371,11 +25627,15 @@ class main_menu(TUIMenu):
|
|
|
25371
25627
|
"""
|
|
25372
25628
|
No help available.
|
|
25373
25629
|
"""
|
|
25374
|
-
class
|
|
25630
|
+
class divisions(TUIMethod):
|
|
25375
25631
|
"""
|
|
25376
25632
|
No help available.
|
|
25377
25633
|
"""
|
|
25378
|
-
class
|
|
25634
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25635
|
+
"""
|
|
25636
|
+
No help available.
|
|
25637
|
+
"""
|
|
25638
|
+
class units(TUIMethod):
|
|
25379
25639
|
"""
|
|
25380
25640
|
No help available.
|
|
25381
25641
|
"""
|
|
@@ -25406,22 +25666,99 @@ class main_menu(TUIMenu):
|
|
|
25406
25666
|
No help available.
|
|
25407
25667
|
"""
|
|
25408
25668
|
def __init__(self, service, version, mode, path):
|
|
25409
|
-
self.
|
|
25410
|
-
self.
|
|
25411
|
-
self.
|
|
25669
|
+
self.line = self.__class__.line(service, version, mode, path + ["line"])
|
|
25670
|
+
self.line_in_file = self.__class__.line_in_file(service, version, mode, path + ["line_in_file"])
|
|
25671
|
+
self.marker = self.__class__.marker(service, version, mode, path + ["marker"])
|
|
25672
|
+
self.marker_in_file = self.__class__.marker_in_file(service, version, mode, path + ["marker_in_file"])
|
|
25412
25673
|
super().__init__(service, version, mode, path)
|
|
25413
|
-
|
|
25674
|
+
|
|
25675
|
+
class line(TUIMenu):
|
|
25414
25676
|
"""
|
|
25415
|
-
|
|
25677
|
+
No help available.
|
|
25416
25678
|
"""
|
|
25417
|
-
|
|
25679
|
+
def __init__(self, service, version, mode, path):
|
|
25680
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25681
|
+
self.pattern = self.__class__.pattern(service, version, mode, path + ["pattern"])
|
|
25682
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25683
|
+
super().__init__(service, version, mode, path)
|
|
25684
|
+
class color(TUIMethod):
|
|
25685
|
+
"""
|
|
25686
|
+
No help available.
|
|
25687
|
+
"""
|
|
25688
|
+
class pattern(TUIMethod):
|
|
25689
|
+
"""
|
|
25690
|
+
No help available.
|
|
25691
|
+
"""
|
|
25692
|
+
class weight(TUIMethod):
|
|
25693
|
+
"""
|
|
25694
|
+
No help available.
|
|
25695
|
+
"""
|
|
25696
|
+
|
|
25697
|
+
class line_in_file(TUIMenu):
|
|
25418
25698
|
"""
|
|
25419
25699
|
No help available.
|
|
25420
25700
|
"""
|
|
25421
|
-
|
|
25701
|
+
def __init__(self, service, version, mode, path):
|
|
25702
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25703
|
+
self.pattern = self.__class__.pattern(service, version, mode, path + ["pattern"])
|
|
25704
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25705
|
+
super().__init__(service, version, mode, path)
|
|
25706
|
+
class color(TUIMethod):
|
|
25707
|
+
"""
|
|
25708
|
+
No help available.
|
|
25709
|
+
"""
|
|
25710
|
+
class pattern(TUIMethod):
|
|
25711
|
+
"""
|
|
25712
|
+
No help available.
|
|
25713
|
+
"""
|
|
25714
|
+
class weight(TUIMethod):
|
|
25715
|
+
"""
|
|
25716
|
+
No help available.
|
|
25717
|
+
"""
|
|
25718
|
+
|
|
25719
|
+
class marker(TUIMenu):
|
|
25422
25720
|
"""
|
|
25423
25721
|
No help available.
|
|
25424
25722
|
"""
|
|
25723
|
+
def __init__(self, service, version, mode, path):
|
|
25724
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25725
|
+
self.size = self.__class__.size(service, version, mode, path + ["size"])
|
|
25726
|
+
self.symbol = self.__class__.symbol(service, version, mode, path + ["symbol"])
|
|
25727
|
+
super().__init__(service, version, mode, path)
|
|
25728
|
+
class color(TUIMethod):
|
|
25729
|
+
"""
|
|
25730
|
+
No help available.
|
|
25731
|
+
"""
|
|
25732
|
+
class size(TUIMethod):
|
|
25733
|
+
"""
|
|
25734
|
+
No help available.
|
|
25735
|
+
"""
|
|
25736
|
+
class symbol(TUIMethod):
|
|
25737
|
+
"""
|
|
25738
|
+
No help available.
|
|
25739
|
+
"""
|
|
25740
|
+
|
|
25741
|
+
class marker_in_file(TUIMenu):
|
|
25742
|
+
"""
|
|
25743
|
+
No help available.
|
|
25744
|
+
"""
|
|
25745
|
+
def __init__(self, service, version, mode, path):
|
|
25746
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25747
|
+
self.size = self.__class__.size(service, version, mode, path + ["size"])
|
|
25748
|
+
self.symbol = self.__class__.symbol(service, version, mode, path + ["symbol"])
|
|
25749
|
+
super().__init__(service, version, mode, path)
|
|
25750
|
+
class color(TUIMethod):
|
|
25751
|
+
"""
|
|
25752
|
+
No help available.
|
|
25753
|
+
"""
|
|
25754
|
+
class size(TUIMethod):
|
|
25755
|
+
"""
|
|
25756
|
+
No help available.
|
|
25757
|
+
"""
|
|
25758
|
+
class symbol(TUIMethod):
|
|
25759
|
+
"""
|
|
25760
|
+
No help available.
|
|
25761
|
+
"""
|
|
25425
25762
|
|
|
25426
25763
|
class plot(TUIMenu):
|
|
25427
25764
|
"""
|
|
@@ -25444,43 +25781,22 @@ class main_menu(TUIMenu):
|
|
|
25444
25781
|
def __init__(self, service, version, mode, path):
|
|
25445
25782
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
25446
25783
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
25447
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
25448
25784
|
super().__init__(service, version, mode, path)
|
|
25449
|
-
class background_color(TUIMethod):
|
|
25450
|
-
"""
|
|
25451
|
-
No help available.
|
|
25452
|
-
"""
|
|
25453
25785
|
|
|
25454
25786
|
class x(TUIMenu):
|
|
25455
25787
|
"""
|
|
25456
25788
|
No help available.
|
|
25457
25789
|
"""
|
|
25458
25790
|
def __init__(self, service, version, mode, path):
|
|
25791
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25459
25792
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
25460
25793
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25461
25794
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25462
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25463
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25464
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25465
25795
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25466
25796
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25467
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25468
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25469
25797
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
25470
25798
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
25471
25799
|
super().__init__(service, version, mode, path)
|
|
25472
|
-
class auto_range(TUIMethod):
|
|
25473
|
-
"""
|
|
25474
|
-
No help available.
|
|
25475
|
-
"""
|
|
25476
|
-
class auto_range_max(TUIMethod):
|
|
25477
|
-
"""
|
|
25478
|
-
No help available.
|
|
25479
|
-
"""
|
|
25480
|
-
class auto_range_min(TUIMethod):
|
|
25481
|
-
"""
|
|
25482
|
-
No help available.
|
|
25483
|
-
"""
|
|
25484
25800
|
class label(TUIMethod):
|
|
25485
25801
|
"""
|
|
25486
25802
|
No help available.
|
|
@@ -25489,22 +25805,46 @@ class main_menu(TUIMenu):
|
|
|
25489
25805
|
"""
|
|
25490
25806
|
No help available.
|
|
25491
25807
|
"""
|
|
25492
|
-
class
|
|
25493
|
-
"""
|
|
25494
|
-
No help available.
|
|
25495
|
-
"""
|
|
25496
|
-
class min(TUIMethod):
|
|
25808
|
+
class show_major_gridlines(TUIMethod):
|
|
25497
25809
|
"""
|
|
25498
25810
|
No help available.
|
|
25499
25811
|
"""
|
|
25500
|
-
class
|
|
25812
|
+
class show_minor_gridlines(TUIMethod):
|
|
25501
25813
|
"""
|
|
25502
25814
|
No help available.
|
|
25503
25815
|
"""
|
|
25504
|
-
|
|
25816
|
+
|
|
25817
|
+
class auto_range(TUIMenu):
|
|
25505
25818
|
"""
|
|
25506
25819
|
No help available.
|
|
25507
25820
|
"""
|
|
25821
|
+
def __init__(self, service, version, mode, path):
|
|
25822
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25823
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25824
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
25825
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25826
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
25827
|
+
super().__init__(service, version, mode, path)
|
|
25828
|
+
class auto_range(TUIMethod):
|
|
25829
|
+
"""
|
|
25830
|
+
No help available.
|
|
25831
|
+
"""
|
|
25832
|
+
class max(TUIMethod):
|
|
25833
|
+
"""
|
|
25834
|
+
No help available.
|
|
25835
|
+
"""
|
|
25836
|
+
class max_auto(TUIMethod):
|
|
25837
|
+
"""
|
|
25838
|
+
No help available.
|
|
25839
|
+
"""
|
|
25840
|
+
class min(TUIMethod):
|
|
25841
|
+
"""
|
|
25842
|
+
No help available.
|
|
25843
|
+
"""
|
|
25844
|
+
class min_auto(TUIMethod):
|
|
25845
|
+
"""
|
|
25846
|
+
No help available.
|
|
25847
|
+
"""
|
|
25508
25848
|
|
|
25509
25849
|
class major_gridlines(TUIMenu):
|
|
25510
25850
|
"""
|
|
@@ -25513,8 +25853,9 @@ class main_menu(TUIMenu):
|
|
|
25513
25853
|
def __init__(self, service, version, mode, path):
|
|
25514
25854
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25515
25855
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25516
|
-
self.
|
|
25517
|
-
self.
|
|
25856
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25857
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25858
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25518
25859
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25519
25860
|
super().__init__(service, version, mode, path)
|
|
25520
25861
|
class auto_placement(TUIMethod):
|
|
@@ -25525,11 +25866,15 @@ class main_menu(TUIMenu):
|
|
|
25525
25866
|
"""
|
|
25526
25867
|
No help available.
|
|
25527
25868
|
"""
|
|
25528
|
-
class
|
|
25869
|
+
class divisions(TUIMethod):
|
|
25870
|
+
"""
|
|
25871
|
+
No help available.
|
|
25872
|
+
"""
|
|
25873
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25529
25874
|
"""
|
|
25530
25875
|
No help available.
|
|
25531
25876
|
"""
|
|
25532
|
-
class
|
|
25877
|
+
class units(TUIMethod):
|
|
25533
25878
|
"""
|
|
25534
25879
|
No help available.
|
|
25535
25880
|
"""
|
|
@@ -25545,8 +25890,9 @@ class main_menu(TUIMenu):
|
|
|
25545
25890
|
def __init__(self, service, version, mode, path):
|
|
25546
25891
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25547
25892
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25548
|
-
self.
|
|
25549
|
-
self.
|
|
25893
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
25894
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
25895
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25550
25896
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25551
25897
|
super().__init__(service, version, mode, path)
|
|
25552
25898
|
class auto_placement(TUIMethod):
|
|
@@ -25557,11 +25903,15 @@ class main_menu(TUIMenu):
|
|
|
25557
25903
|
"""
|
|
25558
25904
|
No help available.
|
|
25559
25905
|
"""
|
|
25560
|
-
class
|
|
25906
|
+
class divisions(TUIMethod):
|
|
25561
25907
|
"""
|
|
25562
25908
|
No help available.
|
|
25563
25909
|
"""
|
|
25564
|
-
class
|
|
25910
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25911
|
+
"""
|
|
25912
|
+
No help available.
|
|
25913
|
+
"""
|
|
25914
|
+
class units(TUIMethod):
|
|
25565
25915
|
"""
|
|
25566
25916
|
No help available.
|
|
25567
25917
|
"""
|
|
@@ -25592,31 +25942,15 @@ class main_menu(TUIMenu):
|
|
|
25592
25942
|
No help available.
|
|
25593
25943
|
"""
|
|
25594
25944
|
def __init__(self, service, version, mode, path):
|
|
25945
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25595
25946
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
25596
25947
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25597
25948
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25598
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25599
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25600
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25601
25949
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25602
25950
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25603
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25604
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25605
25951
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
25606
25952
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
25607
25953
|
super().__init__(service, version, mode, path)
|
|
25608
|
-
class auto_range(TUIMethod):
|
|
25609
|
-
"""
|
|
25610
|
-
No help available.
|
|
25611
|
-
"""
|
|
25612
|
-
class auto_range_max(TUIMethod):
|
|
25613
|
-
"""
|
|
25614
|
-
No help available.
|
|
25615
|
-
"""
|
|
25616
|
-
class auto_range_min(TUIMethod):
|
|
25617
|
-
"""
|
|
25618
|
-
No help available.
|
|
25619
|
-
"""
|
|
25620
25954
|
class label(TUIMethod):
|
|
25621
25955
|
"""
|
|
25622
25956
|
No help available.
|
|
@@ -25625,22 +25959,46 @@ class main_menu(TUIMenu):
|
|
|
25625
25959
|
"""
|
|
25626
25960
|
No help available.
|
|
25627
25961
|
"""
|
|
25628
|
-
class
|
|
25629
|
-
"""
|
|
25630
|
-
No help available.
|
|
25631
|
-
"""
|
|
25632
|
-
class min(TUIMethod):
|
|
25962
|
+
class show_major_gridlines(TUIMethod):
|
|
25633
25963
|
"""
|
|
25634
25964
|
No help available.
|
|
25635
25965
|
"""
|
|
25636
|
-
class
|
|
25966
|
+
class show_minor_gridlines(TUIMethod):
|
|
25637
25967
|
"""
|
|
25638
25968
|
No help available.
|
|
25639
25969
|
"""
|
|
25640
|
-
|
|
25970
|
+
|
|
25971
|
+
class auto_range(TUIMenu):
|
|
25641
25972
|
"""
|
|
25642
25973
|
No help available.
|
|
25643
25974
|
"""
|
|
25975
|
+
def __init__(self, service, version, mode, path):
|
|
25976
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25977
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25978
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
25979
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25980
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
25981
|
+
super().__init__(service, version, mode, path)
|
|
25982
|
+
class auto_range(TUIMethod):
|
|
25983
|
+
"""
|
|
25984
|
+
No help available.
|
|
25985
|
+
"""
|
|
25986
|
+
class max(TUIMethod):
|
|
25987
|
+
"""
|
|
25988
|
+
No help available.
|
|
25989
|
+
"""
|
|
25990
|
+
class max_auto(TUIMethod):
|
|
25991
|
+
"""
|
|
25992
|
+
No help available.
|
|
25993
|
+
"""
|
|
25994
|
+
class min(TUIMethod):
|
|
25995
|
+
"""
|
|
25996
|
+
No help available.
|
|
25997
|
+
"""
|
|
25998
|
+
class min_auto(TUIMethod):
|
|
25999
|
+
"""
|
|
26000
|
+
No help available.
|
|
26001
|
+
"""
|
|
25644
26002
|
|
|
25645
26003
|
class major_gridlines(TUIMenu):
|
|
25646
26004
|
"""
|
|
@@ -25649,8 +26007,9 @@ class main_menu(TUIMenu):
|
|
|
25649
26007
|
def __init__(self, service, version, mode, path):
|
|
25650
26008
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25651
26009
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25652
|
-
self.
|
|
25653
|
-
self.
|
|
26010
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26011
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26012
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25654
26013
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25655
26014
|
super().__init__(service, version, mode, path)
|
|
25656
26015
|
class auto_placement(TUIMethod):
|
|
@@ -25661,11 +26020,15 @@ class main_menu(TUIMenu):
|
|
|
25661
26020
|
"""
|
|
25662
26021
|
No help available.
|
|
25663
26022
|
"""
|
|
25664
|
-
class
|
|
26023
|
+
class divisions(TUIMethod):
|
|
25665
26024
|
"""
|
|
25666
26025
|
No help available.
|
|
25667
26026
|
"""
|
|
25668
|
-
class
|
|
26027
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26028
|
+
"""
|
|
26029
|
+
No help available.
|
|
26030
|
+
"""
|
|
26031
|
+
class units(TUIMethod):
|
|
25669
26032
|
"""
|
|
25670
26033
|
No help available.
|
|
25671
26034
|
"""
|
|
@@ -25681,8 +26044,9 @@ class main_menu(TUIMenu):
|
|
|
25681
26044
|
def __init__(self, service, version, mode, path):
|
|
25682
26045
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25683
26046
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25684
|
-
self.
|
|
25685
|
-
self.
|
|
26047
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26048
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26049
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25686
26050
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25687
26051
|
super().__init__(service, version, mode, path)
|
|
25688
26052
|
class auto_placement(TUIMethod):
|
|
@@ -25693,11 +26057,15 @@ class main_menu(TUIMenu):
|
|
|
25693
26057
|
"""
|
|
25694
26058
|
No help available.
|
|
25695
26059
|
"""
|
|
25696
|
-
class
|
|
26060
|
+
class divisions(TUIMethod):
|
|
26061
|
+
"""
|
|
26062
|
+
No help available.
|
|
26063
|
+
"""
|
|
26064
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25697
26065
|
"""
|
|
25698
26066
|
No help available.
|
|
25699
26067
|
"""
|
|
25700
|
-
class
|
|
26068
|
+
class units(TUIMethod):
|
|
25701
26069
|
"""
|
|
25702
26070
|
No help available.
|
|
25703
26071
|
"""
|
|
@@ -25728,19 +26096,39 @@ class main_menu(TUIMenu):
|
|
|
25728
26096
|
No help available.
|
|
25729
26097
|
"""
|
|
25730
26098
|
def __init__(self, service, version, mode, path):
|
|
26099
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
26100
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
25731
26101
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
26102
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
25732
26103
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
25733
|
-
self.
|
|
26104
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
26105
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
25734
26106
|
super().__init__(service, version, mode, path)
|
|
26107
|
+
class create(TUIMethod):
|
|
26108
|
+
"""
|
|
26109
|
+
No help available.
|
|
26110
|
+
"""
|
|
26111
|
+
class delete(TUIMethod):
|
|
26112
|
+
"""
|
|
26113
|
+
No help available.
|
|
26114
|
+
"""
|
|
25735
26115
|
class edit(TUIMethod):
|
|
25736
26116
|
"""
|
|
25737
26117
|
Edit curves object.
|
|
25738
26118
|
"""
|
|
26119
|
+
class list(TUIMethod):
|
|
26120
|
+
"""
|
|
26121
|
+
No help available.
|
|
26122
|
+
"""
|
|
25739
26123
|
class list_properties(TUIMethod):
|
|
25740
26124
|
"""
|
|
25741
26125
|
No help available.
|
|
25742
26126
|
"""
|
|
25743
|
-
class
|
|
26127
|
+
class make_a_copy(TUIMethod):
|
|
26128
|
+
"""
|
|
26129
|
+
No help available.
|
|
26130
|
+
"""
|
|
26131
|
+
class rename(TUIMethod):
|
|
25744
26132
|
"""
|
|
25745
26133
|
No help available.
|
|
25746
26134
|
"""
|
|
@@ -25766,43 +26154,22 @@ class main_menu(TUIMenu):
|
|
|
25766
26154
|
def __init__(self, service, version, mode, path):
|
|
25767
26155
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
25768
26156
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
25769
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
25770
26157
|
super().__init__(service, version, mode, path)
|
|
25771
|
-
class background_color(TUIMethod):
|
|
25772
|
-
"""
|
|
25773
|
-
No help available.
|
|
25774
|
-
"""
|
|
25775
26158
|
|
|
25776
26159
|
class x(TUIMenu):
|
|
25777
26160
|
"""
|
|
25778
26161
|
No help available.
|
|
25779
26162
|
"""
|
|
25780
26163
|
def __init__(self, service, version, mode, path):
|
|
26164
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25781
26165
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
25782
26166
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25783
26167
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25784
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25785
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25786
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25787
26168
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25788
26169
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25789
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25790
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25791
26170
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
25792
26171
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
25793
26172
|
super().__init__(service, version, mode, path)
|
|
25794
|
-
class auto_range(TUIMethod):
|
|
25795
|
-
"""
|
|
25796
|
-
No help available.
|
|
25797
|
-
"""
|
|
25798
|
-
class auto_range_max(TUIMethod):
|
|
25799
|
-
"""
|
|
25800
|
-
No help available.
|
|
25801
|
-
"""
|
|
25802
|
-
class auto_range_min(TUIMethod):
|
|
25803
|
-
"""
|
|
25804
|
-
No help available.
|
|
25805
|
-
"""
|
|
25806
26173
|
class label(TUIMethod):
|
|
25807
26174
|
"""
|
|
25808
26175
|
No help available.
|
|
@@ -25811,22 +26178,46 @@ class main_menu(TUIMenu):
|
|
|
25811
26178
|
"""
|
|
25812
26179
|
No help available.
|
|
25813
26180
|
"""
|
|
25814
|
-
class
|
|
25815
|
-
"""
|
|
25816
|
-
No help available.
|
|
25817
|
-
"""
|
|
25818
|
-
class min(TUIMethod):
|
|
26181
|
+
class show_major_gridlines(TUIMethod):
|
|
25819
26182
|
"""
|
|
25820
26183
|
No help available.
|
|
25821
26184
|
"""
|
|
25822
|
-
class
|
|
26185
|
+
class show_minor_gridlines(TUIMethod):
|
|
25823
26186
|
"""
|
|
25824
26187
|
No help available.
|
|
25825
26188
|
"""
|
|
25826
|
-
|
|
26189
|
+
|
|
26190
|
+
class auto_range(TUIMenu):
|
|
25827
26191
|
"""
|
|
25828
26192
|
No help available.
|
|
25829
26193
|
"""
|
|
26194
|
+
def __init__(self, service, version, mode, path):
|
|
26195
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26196
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26197
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
26198
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26199
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
26200
|
+
super().__init__(service, version, mode, path)
|
|
26201
|
+
class auto_range(TUIMethod):
|
|
26202
|
+
"""
|
|
26203
|
+
No help available.
|
|
26204
|
+
"""
|
|
26205
|
+
class max(TUIMethod):
|
|
26206
|
+
"""
|
|
26207
|
+
No help available.
|
|
26208
|
+
"""
|
|
26209
|
+
class max_auto(TUIMethod):
|
|
26210
|
+
"""
|
|
26211
|
+
No help available.
|
|
26212
|
+
"""
|
|
26213
|
+
class min(TUIMethod):
|
|
26214
|
+
"""
|
|
26215
|
+
No help available.
|
|
26216
|
+
"""
|
|
26217
|
+
class min_auto(TUIMethod):
|
|
26218
|
+
"""
|
|
26219
|
+
No help available.
|
|
26220
|
+
"""
|
|
25830
26221
|
|
|
25831
26222
|
class major_gridlines(TUIMenu):
|
|
25832
26223
|
"""
|
|
@@ -25835,8 +26226,9 @@ class main_menu(TUIMenu):
|
|
|
25835
26226
|
def __init__(self, service, version, mode, path):
|
|
25836
26227
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25837
26228
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25838
|
-
self.
|
|
25839
|
-
self.
|
|
26229
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26230
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26231
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25840
26232
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25841
26233
|
super().__init__(service, version, mode, path)
|
|
25842
26234
|
class auto_placement(TUIMethod):
|
|
@@ -25847,11 +26239,15 @@ class main_menu(TUIMenu):
|
|
|
25847
26239
|
"""
|
|
25848
26240
|
No help available.
|
|
25849
26241
|
"""
|
|
25850
|
-
class
|
|
26242
|
+
class divisions(TUIMethod):
|
|
25851
26243
|
"""
|
|
25852
26244
|
No help available.
|
|
25853
26245
|
"""
|
|
25854
|
-
class
|
|
26246
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26247
|
+
"""
|
|
26248
|
+
No help available.
|
|
26249
|
+
"""
|
|
26250
|
+
class units(TUIMethod):
|
|
25855
26251
|
"""
|
|
25856
26252
|
No help available.
|
|
25857
26253
|
"""
|
|
@@ -25867,8 +26263,9 @@ class main_menu(TUIMenu):
|
|
|
25867
26263
|
def __init__(self, service, version, mode, path):
|
|
25868
26264
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25869
26265
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25870
|
-
self.
|
|
25871
|
-
self.
|
|
26266
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26267
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26268
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25872
26269
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25873
26270
|
super().__init__(service, version, mode, path)
|
|
25874
26271
|
class auto_placement(TUIMethod):
|
|
@@ -25879,11 +26276,15 @@ class main_menu(TUIMenu):
|
|
|
25879
26276
|
"""
|
|
25880
26277
|
No help available.
|
|
25881
26278
|
"""
|
|
25882
|
-
class
|
|
26279
|
+
class divisions(TUIMethod):
|
|
26280
|
+
"""
|
|
26281
|
+
No help available.
|
|
26282
|
+
"""
|
|
26283
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25883
26284
|
"""
|
|
25884
26285
|
No help available.
|
|
25885
26286
|
"""
|
|
25886
|
-
class
|
|
26287
|
+
class units(TUIMethod):
|
|
25887
26288
|
"""
|
|
25888
26289
|
No help available.
|
|
25889
26290
|
"""
|
|
@@ -25914,31 +26315,15 @@ class main_menu(TUIMenu):
|
|
|
25914
26315
|
No help available.
|
|
25915
26316
|
"""
|
|
25916
26317
|
def __init__(self, service, version, mode, path):
|
|
26318
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25917
26319
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
25918
26320
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25919
26321
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25920
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25921
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25922
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25923
26322
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25924
26323
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25925
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
25926
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
25927
26324
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
25928
26325
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
25929
26326
|
super().__init__(service, version, mode, path)
|
|
25930
|
-
class auto_range(TUIMethod):
|
|
25931
|
-
"""
|
|
25932
|
-
No help available.
|
|
25933
|
-
"""
|
|
25934
|
-
class auto_range_max(TUIMethod):
|
|
25935
|
-
"""
|
|
25936
|
-
No help available.
|
|
25937
|
-
"""
|
|
25938
|
-
class auto_range_min(TUIMethod):
|
|
25939
|
-
"""
|
|
25940
|
-
No help available.
|
|
25941
|
-
"""
|
|
25942
26327
|
class label(TUIMethod):
|
|
25943
26328
|
"""
|
|
25944
26329
|
No help available.
|
|
@@ -25947,22 +26332,46 @@ class main_menu(TUIMenu):
|
|
|
25947
26332
|
"""
|
|
25948
26333
|
No help available.
|
|
25949
26334
|
"""
|
|
25950
|
-
class
|
|
25951
|
-
"""
|
|
25952
|
-
No help available.
|
|
25953
|
-
"""
|
|
25954
|
-
class min(TUIMethod):
|
|
26335
|
+
class show_major_gridlines(TUIMethod):
|
|
25955
26336
|
"""
|
|
25956
26337
|
No help available.
|
|
25957
26338
|
"""
|
|
25958
|
-
class
|
|
26339
|
+
class show_minor_gridlines(TUIMethod):
|
|
25959
26340
|
"""
|
|
25960
26341
|
No help available.
|
|
25961
26342
|
"""
|
|
25962
|
-
|
|
26343
|
+
|
|
26344
|
+
class auto_range(TUIMenu):
|
|
25963
26345
|
"""
|
|
25964
26346
|
No help available.
|
|
25965
26347
|
"""
|
|
26348
|
+
def __init__(self, service, version, mode, path):
|
|
26349
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26350
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26351
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
26352
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26353
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
26354
|
+
super().__init__(service, version, mode, path)
|
|
26355
|
+
class auto_range(TUIMethod):
|
|
26356
|
+
"""
|
|
26357
|
+
No help available.
|
|
26358
|
+
"""
|
|
26359
|
+
class max(TUIMethod):
|
|
26360
|
+
"""
|
|
26361
|
+
No help available.
|
|
26362
|
+
"""
|
|
26363
|
+
class max_auto(TUIMethod):
|
|
26364
|
+
"""
|
|
26365
|
+
No help available.
|
|
26366
|
+
"""
|
|
26367
|
+
class min(TUIMethod):
|
|
26368
|
+
"""
|
|
26369
|
+
No help available.
|
|
26370
|
+
"""
|
|
26371
|
+
class min_auto(TUIMethod):
|
|
26372
|
+
"""
|
|
26373
|
+
No help available.
|
|
26374
|
+
"""
|
|
25966
26375
|
|
|
25967
26376
|
class major_gridlines(TUIMenu):
|
|
25968
26377
|
"""
|
|
@@ -25971,8 +26380,9 @@ class main_menu(TUIMenu):
|
|
|
25971
26380
|
def __init__(self, service, version, mode, path):
|
|
25972
26381
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25973
26382
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25974
|
-
self.
|
|
25975
|
-
self.
|
|
26383
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26384
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26385
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
25976
26386
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25977
26387
|
super().__init__(service, version, mode, path)
|
|
25978
26388
|
class auto_placement(TUIMethod):
|
|
@@ -25983,11 +26393,15 @@ class main_menu(TUIMenu):
|
|
|
25983
26393
|
"""
|
|
25984
26394
|
No help available.
|
|
25985
26395
|
"""
|
|
25986
|
-
class
|
|
26396
|
+
class divisions(TUIMethod):
|
|
26397
|
+
"""
|
|
26398
|
+
No help available.
|
|
26399
|
+
"""
|
|
26400
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
25987
26401
|
"""
|
|
25988
26402
|
No help available.
|
|
25989
26403
|
"""
|
|
25990
|
-
class
|
|
26404
|
+
class units(TUIMethod):
|
|
25991
26405
|
"""
|
|
25992
26406
|
No help available.
|
|
25993
26407
|
"""
|
|
@@ -26003,8 +26417,9 @@ class main_menu(TUIMenu):
|
|
|
26003
26417
|
def __init__(self, service, version, mode, path):
|
|
26004
26418
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26005
26419
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26006
|
-
self.
|
|
26007
|
-
self.
|
|
26420
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26421
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26422
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26008
26423
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26009
26424
|
super().__init__(service, version, mode, path)
|
|
26010
26425
|
class auto_placement(TUIMethod):
|
|
@@ -26015,11 +26430,15 @@ class main_menu(TUIMenu):
|
|
|
26015
26430
|
"""
|
|
26016
26431
|
No help available.
|
|
26017
26432
|
"""
|
|
26018
|
-
class
|
|
26433
|
+
class divisions(TUIMethod):
|
|
26019
26434
|
"""
|
|
26020
26435
|
No help available.
|
|
26021
26436
|
"""
|
|
26022
|
-
class
|
|
26437
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26438
|
+
"""
|
|
26439
|
+
No help available.
|
|
26440
|
+
"""
|
|
26441
|
+
class units(TUIMethod):
|
|
26023
26442
|
"""
|
|
26024
26443
|
No help available.
|
|
26025
26444
|
"""
|
|
@@ -26050,19 +26469,39 @@ class main_menu(TUIMenu):
|
|
|
26050
26469
|
No help available.
|
|
26051
26470
|
"""
|
|
26052
26471
|
def __init__(self, service, version, mode, path):
|
|
26472
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
26473
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
26053
26474
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
26475
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
26054
26476
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
26055
|
-
self.
|
|
26477
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
26478
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
26056
26479
|
super().__init__(service, version, mode, path)
|
|
26480
|
+
class create(TUIMethod):
|
|
26481
|
+
"""
|
|
26482
|
+
No help available.
|
|
26483
|
+
"""
|
|
26484
|
+
class delete(TUIMethod):
|
|
26485
|
+
"""
|
|
26486
|
+
No help available.
|
|
26487
|
+
"""
|
|
26057
26488
|
class edit(TUIMethod):
|
|
26058
26489
|
"""
|
|
26059
26490
|
Edit curves object.
|
|
26060
26491
|
"""
|
|
26492
|
+
class list(TUIMethod):
|
|
26493
|
+
"""
|
|
26494
|
+
No help available.
|
|
26495
|
+
"""
|
|
26061
26496
|
class list_properties(TUIMethod):
|
|
26062
26497
|
"""
|
|
26063
26498
|
No help available.
|
|
26064
26499
|
"""
|
|
26065
|
-
class
|
|
26500
|
+
class make_a_copy(TUIMethod):
|
|
26501
|
+
"""
|
|
26502
|
+
No help available.
|
|
26503
|
+
"""
|
|
26504
|
+
class rename(TUIMethod):
|
|
26066
26505
|
"""
|
|
26067
26506
|
No help available.
|
|
26068
26507
|
"""
|
|
@@ -26088,43 +26527,22 @@ class main_menu(TUIMenu):
|
|
|
26088
26527
|
def __init__(self, service, version, mode, path):
|
|
26089
26528
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
26090
26529
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
26091
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
26092
26530
|
super().__init__(service, version, mode, path)
|
|
26093
|
-
class background_color(TUIMethod):
|
|
26094
|
-
"""
|
|
26095
|
-
No help available.
|
|
26096
|
-
"""
|
|
26097
26531
|
|
|
26098
26532
|
class x(TUIMenu):
|
|
26099
26533
|
"""
|
|
26100
26534
|
No help available.
|
|
26101
26535
|
"""
|
|
26102
26536
|
def __init__(self, service, version, mode, path):
|
|
26537
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26103
26538
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26104
26539
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26105
26540
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26106
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26107
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26108
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26109
26541
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26110
26542
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26111
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26112
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26113
26543
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26114
26544
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26115
26545
|
super().__init__(service, version, mode, path)
|
|
26116
|
-
class auto_range(TUIMethod):
|
|
26117
|
-
"""
|
|
26118
|
-
No help available.
|
|
26119
|
-
"""
|
|
26120
|
-
class auto_range_max(TUIMethod):
|
|
26121
|
-
"""
|
|
26122
|
-
No help available.
|
|
26123
|
-
"""
|
|
26124
|
-
class auto_range_min(TUIMethod):
|
|
26125
|
-
"""
|
|
26126
|
-
No help available.
|
|
26127
|
-
"""
|
|
26128
26546
|
class label(TUIMethod):
|
|
26129
26547
|
"""
|
|
26130
26548
|
No help available.
|
|
@@ -26133,22 +26551,46 @@ class main_menu(TUIMenu):
|
|
|
26133
26551
|
"""
|
|
26134
26552
|
No help available.
|
|
26135
26553
|
"""
|
|
26136
|
-
class
|
|
26137
|
-
"""
|
|
26138
|
-
No help available.
|
|
26139
|
-
"""
|
|
26140
|
-
class min(TUIMethod):
|
|
26554
|
+
class show_major_gridlines(TUIMethod):
|
|
26141
26555
|
"""
|
|
26142
26556
|
No help available.
|
|
26143
26557
|
"""
|
|
26144
|
-
class
|
|
26558
|
+
class show_minor_gridlines(TUIMethod):
|
|
26145
26559
|
"""
|
|
26146
26560
|
No help available.
|
|
26147
26561
|
"""
|
|
26148
|
-
|
|
26562
|
+
|
|
26563
|
+
class auto_range(TUIMenu):
|
|
26149
26564
|
"""
|
|
26150
26565
|
No help available.
|
|
26151
26566
|
"""
|
|
26567
|
+
def __init__(self, service, version, mode, path):
|
|
26568
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26569
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26570
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
26571
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26572
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
26573
|
+
super().__init__(service, version, mode, path)
|
|
26574
|
+
class auto_range(TUIMethod):
|
|
26575
|
+
"""
|
|
26576
|
+
No help available.
|
|
26577
|
+
"""
|
|
26578
|
+
class max(TUIMethod):
|
|
26579
|
+
"""
|
|
26580
|
+
No help available.
|
|
26581
|
+
"""
|
|
26582
|
+
class max_auto(TUIMethod):
|
|
26583
|
+
"""
|
|
26584
|
+
No help available.
|
|
26585
|
+
"""
|
|
26586
|
+
class min(TUIMethod):
|
|
26587
|
+
"""
|
|
26588
|
+
No help available.
|
|
26589
|
+
"""
|
|
26590
|
+
class min_auto(TUIMethod):
|
|
26591
|
+
"""
|
|
26592
|
+
No help available.
|
|
26593
|
+
"""
|
|
26152
26594
|
|
|
26153
26595
|
class major_gridlines(TUIMenu):
|
|
26154
26596
|
"""
|
|
@@ -26157,8 +26599,9 @@ class main_menu(TUIMenu):
|
|
|
26157
26599
|
def __init__(self, service, version, mode, path):
|
|
26158
26600
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26159
26601
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26160
|
-
self.
|
|
26161
|
-
self.
|
|
26602
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26603
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26604
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26162
26605
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26163
26606
|
super().__init__(service, version, mode, path)
|
|
26164
26607
|
class auto_placement(TUIMethod):
|
|
@@ -26169,11 +26612,15 @@ class main_menu(TUIMenu):
|
|
|
26169
26612
|
"""
|
|
26170
26613
|
No help available.
|
|
26171
26614
|
"""
|
|
26172
|
-
class
|
|
26615
|
+
class divisions(TUIMethod):
|
|
26173
26616
|
"""
|
|
26174
26617
|
No help available.
|
|
26175
26618
|
"""
|
|
26176
|
-
class
|
|
26619
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26620
|
+
"""
|
|
26621
|
+
No help available.
|
|
26622
|
+
"""
|
|
26623
|
+
class units(TUIMethod):
|
|
26177
26624
|
"""
|
|
26178
26625
|
No help available.
|
|
26179
26626
|
"""
|
|
@@ -26189,8 +26636,9 @@ class main_menu(TUIMenu):
|
|
|
26189
26636
|
def __init__(self, service, version, mode, path):
|
|
26190
26637
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26191
26638
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26192
|
-
self.
|
|
26193
|
-
self.
|
|
26639
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26640
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26641
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26194
26642
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26195
26643
|
super().__init__(service, version, mode, path)
|
|
26196
26644
|
class auto_placement(TUIMethod):
|
|
@@ -26201,11 +26649,15 @@ class main_menu(TUIMenu):
|
|
|
26201
26649
|
"""
|
|
26202
26650
|
No help available.
|
|
26203
26651
|
"""
|
|
26204
|
-
class
|
|
26652
|
+
class divisions(TUIMethod):
|
|
26205
26653
|
"""
|
|
26206
26654
|
No help available.
|
|
26207
26655
|
"""
|
|
26208
|
-
class
|
|
26656
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26657
|
+
"""
|
|
26658
|
+
No help available.
|
|
26659
|
+
"""
|
|
26660
|
+
class units(TUIMethod):
|
|
26209
26661
|
"""
|
|
26210
26662
|
No help available.
|
|
26211
26663
|
"""
|
|
@@ -26236,31 +26688,15 @@ class main_menu(TUIMenu):
|
|
|
26236
26688
|
No help available.
|
|
26237
26689
|
"""
|
|
26238
26690
|
def __init__(self, service, version, mode, path):
|
|
26691
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26239
26692
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26240
26693
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26241
26694
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26242
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26243
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26244
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26245
26695
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26246
26696
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26247
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26248
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26249
26697
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26250
26698
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26251
26699
|
super().__init__(service, version, mode, path)
|
|
26252
|
-
class auto_range(TUIMethod):
|
|
26253
|
-
"""
|
|
26254
|
-
No help available.
|
|
26255
|
-
"""
|
|
26256
|
-
class auto_range_max(TUIMethod):
|
|
26257
|
-
"""
|
|
26258
|
-
No help available.
|
|
26259
|
-
"""
|
|
26260
|
-
class auto_range_min(TUIMethod):
|
|
26261
|
-
"""
|
|
26262
|
-
No help available.
|
|
26263
|
-
"""
|
|
26264
26700
|
class label(TUIMethod):
|
|
26265
26701
|
"""
|
|
26266
26702
|
No help available.
|
|
@@ -26269,22 +26705,46 @@ class main_menu(TUIMenu):
|
|
|
26269
26705
|
"""
|
|
26270
26706
|
No help available.
|
|
26271
26707
|
"""
|
|
26272
|
-
class
|
|
26273
|
-
"""
|
|
26274
|
-
No help available.
|
|
26275
|
-
"""
|
|
26276
|
-
class min(TUIMethod):
|
|
26708
|
+
class show_major_gridlines(TUIMethod):
|
|
26277
26709
|
"""
|
|
26278
26710
|
No help available.
|
|
26279
26711
|
"""
|
|
26280
|
-
class
|
|
26712
|
+
class show_minor_gridlines(TUIMethod):
|
|
26281
26713
|
"""
|
|
26282
26714
|
No help available.
|
|
26283
26715
|
"""
|
|
26284
|
-
|
|
26716
|
+
|
|
26717
|
+
class auto_range(TUIMenu):
|
|
26285
26718
|
"""
|
|
26286
26719
|
No help available.
|
|
26287
26720
|
"""
|
|
26721
|
+
def __init__(self, service, version, mode, path):
|
|
26722
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26723
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26724
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
26725
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26726
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
26727
|
+
super().__init__(service, version, mode, path)
|
|
26728
|
+
class auto_range(TUIMethod):
|
|
26729
|
+
"""
|
|
26730
|
+
No help available.
|
|
26731
|
+
"""
|
|
26732
|
+
class max(TUIMethod):
|
|
26733
|
+
"""
|
|
26734
|
+
No help available.
|
|
26735
|
+
"""
|
|
26736
|
+
class max_auto(TUIMethod):
|
|
26737
|
+
"""
|
|
26738
|
+
No help available.
|
|
26739
|
+
"""
|
|
26740
|
+
class min(TUIMethod):
|
|
26741
|
+
"""
|
|
26742
|
+
No help available.
|
|
26743
|
+
"""
|
|
26744
|
+
class min_auto(TUIMethod):
|
|
26745
|
+
"""
|
|
26746
|
+
No help available.
|
|
26747
|
+
"""
|
|
26288
26748
|
|
|
26289
26749
|
class major_gridlines(TUIMenu):
|
|
26290
26750
|
"""
|
|
@@ -26293,8 +26753,9 @@ class main_menu(TUIMenu):
|
|
|
26293
26753
|
def __init__(self, service, version, mode, path):
|
|
26294
26754
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26295
26755
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26296
|
-
self.
|
|
26297
|
-
self.
|
|
26756
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26757
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26758
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26298
26759
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26299
26760
|
super().__init__(service, version, mode, path)
|
|
26300
26761
|
class auto_placement(TUIMethod):
|
|
@@ -26305,11 +26766,15 @@ class main_menu(TUIMenu):
|
|
|
26305
26766
|
"""
|
|
26306
26767
|
No help available.
|
|
26307
26768
|
"""
|
|
26308
|
-
class
|
|
26769
|
+
class divisions(TUIMethod):
|
|
26309
26770
|
"""
|
|
26310
26771
|
No help available.
|
|
26311
26772
|
"""
|
|
26312
|
-
class
|
|
26773
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26774
|
+
"""
|
|
26775
|
+
No help available.
|
|
26776
|
+
"""
|
|
26777
|
+
class units(TUIMethod):
|
|
26313
26778
|
"""
|
|
26314
26779
|
No help available.
|
|
26315
26780
|
"""
|
|
@@ -26325,8 +26790,9 @@ class main_menu(TUIMenu):
|
|
|
26325
26790
|
def __init__(self, service, version, mode, path):
|
|
26326
26791
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26327
26792
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26328
|
-
self.
|
|
26329
|
-
self.
|
|
26793
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26794
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26795
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26330
26796
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26331
26797
|
super().__init__(service, version, mode, path)
|
|
26332
26798
|
class auto_placement(TUIMethod):
|
|
@@ -26337,11 +26803,15 @@ class main_menu(TUIMenu):
|
|
|
26337
26803
|
"""
|
|
26338
26804
|
No help available.
|
|
26339
26805
|
"""
|
|
26340
|
-
class
|
|
26806
|
+
class divisions(TUIMethod):
|
|
26807
|
+
"""
|
|
26808
|
+
No help available.
|
|
26809
|
+
"""
|
|
26810
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26341
26811
|
"""
|
|
26342
26812
|
No help available.
|
|
26343
26813
|
"""
|
|
26344
|
-
class
|
|
26814
|
+
class units(TUIMethod):
|
|
26345
26815
|
"""
|
|
26346
26816
|
No help available.
|
|
26347
26817
|
"""
|
|
@@ -26372,19 +26842,39 @@ class main_menu(TUIMenu):
|
|
|
26372
26842
|
No help available.
|
|
26373
26843
|
"""
|
|
26374
26844
|
def __init__(self, service, version, mode, path):
|
|
26845
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
26846
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
26375
26847
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
26848
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
26376
26849
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
26377
|
-
self.
|
|
26850
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
26851
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
26378
26852
|
super().__init__(service, version, mode, path)
|
|
26853
|
+
class create(TUIMethod):
|
|
26854
|
+
"""
|
|
26855
|
+
No help available.
|
|
26856
|
+
"""
|
|
26857
|
+
class delete(TUIMethod):
|
|
26858
|
+
"""
|
|
26859
|
+
No help available.
|
|
26860
|
+
"""
|
|
26379
26861
|
class edit(TUIMethod):
|
|
26380
26862
|
"""
|
|
26381
|
-
Edit curves object.
|
|
26863
|
+
Edit curves object.
|
|
26864
|
+
"""
|
|
26865
|
+
class list(TUIMethod):
|
|
26866
|
+
"""
|
|
26867
|
+
No help available.
|
|
26382
26868
|
"""
|
|
26383
26869
|
class list_properties(TUIMethod):
|
|
26384
26870
|
"""
|
|
26385
26871
|
No help available.
|
|
26386
26872
|
"""
|
|
26387
|
-
class
|
|
26873
|
+
class make_a_copy(TUIMethod):
|
|
26874
|
+
"""
|
|
26875
|
+
No help available.
|
|
26876
|
+
"""
|
|
26877
|
+
class rename(TUIMethod):
|
|
26388
26878
|
"""
|
|
26389
26879
|
No help available.
|
|
26390
26880
|
"""
|
|
@@ -26425,43 +26915,22 @@ class main_menu(TUIMenu):
|
|
|
26425
26915
|
def __init__(self, service, version, mode, path):
|
|
26426
26916
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
26427
26917
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
26428
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
26429
26918
|
super().__init__(service, version, mode, path)
|
|
26430
|
-
class background_color(TUIMethod):
|
|
26431
|
-
"""
|
|
26432
|
-
No help available.
|
|
26433
|
-
"""
|
|
26434
26919
|
|
|
26435
26920
|
class x(TUIMenu):
|
|
26436
26921
|
"""
|
|
26437
26922
|
No help available.
|
|
26438
26923
|
"""
|
|
26439
26924
|
def __init__(self, service, version, mode, path):
|
|
26925
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26440
26926
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26441
26927
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26442
26928
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26443
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26444
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26445
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26446
26929
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26447
26930
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26448
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26449
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26450
26931
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26451
26932
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26452
26933
|
super().__init__(service, version, mode, path)
|
|
26453
|
-
class auto_range(TUIMethod):
|
|
26454
|
-
"""
|
|
26455
|
-
No help available.
|
|
26456
|
-
"""
|
|
26457
|
-
class auto_range_max(TUIMethod):
|
|
26458
|
-
"""
|
|
26459
|
-
No help available.
|
|
26460
|
-
"""
|
|
26461
|
-
class auto_range_min(TUIMethod):
|
|
26462
|
-
"""
|
|
26463
|
-
No help available.
|
|
26464
|
-
"""
|
|
26465
26934
|
class label(TUIMethod):
|
|
26466
26935
|
"""
|
|
26467
26936
|
No help available.
|
|
@@ -26470,22 +26939,46 @@ class main_menu(TUIMenu):
|
|
|
26470
26939
|
"""
|
|
26471
26940
|
No help available.
|
|
26472
26941
|
"""
|
|
26473
|
-
class
|
|
26474
|
-
"""
|
|
26475
|
-
No help available.
|
|
26476
|
-
"""
|
|
26477
|
-
class min(TUIMethod):
|
|
26942
|
+
class show_major_gridlines(TUIMethod):
|
|
26478
26943
|
"""
|
|
26479
26944
|
No help available.
|
|
26480
26945
|
"""
|
|
26481
|
-
class
|
|
26946
|
+
class show_minor_gridlines(TUIMethod):
|
|
26482
26947
|
"""
|
|
26483
26948
|
No help available.
|
|
26484
26949
|
"""
|
|
26485
|
-
|
|
26950
|
+
|
|
26951
|
+
class auto_range(TUIMenu):
|
|
26486
26952
|
"""
|
|
26487
26953
|
No help available.
|
|
26488
26954
|
"""
|
|
26955
|
+
def __init__(self, service, version, mode, path):
|
|
26956
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26957
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26958
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
26959
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26960
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
26961
|
+
super().__init__(service, version, mode, path)
|
|
26962
|
+
class auto_range(TUIMethod):
|
|
26963
|
+
"""
|
|
26964
|
+
No help available.
|
|
26965
|
+
"""
|
|
26966
|
+
class max(TUIMethod):
|
|
26967
|
+
"""
|
|
26968
|
+
No help available.
|
|
26969
|
+
"""
|
|
26970
|
+
class max_auto(TUIMethod):
|
|
26971
|
+
"""
|
|
26972
|
+
No help available.
|
|
26973
|
+
"""
|
|
26974
|
+
class min(TUIMethod):
|
|
26975
|
+
"""
|
|
26976
|
+
No help available.
|
|
26977
|
+
"""
|
|
26978
|
+
class min_auto(TUIMethod):
|
|
26979
|
+
"""
|
|
26980
|
+
No help available.
|
|
26981
|
+
"""
|
|
26489
26982
|
|
|
26490
26983
|
class major_gridlines(TUIMenu):
|
|
26491
26984
|
"""
|
|
@@ -26494,8 +26987,9 @@ class main_menu(TUIMenu):
|
|
|
26494
26987
|
def __init__(self, service, version, mode, path):
|
|
26495
26988
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26496
26989
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26497
|
-
self.
|
|
26498
|
-
self.
|
|
26990
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
26991
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
26992
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26499
26993
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26500
26994
|
super().__init__(service, version, mode, path)
|
|
26501
26995
|
class auto_placement(TUIMethod):
|
|
@@ -26506,11 +27000,15 @@ class main_menu(TUIMenu):
|
|
|
26506
27000
|
"""
|
|
26507
27001
|
No help available.
|
|
26508
27002
|
"""
|
|
26509
|
-
class
|
|
27003
|
+
class divisions(TUIMethod):
|
|
27004
|
+
"""
|
|
27005
|
+
No help available.
|
|
27006
|
+
"""
|
|
27007
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26510
27008
|
"""
|
|
26511
27009
|
No help available.
|
|
26512
27010
|
"""
|
|
26513
|
-
class
|
|
27011
|
+
class units(TUIMethod):
|
|
26514
27012
|
"""
|
|
26515
27013
|
No help available.
|
|
26516
27014
|
"""
|
|
@@ -26526,8 +27024,9 @@ class main_menu(TUIMenu):
|
|
|
26526
27024
|
def __init__(self, service, version, mode, path):
|
|
26527
27025
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26528
27026
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26529
|
-
self.
|
|
26530
|
-
self.
|
|
27027
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27028
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27029
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26531
27030
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26532
27031
|
super().__init__(service, version, mode, path)
|
|
26533
27032
|
class auto_placement(TUIMethod):
|
|
@@ -26538,11 +27037,15 @@ class main_menu(TUIMenu):
|
|
|
26538
27037
|
"""
|
|
26539
27038
|
No help available.
|
|
26540
27039
|
"""
|
|
26541
|
-
class
|
|
27040
|
+
class divisions(TUIMethod):
|
|
26542
27041
|
"""
|
|
26543
27042
|
No help available.
|
|
26544
27043
|
"""
|
|
26545
|
-
class
|
|
27044
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
27045
|
+
"""
|
|
27046
|
+
No help available.
|
|
27047
|
+
"""
|
|
27048
|
+
class units(TUIMethod):
|
|
26546
27049
|
"""
|
|
26547
27050
|
No help available.
|
|
26548
27051
|
"""
|
|
@@ -26573,31 +27076,15 @@ class main_menu(TUIMenu):
|
|
|
26573
27076
|
No help available.
|
|
26574
27077
|
"""
|
|
26575
27078
|
def __init__(self, service, version, mode, path):
|
|
27079
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26576
27080
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26577
27081
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26578
27082
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26579
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26580
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26581
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26582
27083
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26583
27084
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26584
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26585
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26586
27085
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26587
27086
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26588
27087
|
super().__init__(service, version, mode, path)
|
|
26589
|
-
class auto_range(TUIMethod):
|
|
26590
|
-
"""
|
|
26591
|
-
No help available.
|
|
26592
|
-
"""
|
|
26593
|
-
class auto_range_max(TUIMethod):
|
|
26594
|
-
"""
|
|
26595
|
-
No help available.
|
|
26596
|
-
"""
|
|
26597
|
-
class auto_range_min(TUIMethod):
|
|
26598
|
-
"""
|
|
26599
|
-
No help available.
|
|
26600
|
-
"""
|
|
26601
27088
|
class label(TUIMethod):
|
|
26602
27089
|
"""
|
|
26603
27090
|
No help available.
|
|
@@ -26606,22 +27093,46 @@ class main_menu(TUIMenu):
|
|
|
26606
27093
|
"""
|
|
26607
27094
|
No help available.
|
|
26608
27095
|
"""
|
|
26609
|
-
class
|
|
26610
|
-
"""
|
|
26611
|
-
No help available.
|
|
26612
|
-
"""
|
|
26613
|
-
class min(TUIMethod):
|
|
27096
|
+
class show_major_gridlines(TUIMethod):
|
|
26614
27097
|
"""
|
|
26615
27098
|
No help available.
|
|
26616
27099
|
"""
|
|
26617
|
-
class
|
|
27100
|
+
class show_minor_gridlines(TUIMethod):
|
|
26618
27101
|
"""
|
|
26619
27102
|
No help available.
|
|
26620
27103
|
"""
|
|
26621
|
-
|
|
27104
|
+
|
|
27105
|
+
class auto_range(TUIMenu):
|
|
26622
27106
|
"""
|
|
26623
27107
|
No help available.
|
|
26624
27108
|
"""
|
|
27109
|
+
def __init__(self, service, version, mode, path):
|
|
27110
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
27111
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
27112
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
27113
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
27114
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
27115
|
+
super().__init__(service, version, mode, path)
|
|
27116
|
+
class auto_range(TUIMethod):
|
|
27117
|
+
"""
|
|
27118
|
+
No help available.
|
|
27119
|
+
"""
|
|
27120
|
+
class max(TUIMethod):
|
|
27121
|
+
"""
|
|
27122
|
+
No help available.
|
|
27123
|
+
"""
|
|
27124
|
+
class max_auto(TUIMethod):
|
|
27125
|
+
"""
|
|
27126
|
+
No help available.
|
|
27127
|
+
"""
|
|
27128
|
+
class min(TUIMethod):
|
|
27129
|
+
"""
|
|
27130
|
+
No help available.
|
|
27131
|
+
"""
|
|
27132
|
+
class min_auto(TUIMethod):
|
|
27133
|
+
"""
|
|
27134
|
+
No help available.
|
|
27135
|
+
"""
|
|
26625
27136
|
|
|
26626
27137
|
class major_gridlines(TUIMenu):
|
|
26627
27138
|
"""
|
|
@@ -26630,8 +27141,9 @@ class main_menu(TUIMenu):
|
|
|
26630
27141
|
def __init__(self, service, version, mode, path):
|
|
26631
27142
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26632
27143
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26633
|
-
self.
|
|
26634
|
-
self.
|
|
27144
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27145
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27146
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26635
27147
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26636
27148
|
super().__init__(service, version, mode, path)
|
|
26637
27149
|
class auto_placement(TUIMethod):
|
|
@@ -26642,11 +27154,15 @@ class main_menu(TUIMenu):
|
|
|
26642
27154
|
"""
|
|
26643
27155
|
No help available.
|
|
26644
27156
|
"""
|
|
26645
|
-
class
|
|
27157
|
+
class divisions(TUIMethod):
|
|
26646
27158
|
"""
|
|
26647
27159
|
No help available.
|
|
26648
27160
|
"""
|
|
26649
|
-
class
|
|
27161
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
27162
|
+
"""
|
|
27163
|
+
No help available.
|
|
27164
|
+
"""
|
|
27165
|
+
class units(TUIMethod):
|
|
26650
27166
|
"""
|
|
26651
27167
|
No help available.
|
|
26652
27168
|
"""
|
|
@@ -26662,8 +27178,9 @@ class main_menu(TUIMenu):
|
|
|
26662
27178
|
def __init__(self, service, version, mode, path):
|
|
26663
27179
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26664
27180
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26665
|
-
self.
|
|
26666
|
-
self.
|
|
27181
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27182
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27183
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26667
27184
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26668
27185
|
super().__init__(service, version, mode, path)
|
|
26669
27186
|
class auto_placement(TUIMethod):
|
|
@@ -26674,11 +27191,15 @@ class main_menu(TUIMenu):
|
|
|
26674
27191
|
"""
|
|
26675
27192
|
No help available.
|
|
26676
27193
|
"""
|
|
26677
|
-
class
|
|
27194
|
+
class divisions(TUIMethod):
|
|
27195
|
+
"""
|
|
27196
|
+
No help available.
|
|
27197
|
+
"""
|
|
27198
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26678
27199
|
"""
|
|
26679
27200
|
No help available.
|
|
26680
27201
|
"""
|
|
26681
|
-
class
|
|
27202
|
+
class units(TUIMethod):
|
|
26682
27203
|
"""
|
|
26683
27204
|
No help available.
|
|
26684
27205
|
"""
|
|
@@ -26709,22 +27230,99 @@ class main_menu(TUIMenu):
|
|
|
26709
27230
|
No help available.
|
|
26710
27231
|
"""
|
|
26711
27232
|
def __init__(self, service, version, mode, path):
|
|
26712
|
-
self.
|
|
26713
|
-
self.
|
|
26714
|
-
self.
|
|
27233
|
+
self.line = self.__class__.line(service, version, mode, path + ["line"])
|
|
27234
|
+
self.line_in_file = self.__class__.line_in_file(service, version, mode, path + ["line_in_file"])
|
|
27235
|
+
self.marker = self.__class__.marker(service, version, mode, path + ["marker"])
|
|
27236
|
+
self.marker_in_file = self.__class__.marker_in_file(service, version, mode, path + ["marker_in_file"])
|
|
26715
27237
|
super().__init__(service, version, mode, path)
|
|
26716
|
-
|
|
27238
|
+
|
|
27239
|
+
class line(TUIMenu):
|
|
26717
27240
|
"""
|
|
26718
|
-
|
|
27241
|
+
No help available.
|
|
26719
27242
|
"""
|
|
26720
|
-
|
|
27243
|
+
def __init__(self, service, version, mode, path):
|
|
27244
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
27245
|
+
self.pattern = self.__class__.pattern(service, version, mode, path + ["pattern"])
|
|
27246
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
27247
|
+
super().__init__(service, version, mode, path)
|
|
27248
|
+
class color(TUIMethod):
|
|
27249
|
+
"""
|
|
27250
|
+
No help available.
|
|
27251
|
+
"""
|
|
27252
|
+
class pattern(TUIMethod):
|
|
27253
|
+
"""
|
|
27254
|
+
No help available.
|
|
27255
|
+
"""
|
|
27256
|
+
class weight(TUIMethod):
|
|
27257
|
+
"""
|
|
27258
|
+
No help available.
|
|
27259
|
+
"""
|
|
27260
|
+
|
|
27261
|
+
class line_in_file(TUIMenu):
|
|
26721
27262
|
"""
|
|
26722
27263
|
No help available.
|
|
26723
27264
|
"""
|
|
26724
|
-
|
|
27265
|
+
def __init__(self, service, version, mode, path):
|
|
27266
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
27267
|
+
self.pattern = self.__class__.pattern(service, version, mode, path + ["pattern"])
|
|
27268
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
27269
|
+
super().__init__(service, version, mode, path)
|
|
27270
|
+
class color(TUIMethod):
|
|
27271
|
+
"""
|
|
27272
|
+
No help available.
|
|
27273
|
+
"""
|
|
27274
|
+
class pattern(TUIMethod):
|
|
27275
|
+
"""
|
|
27276
|
+
No help available.
|
|
27277
|
+
"""
|
|
27278
|
+
class weight(TUIMethod):
|
|
27279
|
+
"""
|
|
27280
|
+
No help available.
|
|
27281
|
+
"""
|
|
27282
|
+
|
|
27283
|
+
class marker(TUIMenu):
|
|
27284
|
+
"""
|
|
27285
|
+
No help available.
|
|
27286
|
+
"""
|
|
27287
|
+
def __init__(self, service, version, mode, path):
|
|
27288
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
27289
|
+
self.size = self.__class__.size(service, version, mode, path + ["size"])
|
|
27290
|
+
self.symbol = self.__class__.symbol(service, version, mode, path + ["symbol"])
|
|
27291
|
+
super().__init__(service, version, mode, path)
|
|
27292
|
+
class color(TUIMethod):
|
|
27293
|
+
"""
|
|
27294
|
+
No help available.
|
|
27295
|
+
"""
|
|
27296
|
+
class size(TUIMethod):
|
|
27297
|
+
"""
|
|
27298
|
+
No help available.
|
|
27299
|
+
"""
|
|
27300
|
+
class symbol(TUIMethod):
|
|
27301
|
+
"""
|
|
27302
|
+
No help available.
|
|
27303
|
+
"""
|
|
27304
|
+
|
|
27305
|
+
class marker_in_file(TUIMenu):
|
|
26725
27306
|
"""
|
|
26726
27307
|
No help available.
|
|
26727
27308
|
"""
|
|
27309
|
+
def __init__(self, service, version, mode, path):
|
|
27310
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
27311
|
+
self.size = self.__class__.size(service, version, mode, path + ["size"])
|
|
27312
|
+
self.symbol = self.__class__.symbol(service, version, mode, path + ["symbol"])
|
|
27313
|
+
super().__init__(service, version, mode, path)
|
|
27314
|
+
class color(TUIMethod):
|
|
27315
|
+
"""
|
|
27316
|
+
No help available.
|
|
27317
|
+
"""
|
|
27318
|
+
class size(TUIMethod):
|
|
27319
|
+
"""
|
|
27320
|
+
No help available.
|
|
27321
|
+
"""
|
|
27322
|
+
class symbol(TUIMethod):
|
|
27323
|
+
"""
|
|
27324
|
+
No help available.
|
|
27325
|
+
"""
|
|
26728
27326
|
|
|
26729
27327
|
class solution_plot(TUIMenu):
|
|
26730
27328
|
"""
|
|
@@ -26782,43 +27380,22 @@ class main_menu(TUIMenu):
|
|
|
26782
27380
|
def __init__(self, service, version, mode, path):
|
|
26783
27381
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
26784
27382
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
26785
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
26786
27383
|
super().__init__(service, version, mode, path)
|
|
26787
|
-
class background_color(TUIMethod):
|
|
26788
|
-
"""
|
|
26789
|
-
No help available.
|
|
26790
|
-
"""
|
|
26791
27384
|
|
|
26792
27385
|
class x(TUIMenu):
|
|
26793
27386
|
"""
|
|
26794
27387
|
No help available.
|
|
26795
27388
|
"""
|
|
26796
27389
|
def __init__(self, service, version, mode, path):
|
|
27390
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26797
27391
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26798
27392
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26799
27393
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26800
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26801
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26802
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26803
27394
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26804
27395
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26805
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26806
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26807
27396
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26808
27397
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26809
27398
|
super().__init__(service, version, mode, path)
|
|
26810
|
-
class auto_range(TUIMethod):
|
|
26811
|
-
"""
|
|
26812
|
-
No help available.
|
|
26813
|
-
"""
|
|
26814
|
-
class auto_range_max(TUIMethod):
|
|
26815
|
-
"""
|
|
26816
|
-
No help available.
|
|
26817
|
-
"""
|
|
26818
|
-
class auto_range_min(TUIMethod):
|
|
26819
|
-
"""
|
|
26820
|
-
No help available.
|
|
26821
|
-
"""
|
|
26822
27399
|
class label(TUIMethod):
|
|
26823
27400
|
"""
|
|
26824
27401
|
No help available.
|
|
@@ -26827,22 +27404,46 @@ class main_menu(TUIMenu):
|
|
|
26827
27404
|
"""
|
|
26828
27405
|
No help available.
|
|
26829
27406
|
"""
|
|
26830
|
-
class
|
|
26831
|
-
"""
|
|
26832
|
-
No help available.
|
|
26833
|
-
"""
|
|
26834
|
-
class min(TUIMethod):
|
|
27407
|
+
class show_major_gridlines(TUIMethod):
|
|
26835
27408
|
"""
|
|
26836
27409
|
No help available.
|
|
26837
27410
|
"""
|
|
26838
|
-
class
|
|
27411
|
+
class show_minor_gridlines(TUIMethod):
|
|
26839
27412
|
"""
|
|
26840
27413
|
No help available.
|
|
26841
27414
|
"""
|
|
26842
|
-
|
|
27415
|
+
|
|
27416
|
+
class auto_range(TUIMenu):
|
|
26843
27417
|
"""
|
|
26844
27418
|
No help available.
|
|
26845
27419
|
"""
|
|
27420
|
+
def __init__(self, service, version, mode, path):
|
|
27421
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
27422
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
27423
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
27424
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
27425
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
27426
|
+
super().__init__(service, version, mode, path)
|
|
27427
|
+
class auto_range(TUIMethod):
|
|
27428
|
+
"""
|
|
27429
|
+
No help available.
|
|
27430
|
+
"""
|
|
27431
|
+
class max(TUIMethod):
|
|
27432
|
+
"""
|
|
27433
|
+
No help available.
|
|
27434
|
+
"""
|
|
27435
|
+
class max_auto(TUIMethod):
|
|
27436
|
+
"""
|
|
27437
|
+
No help available.
|
|
27438
|
+
"""
|
|
27439
|
+
class min(TUIMethod):
|
|
27440
|
+
"""
|
|
27441
|
+
No help available.
|
|
27442
|
+
"""
|
|
27443
|
+
class min_auto(TUIMethod):
|
|
27444
|
+
"""
|
|
27445
|
+
No help available.
|
|
27446
|
+
"""
|
|
26846
27447
|
|
|
26847
27448
|
class major_gridlines(TUIMenu):
|
|
26848
27449
|
"""
|
|
@@ -26851,8 +27452,9 @@ class main_menu(TUIMenu):
|
|
|
26851
27452
|
def __init__(self, service, version, mode, path):
|
|
26852
27453
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26853
27454
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26854
|
-
self.
|
|
26855
|
-
self.
|
|
27455
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27456
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27457
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26856
27458
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26857
27459
|
super().__init__(service, version, mode, path)
|
|
26858
27460
|
class auto_placement(TUIMethod):
|
|
@@ -26863,11 +27465,15 @@ class main_menu(TUIMenu):
|
|
|
26863
27465
|
"""
|
|
26864
27466
|
No help available.
|
|
26865
27467
|
"""
|
|
26866
|
-
class
|
|
27468
|
+
class divisions(TUIMethod):
|
|
27469
|
+
"""
|
|
27470
|
+
No help available.
|
|
27471
|
+
"""
|
|
27472
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
26867
27473
|
"""
|
|
26868
27474
|
No help available.
|
|
26869
27475
|
"""
|
|
26870
|
-
class
|
|
27476
|
+
class units(TUIMethod):
|
|
26871
27477
|
"""
|
|
26872
27478
|
No help available.
|
|
26873
27479
|
"""
|
|
@@ -26883,8 +27489,9 @@ class main_menu(TUIMenu):
|
|
|
26883
27489
|
def __init__(self, service, version, mode, path):
|
|
26884
27490
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26885
27491
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26886
|
-
self.
|
|
26887
|
-
self.
|
|
27492
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27493
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27494
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26888
27495
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26889
27496
|
super().__init__(service, version, mode, path)
|
|
26890
27497
|
class auto_placement(TUIMethod):
|
|
@@ -26895,11 +27502,15 @@ class main_menu(TUIMenu):
|
|
|
26895
27502
|
"""
|
|
26896
27503
|
No help available.
|
|
26897
27504
|
"""
|
|
26898
|
-
class
|
|
27505
|
+
class divisions(TUIMethod):
|
|
26899
27506
|
"""
|
|
26900
27507
|
No help available.
|
|
26901
27508
|
"""
|
|
26902
|
-
class
|
|
27509
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
27510
|
+
"""
|
|
27511
|
+
No help available.
|
|
27512
|
+
"""
|
|
27513
|
+
class units(TUIMethod):
|
|
26903
27514
|
"""
|
|
26904
27515
|
No help available.
|
|
26905
27516
|
"""
|
|
@@ -26930,31 +27541,15 @@ class main_menu(TUIMenu):
|
|
|
26930
27541
|
No help available.
|
|
26931
27542
|
"""
|
|
26932
27543
|
def __init__(self, service, version, mode, path):
|
|
27544
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26933
27545
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26934
27546
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26935
27547
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26936
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26937
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26938
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26939
27548
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26940
27549
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26941
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26942
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26943
27550
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26944
27551
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26945
27552
|
super().__init__(service, version, mode, path)
|
|
26946
|
-
class auto_range(TUIMethod):
|
|
26947
|
-
"""
|
|
26948
|
-
No help available.
|
|
26949
|
-
"""
|
|
26950
|
-
class auto_range_max(TUIMethod):
|
|
26951
|
-
"""
|
|
26952
|
-
No help available.
|
|
26953
|
-
"""
|
|
26954
|
-
class auto_range_min(TUIMethod):
|
|
26955
|
-
"""
|
|
26956
|
-
No help available.
|
|
26957
|
-
"""
|
|
26958
27553
|
class label(TUIMethod):
|
|
26959
27554
|
"""
|
|
26960
27555
|
No help available.
|
|
@@ -26963,22 +27558,46 @@ class main_menu(TUIMenu):
|
|
|
26963
27558
|
"""
|
|
26964
27559
|
No help available.
|
|
26965
27560
|
"""
|
|
26966
|
-
class
|
|
26967
|
-
"""
|
|
26968
|
-
No help available.
|
|
26969
|
-
"""
|
|
26970
|
-
class min(TUIMethod):
|
|
27561
|
+
class show_major_gridlines(TUIMethod):
|
|
26971
27562
|
"""
|
|
26972
27563
|
No help available.
|
|
26973
27564
|
"""
|
|
26974
|
-
class
|
|
27565
|
+
class show_minor_gridlines(TUIMethod):
|
|
26975
27566
|
"""
|
|
26976
27567
|
No help available.
|
|
26977
27568
|
"""
|
|
26978
|
-
|
|
27569
|
+
|
|
27570
|
+
class auto_range(TUIMenu):
|
|
26979
27571
|
"""
|
|
26980
27572
|
No help available.
|
|
26981
27573
|
"""
|
|
27574
|
+
def __init__(self, service, version, mode, path):
|
|
27575
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
27576
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
27577
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
27578
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
27579
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
27580
|
+
super().__init__(service, version, mode, path)
|
|
27581
|
+
class auto_range(TUIMethod):
|
|
27582
|
+
"""
|
|
27583
|
+
No help available.
|
|
27584
|
+
"""
|
|
27585
|
+
class max(TUIMethod):
|
|
27586
|
+
"""
|
|
27587
|
+
No help available.
|
|
27588
|
+
"""
|
|
27589
|
+
class max_auto(TUIMethod):
|
|
27590
|
+
"""
|
|
27591
|
+
No help available.
|
|
27592
|
+
"""
|
|
27593
|
+
class min(TUIMethod):
|
|
27594
|
+
"""
|
|
27595
|
+
No help available.
|
|
27596
|
+
"""
|
|
27597
|
+
class min_auto(TUIMethod):
|
|
27598
|
+
"""
|
|
27599
|
+
No help available.
|
|
27600
|
+
"""
|
|
26982
27601
|
|
|
26983
27602
|
class major_gridlines(TUIMenu):
|
|
26984
27603
|
"""
|
|
@@ -26987,8 +27606,9 @@ class main_menu(TUIMenu):
|
|
|
26987
27606
|
def __init__(self, service, version, mode, path):
|
|
26988
27607
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26989
27608
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26990
|
-
self.
|
|
26991
|
-
self.
|
|
27609
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27610
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27611
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
26992
27612
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26993
27613
|
super().__init__(service, version, mode, path)
|
|
26994
27614
|
class auto_placement(TUIMethod):
|
|
@@ -26999,11 +27619,15 @@ class main_menu(TUIMenu):
|
|
|
26999
27619
|
"""
|
|
27000
27620
|
No help available.
|
|
27001
27621
|
"""
|
|
27002
|
-
class
|
|
27622
|
+
class divisions(TUIMethod):
|
|
27003
27623
|
"""
|
|
27004
27624
|
No help available.
|
|
27005
27625
|
"""
|
|
27006
|
-
class
|
|
27626
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
27627
|
+
"""
|
|
27628
|
+
No help available.
|
|
27629
|
+
"""
|
|
27630
|
+
class units(TUIMethod):
|
|
27007
27631
|
"""
|
|
27008
27632
|
No help available.
|
|
27009
27633
|
"""
|
|
@@ -27019,8 +27643,9 @@ class main_menu(TUIMenu):
|
|
|
27019
27643
|
def __init__(self, service, version, mode, path):
|
|
27020
27644
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
27021
27645
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
27022
|
-
self.
|
|
27023
|
-
self.
|
|
27646
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
27647
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
27648
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
27024
27649
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
27025
27650
|
super().__init__(service, version, mode, path)
|
|
27026
27651
|
class auto_placement(TUIMethod):
|
|
@@ -27031,11 +27656,15 @@ class main_menu(TUIMenu):
|
|
|
27031
27656
|
"""
|
|
27032
27657
|
No help available.
|
|
27033
27658
|
"""
|
|
27034
|
-
class
|
|
27659
|
+
class divisions(TUIMethod):
|
|
27660
|
+
"""
|
|
27661
|
+
No help available.
|
|
27662
|
+
"""
|
|
27663
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
27035
27664
|
"""
|
|
27036
27665
|
No help available.
|
|
27037
27666
|
"""
|
|
27038
|
-
class
|
|
27667
|
+
class units(TUIMethod):
|
|
27039
27668
|
"""
|
|
27040
27669
|
No help available.
|
|
27041
27670
|
"""
|
|
@@ -27066,19 +27695,39 @@ class main_menu(TUIMenu):
|
|
|
27066
27695
|
No help available.
|
|
27067
27696
|
"""
|
|
27068
27697
|
def __init__(self, service, version, mode, path):
|
|
27698
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
27699
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
27069
27700
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
27701
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
27070
27702
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
27071
|
-
self.
|
|
27703
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
27704
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
27072
27705
|
super().__init__(service, version, mode, path)
|
|
27706
|
+
class create(TUIMethod):
|
|
27707
|
+
"""
|
|
27708
|
+
No help available.
|
|
27709
|
+
"""
|
|
27710
|
+
class delete(TUIMethod):
|
|
27711
|
+
"""
|
|
27712
|
+
No help available.
|
|
27713
|
+
"""
|
|
27073
27714
|
class edit(TUIMethod):
|
|
27074
27715
|
"""
|
|
27075
27716
|
Edit curves object.
|
|
27076
27717
|
"""
|
|
27718
|
+
class list(TUIMethod):
|
|
27719
|
+
"""
|
|
27720
|
+
No help available.
|
|
27721
|
+
"""
|
|
27077
27722
|
class list_properties(TUIMethod):
|
|
27078
27723
|
"""
|
|
27079
27724
|
No help available.
|
|
27080
27725
|
"""
|
|
27081
|
-
class
|
|
27726
|
+
class make_a_copy(TUIMethod):
|
|
27727
|
+
"""
|
|
27728
|
+
No help available.
|
|
27729
|
+
"""
|
|
27730
|
+
class rename(TUIMethod):
|
|
27082
27731
|
"""
|
|
27083
27732
|
No help available.
|
|
27084
27733
|
"""
|
|
@@ -28134,6 +28783,7 @@ class main_menu(TUIMenu):
|
|
|
28134
28783
|
self.create_multiple_iso_surfaces = self.__class__.create_multiple_iso_surfaces(service, version, mode, path + ["create_multiple_iso_surfaces"])
|
|
28135
28784
|
self.create_multiple_plane_surfaces = self.__class__.create_multiple_plane_surfaces(service, version, mode, path + ["create_multiple_plane_surfaces"])
|
|
28136
28785
|
self.create_multiple_zone_surfaces = self.__class__.create_multiple_zone_surfaces(service, version, mode, path + ["create_multiple_zone_surfaces"])
|
|
28786
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
28137
28787
|
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
28138
28788
|
self.reset_zone_surfaces = self.__class__.reset_zone_surfaces(service, version, mode, path + ["reset_zone_surfaces"])
|
|
28139
28789
|
self.set_rendering_priority = self.__class__.set_rendering_priority(service, version, mode, path + ["set_rendering_priority"])
|
|
@@ -28156,6 +28806,10 @@ class main_menu(TUIMenu):
|
|
|
28156
28806
|
"""
|
|
28157
28807
|
No help available.
|
|
28158
28808
|
"""
|
|
28809
|
+
class delete(TUIMethod):
|
|
28810
|
+
"""
|
|
28811
|
+
No help available.
|
|
28812
|
+
"""
|
|
28159
28813
|
class external_surface(TUIMethod):
|
|
28160
28814
|
"""
|
|
28161
28815
|
No help available.
|
|
@@ -29134,12 +29788,106 @@ class main_menu(TUIMenu):
|
|
|
29134
29788
|
No help available.
|
|
29135
29789
|
"""
|
|
29136
29790
|
def __init__(self, service, version, mode, path):
|
|
29791
|
+
self.automatic_exports = self.__class__.automatic_exports(service, version, mode, path + ["automatic_exports"])
|
|
29137
29792
|
self.case_modification = self.__class__.case_modification(service, version, mode, path + ["case_modification"])
|
|
29138
29793
|
self.execute_commands = self.__class__.execute_commands(service, version, mode, path + ["execute_commands"])
|
|
29139
29794
|
self.poor_mesh_numerics = self.__class__.poor_mesh_numerics(service, version, mode, path + ["poor_mesh_numerics"])
|
|
29140
29795
|
self.solution_animations = self.__class__.solution_animations(service, version, mode, path + ["solution_animations"])
|
|
29141
29796
|
super().__init__(service, version, mode, path)
|
|
29142
29797
|
|
|
29798
|
+
class automatic_exports(TUIMenu):
|
|
29799
|
+
"""
|
|
29800
|
+
No help available.
|
|
29801
|
+
"""
|
|
29802
|
+
def __init__(self, service, version, mode, path):
|
|
29803
|
+
self.cgns = self.__class__.cgns(service, version, mode, path + ["cgns"])
|
|
29804
|
+
self.dvs_export = self.__class__.dvs_export(service, version, mode, path + ["dvs_export"])
|
|
29805
|
+
super().__init__(service, version, mode, path)
|
|
29806
|
+
|
|
29807
|
+
class cgns(TUIMenu):
|
|
29808
|
+
"""
|
|
29809
|
+
No help available.
|
|
29810
|
+
"""
|
|
29811
|
+
def __init__(self, service, version, mode, path):
|
|
29812
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
29813
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
29814
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
29815
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
29816
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
29817
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
29818
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
29819
|
+
super().__init__(service, version, mode, path)
|
|
29820
|
+
class create(TUIMethod):
|
|
29821
|
+
"""
|
|
29822
|
+
No help available.
|
|
29823
|
+
"""
|
|
29824
|
+
class delete(TUIMethod):
|
|
29825
|
+
"""
|
|
29826
|
+
No help available.
|
|
29827
|
+
"""
|
|
29828
|
+
class edit(TUIMethod):
|
|
29829
|
+
"""
|
|
29830
|
+
Edit cgns object.
|
|
29831
|
+
"""
|
|
29832
|
+
class list(TUIMethod):
|
|
29833
|
+
"""
|
|
29834
|
+
No help available.
|
|
29835
|
+
"""
|
|
29836
|
+
class list_properties(TUIMethod):
|
|
29837
|
+
"""
|
|
29838
|
+
No help available.
|
|
29839
|
+
"""
|
|
29840
|
+
class make_a_copy(TUIMethod):
|
|
29841
|
+
"""
|
|
29842
|
+
No help available.
|
|
29843
|
+
"""
|
|
29844
|
+
class rename(TUIMethod):
|
|
29845
|
+
"""
|
|
29846
|
+
No help available.
|
|
29847
|
+
"""
|
|
29848
|
+
|
|
29849
|
+
class dvs_export(TUIMenu):
|
|
29850
|
+
"""
|
|
29851
|
+
No help available.
|
|
29852
|
+
"""
|
|
29853
|
+
def __init__(self, service, version, mode, path):
|
|
29854
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
29855
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
29856
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
29857
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
29858
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
29859
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
29860
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
29861
|
+
super().__init__(service, version, mode, path)
|
|
29862
|
+
class create(TUIMethod):
|
|
29863
|
+
"""
|
|
29864
|
+
No help available.
|
|
29865
|
+
"""
|
|
29866
|
+
class delete(TUIMethod):
|
|
29867
|
+
"""
|
|
29868
|
+
No help available.
|
|
29869
|
+
"""
|
|
29870
|
+
class edit(TUIMethod):
|
|
29871
|
+
"""
|
|
29872
|
+
Edit dvs-export object.
|
|
29873
|
+
"""
|
|
29874
|
+
class list(TUIMethod):
|
|
29875
|
+
"""
|
|
29876
|
+
No help available.
|
|
29877
|
+
"""
|
|
29878
|
+
class list_properties(TUIMethod):
|
|
29879
|
+
"""
|
|
29880
|
+
No help available.
|
|
29881
|
+
"""
|
|
29882
|
+
class make_a_copy(TUIMethod):
|
|
29883
|
+
"""
|
|
29884
|
+
No help available.
|
|
29885
|
+
"""
|
|
29886
|
+
class rename(TUIMethod):
|
|
29887
|
+
"""
|
|
29888
|
+
No help available.
|
|
29889
|
+
"""
|
|
29890
|
+
|
|
29143
29891
|
class case_modification(TUIMenu):
|
|
29144
29892
|
"""
|
|
29145
29893
|
No help available.
|
|
@@ -31590,8 +32338,13 @@ class main_menu(TUIMenu):
|
|
|
31590
32338
|
No help available.
|
|
31591
32339
|
"""
|
|
31592
32340
|
def __init__(self, service, version, mode, path):
|
|
32341
|
+
self.alternative_axisymmetric_formulation = self.__class__.alternative_axisymmetric_formulation(service, version, mode, path + ["alternative_axisymmetric_formulation"])
|
|
31593
32342
|
self.axis_stabilization = self.__class__.axis_stabilization(service, version, mode, path + ["axis_stabilization"])
|
|
31594
32343
|
super().__init__(service, version, mode, path)
|
|
32344
|
+
class alternative_axisymmetric_formulation(TUIMethod):
|
|
32345
|
+
"""
|
|
32346
|
+
No help available.
|
|
32347
|
+
"""
|
|
31595
32348
|
class axis_stabilization(TUIMethod):
|
|
31596
32349
|
"""
|
|
31597
32350
|
No help available.
|
|
@@ -33292,43 +34045,22 @@ class main_menu(TUIMenu):
|
|
|
33292
34045
|
def __init__(self, service, version, mode, path):
|
|
33293
34046
|
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
33294
34047
|
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
33295
|
-
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
33296
34048
|
super().__init__(service, version, mode, path)
|
|
33297
|
-
class background_color(TUIMethod):
|
|
33298
|
-
"""
|
|
33299
|
-
No help available.
|
|
33300
|
-
"""
|
|
33301
34049
|
|
|
33302
34050
|
class x(TUIMenu):
|
|
33303
34051
|
"""
|
|
33304
34052
|
No help available.
|
|
33305
34053
|
"""
|
|
33306
34054
|
def __init__(self, service, version, mode, path):
|
|
34055
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33307
34056
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
33308
34057
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
33309
34058
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
33310
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33311
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
33312
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
33313
34059
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
33314
34060
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
33315
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
33316
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
33317
34061
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
33318
34062
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
33319
34063
|
super().__init__(service, version, mode, path)
|
|
33320
|
-
class auto_range(TUIMethod):
|
|
33321
|
-
"""
|
|
33322
|
-
No help available.
|
|
33323
|
-
"""
|
|
33324
|
-
class auto_range_max(TUIMethod):
|
|
33325
|
-
"""
|
|
33326
|
-
No help available.
|
|
33327
|
-
"""
|
|
33328
|
-
class auto_range_min(TUIMethod):
|
|
33329
|
-
"""
|
|
33330
|
-
No help available.
|
|
33331
|
-
"""
|
|
33332
34064
|
class label(TUIMethod):
|
|
33333
34065
|
"""
|
|
33334
34066
|
No help available.
|
|
@@ -33337,22 +34069,46 @@ class main_menu(TUIMenu):
|
|
|
33337
34069
|
"""
|
|
33338
34070
|
No help available.
|
|
33339
34071
|
"""
|
|
33340
|
-
class
|
|
33341
|
-
"""
|
|
33342
|
-
No help available.
|
|
33343
|
-
"""
|
|
33344
|
-
class min(TUIMethod):
|
|
34072
|
+
class show_major_gridlines(TUIMethod):
|
|
33345
34073
|
"""
|
|
33346
34074
|
No help available.
|
|
33347
34075
|
"""
|
|
33348
|
-
class
|
|
34076
|
+
class show_minor_gridlines(TUIMethod):
|
|
33349
34077
|
"""
|
|
33350
34078
|
No help available.
|
|
33351
34079
|
"""
|
|
33352
|
-
|
|
34080
|
+
|
|
34081
|
+
class auto_range(TUIMenu):
|
|
33353
34082
|
"""
|
|
33354
34083
|
No help available.
|
|
33355
34084
|
"""
|
|
34085
|
+
def __init__(self, service, version, mode, path):
|
|
34086
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
34087
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
34088
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
34089
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
34090
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
34091
|
+
super().__init__(service, version, mode, path)
|
|
34092
|
+
class auto_range(TUIMethod):
|
|
34093
|
+
"""
|
|
34094
|
+
No help available.
|
|
34095
|
+
"""
|
|
34096
|
+
class max(TUIMethod):
|
|
34097
|
+
"""
|
|
34098
|
+
No help available.
|
|
34099
|
+
"""
|
|
34100
|
+
class max_auto(TUIMethod):
|
|
34101
|
+
"""
|
|
34102
|
+
No help available.
|
|
34103
|
+
"""
|
|
34104
|
+
class min(TUIMethod):
|
|
34105
|
+
"""
|
|
34106
|
+
No help available.
|
|
34107
|
+
"""
|
|
34108
|
+
class min_auto(TUIMethod):
|
|
34109
|
+
"""
|
|
34110
|
+
No help available.
|
|
34111
|
+
"""
|
|
33356
34112
|
|
|
33357
34113
|
class major_gridlines(TUIMenu):
|
|
33358
34114
|
"""
|
|
@@ -33361,8 +34117,9 @@ class main_menu(TUIMenu):
|
|
|
33361
34117
|
def __init__(self, service, version, mode, path):
|
|
33362
34118
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
33363
34119
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33364
|
-
self.
|
|
33365
|
-
self.
|
|
34120
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
34121
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
34122
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
33366
34123
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
33367
34124
|
super().__init__(service, version, mode, path)
|
|
33368
34125
|
class auto_placement(TUIMethod):
|
|
@@ -33373,11 +34130,15 @@ class main_menu(TUIMenu):
|
|
|
33373
34130
|
"""
|
|
33374
34131
|
No help available.
|
|
33375
34132
|
"""
|
|
33376
|
-
class
|
|
34133
|
+
class divisions(TUIMethod):
|
|
33377
34134
|
"""
|
|
33378
34135
|
No help available.
|
|
33379
34136
|
"""
|
|
33380
|
-
class
|
|
34137
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
34138
|
+
"""
|
|
34139
|
+
No help available.
|
|
34140
|
+
"""
|
|
34141
|
+
class units(TUIMethod):
|
|
33381
34142
|
"""
|
|
33382
34143
|
No help available.
|
|
33383
34144
|
"""
|
|
@@ -33393,8 +34154,9 @@ class main_menu(TUIMenu):
|
|
|
33393
34154
|
def __init__(self, service, version, mode, path):
|
|
33394
34155
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
33395
34156
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33396
|
-
self.
|
|
33397
|
-
self.
|
|
34157
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
34158
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
34159
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
33398
34160
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
33399
34161
|
super().__init__(service, version, mode, path)
|
|
33400
34162
|
class auto_placement(TUIMethod):
|
|
@@ -33405,11 +34167,15 @@ class main_menu(TUIMenu):
|
|
|
33405
34167
|
"""
|
|
33406
34168
|
No help available.
|
|
33407
34169
|
"""
|
|
33408
|
-
class
|
|
34170
|
+
class divisions(TUIMethod):
|
|
34171
|
+
"""
|
|
34172
|
+
No help available.
|
|
34173
|
+
"""
|
|
34174
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
33409
34175
|
"""
|
|
33410
34176
|
No help available.
|
|
33411
34177
|
"""
|
|
33412
|
-
class
|
|
34178
|
+
class units(TUIMethod):
|
|
33413
34179
|
"""
|
|
33414
34180
|
No help available.
|
|
33415
34181
|
"""
|
|
@@ -33440,31 +34206,15 @@ class main_menu(TUIMenu):
|
|
|
33440
34206
|
No help available.
|
|
33441
34207
|
"""
|
|
33442
34208
|
def __init__(self, service, version, mode, path):
|
|
34209
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33443
34210
|
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
33444
34211
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
33445
34212
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
33446
|
-
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33447
|
-
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
33448
|
-
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
33449
34213
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
33450
34214
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
33451
|
-
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
33452
|
-
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
33453
34215
|
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
33454
34216
|
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
33455
34217
|
super().__init__(service, version, mode, path)
|
|
33456
|
-
class auto_range(TUIMethod):
|
|
33457
|
-
"""
|
|
33458
|
-
No help available.
|
|
33459
|
-
"""
|
|
33460
|
-
class auto_range_max(TUIMethod):
|
|
33461
|
-
"""
|
|
33462
|
-
No help available.
|
|
33463
|
-
"""
|
|
33464
|
-
class auto_range_min(TUIMethod):
|
|
33465
|
-
"""
|
|
33466
|
-
No help available.
|
|
33467
|
-
"""
|
|
33468
34218
|
class label(TUIMethod):
|
|
33469
34219
|
"""
|
|
33470
34220
|
No help available.
|
|
@@ -33473,22 +34223,46 @@ class main_menu(TUIMenu):
|
|
|
33473
34223
|
"""
|
|
33474
34224
|
No help available.
|
|
33475
34225
|
"""
|
|
33476
|
-
class
|
|
33477
|
-
"""
|
|
33478
|
-
No help available.
|
|
33479
|
-
"""
|
|
33480
|
-
class min(TUIMethod):
|
|
34226
|
+
class show_major_gridlines(TUIMethod):
|
|
33481
34227
|
"""
|
|
33482
34228
|
No help available.
|
|
33483
34229
|
"""
|
|
33484
|
-
class
|
|
34230
|
+
class show_minor_gridlines(TUIMethod):
|
|
33485
34231
|
"""
|
|
33486
34232
|
No help available.
|
|
33487
34233
|
"""
|
|
33488
|
-
|
|
34234
|
+
|
|
34235
|
+
class auto_range(TUIMenu):
|
|
33489
34236
|
"""
|
|
33490
34237
|
No help available.
|
|
33491
34238
|
"""
|
|
34239
|
+
def __init__(self, service, version, mode, path):
|
|
34240
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
34241
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
34242
|
+
self.max_auto = self.__class__.max_auto(service, version, mode, path + ["max_auto"])
|
|
34243
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
34244
|
+
self.min_auto = self.__class__.min_auto(service, version, mode, path + ["min_auto"])
|
|
34245
|
+
super().__init__(service, version, mode, path)
|
|
34246
|
+
class auto_range(TUIMethod):
|
|
34247
|
+
"""
|
|
34248
|
+
No help available.
|
|
34249
|
+
"""
|
|
34250
|
+
class max(TUIMethod):
|
|
34251
|
+
"""
|
|
34252
|
+
No help available.
|
|
34253
|
+
"""
|
|
34254
|
+
class max_auto(TUIMethod):
|
|
34255
|
+
"""
|
|
34256
|
+
No help available.
|
|
34257
|
+
"""
|
|
34258
|
+
class min(TUIMethod):
|
|
34259
|
+
"""
|
|
34260
|
+
No help available.
|
|
34261
|
+
"""
|
|
34262
|
+
class min_auto(TUIMethod):
|
|
34263
|
+
"""
|
|
34264
|
+
No help available.
|
|
34265
|
+
"""
|
|
33492
34266
|
|
|
33493
34267
|
class major_gridlines(TUIMenu):
|
|
33494
34268
|
"""
|
|
@@ -33497,8 +34271,9 @@ class main_menu(TUIMenu):
|
|
|
33497
34271
|
def __init__(self, service, version, mode, path):
|
|
33498
34272
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
33499
34273
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33500
|
-
self.
|
|
33501
|
-
self.
|
|
34274
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
34275
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
34276
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
33502
34277
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
33503
34278
|
super().__init__(service, version, mode, path)
|
|
33504
34279
|
class auto_placement(TUIMethod):
|
|
@@ -33509,11 +34284,15 @@ class main_menu(TUIMenu):
|
|
|
33509
34284
|
"""
|
|
33510
34285
|
No help available.
|
|
33511
34286
|
"""
|
|
33512
|
-
class
|
|
34287
|
+
class divisions(TUIMethod):
|
|
34288
|
+
"""
|
|
34289
|
+
No help available.
|
|
34290
|
+
"""
|
|
34291
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
33513
34292
|
"""
|
|
33514
34293
|
No help available.
|
|
33515
34294
|
"""
|
|
33516
|
-
class
|
|
34295
|
+
class units(TUIMethod):
|
|
33517
34296
|
"""
|
|
33518
34297
|
No help available.
|
|
33519
34298
|
"""
|
|
@@ -33529,8 +34308,9 @@ class main_menu(TUIMenu):
|
|
|
33529
34308
|
def __init__(self, service, version, mode, path):
|
|
33530
34309
|
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
33531
34310
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33532
|
-
self.
|
|
33533
|
-
self.
|
|
34311
|
+
self.divisions = self.__class__.divisions(service, version, mode, path + ["divisions"])
|
|
34312
|
+
self.specify_divisions_instead_of_units = self.__class__.specify_divisions_instead_of_units(service, version, mode, path + ["specify_divisions_instead_of_units"])
|
|
34313
|
+
self.units = self.__class__.units(service, version, mode, path + ["units"])
|
|
33534
34314
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
33535
34315
|
super().__init__(service, version, mode, path)
|
|
33536
34316
|
class auto_placement(TUIMethod):
|
|
@@ -33541,11 +34321,15 @@ class main_menu(TUIMenu):
|
|
|
33541
34321
|
"""
|
|
33542
34322
|
No help available.
|
|
33543
34323
|
"""
|
|
33544
|
-
class
|
|
34324
|
+
class divisions(TUIMethod):
|
|
34325
|
+
"""
|
|
34326
|
+
No help available.
|
|
34327
|
+
"""
|
|
34328
|
+
class specify_divisions_instead_of_units(TUIMethod):
|
|
33545
34329
|
"""
|
|
33546
34330
|
No help available.
|
|
33547
34331
|
"""
|
|
33548
|
-
class
|
|
34332
|
+
class units(TUIMethod):
|
|
33549
34333
|
"""
|
|
33550
34334
|
No help available.
|
|
33551
34335
|
"""
|
|
@@ -33576,19 +34360,39 @@ class main_menu(TUIMenu):
|
|
|
33576
34360
|
No help available.
|
|
33577
34361
|
"""
|
|
33578
34362
|
def __init__(self, service, version, mode, path):
|
|
34363
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
34364
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
33579
34365
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
34366
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
33580
34367
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
33581
|
-
self.
|
|
34368
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
34369
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
33582
34370
|
super().__init__(service, version, mode, path)
|
|
34371
|
+
class create(TUIMethod):
|
|
34372
|
+
"""
|
|
34373
|
+
No help available.
|
|
34374
|
+
"""
|
|
34375
|
+
class delete(TUIMethod):
|
|
34376
|
+
"""
|
|
34377
|
+
No help available.
|
|
34378
|
+
"""
|
|
33583
34379
|
class edit(TUIMethod):
|
|
33584
34380
|
"""
|
|
33585
34381
|
Edit curves object.
|
|
33586
34382
|
"""
|
|
34383
|
+
class list(TUIMethod):
|
|
34384
|
+
"""
|
|
34385
|
+
No help available.
|
|
34386
|
+
"""
|
|
33587
34387
|
class list_properties(TUIMethod):
|
|
33588
34388
|
"""
|
|
33589
34389
|
No help available.
|
|
33590
34390
|
"""
|
|
33591
|
-
class
|
|
34391
|
+
class make_a_copy(TUIMethod):
|
|
34392
|
+
"""
|
|
34393
|
+
No help available.
|
|
34394
|
+
"""
|
|
34395
|
+
class rename(TUIMethod):
|
|
33592
34396
|
"""
|
|
33593
34397
|
No help available.
|
|
33594
34398
|
"""
|
|
@@ -33729,6 +34533,7 @@ class main_menu(TUIMenu):
|
|
|
33729
34533
|
self.volume = self.__class__.volume(service, version, mode, path + ["volume"])
|
|
33730
34534
|
self.compute = self.__class__.compute(service, version, mode, path + ["compute"])
|
|
33731
34535
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
34536
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
33732
34537
|
self.delete_all = self.__class__.delete_all(service, version, mode, path + ["delete_all"])
|
|
33733
34538
|
super().__init__(service, version, mode, path)
|
|
33734
34539
|
class compute(TUIMethod):
|
|
@@ -33739,6 +34544,10 @@ class main_menu(TUIMenu):
|
|
|
33739
34544
|
"""
|
|
33740
34545
|
No help available.
|
|
33741
34546
|
"""
|
|
34547
|
+
class delete(TUIMethod):
|
|
34548
|
+
"""
|
|
34549
|
+
No help available.
|
|
34550
|
+
"""
|
|
33742
34551
|
class delete_all(TUIMethod):
|
|
33743
34552
|
"""
|
|
33744
34553
|
No help available.
|
|
@@ -37612,8 +38421,13 @@ class main_menu(TUIMenu):
|
|
|
37612
38421
|
No help available.
|
|
37613
38422
|
"""
|
|
37614
38423
|
def __init__(self, service, version, mode, path):
|
|
38424
|
+
self.alternative_axisymmetric_formulation = self.__class__.alternative_axisymmetric_formulation(service, version, mode, path + ["alternative_axisymmetric_formulation"])
|
|
37615
38425
|
self.axis_stabilization = self.__class__.axis_stabilization(service, version, mode, path + ["axis_stabilization"])
|
|
37616
38426
|
super().__init__(service, version, mode, path)
|
|
38427
|
+
class alternative_axisymmetric_formulation(TUIMethod):
|
|
38428
|
+
"""
|
|
38429
|
+
No help available.
|
|
38430
|
+
"""
|
|
37617
38431
|
class axis_stabilization(TUIMethod):
|
|
37618
38432
|
"""
|
|
37619
38433
|
No help available.
|
|
@@ -39510,9 +40324,9 @@ class main_menu(TUIMenu):
|
|
|
39510
40324
|
Enters the menu for setting multiphase-specific time constraints.
|
|
39511
40325
|
"""
|
|
39512
40326
|
def __init__(self, service, version, mode, path):
|
|
40327
|
+
self.time_scale_options = self.__class__.time_scale_options(service, version, mode, path + ["time_scale_options"])
|
|
39513
40328
|
self.moving_mesh_cfl_constraint = self.__class__.moving_mesh_cfl_constraint(service, version, mode, path + ["moving_mesh_cfl_constraint"])
|
|
39514
40329
|
self.physics_based_constraint = self.__class__.physics_based_constraint(service, version, mode, path + ["physics_based_constraint"])
|
|
39515
|
-
self.time_scale_options = self.__class__.time_scale_options(service, version, mode, path + ["time_scale_options"])
|
|
39516
40330
|
self.verbosity = self.__class__.verbosity(service, version, mode, path + ["verbosity"])
|
|
39517
40331
|
super().__init__(service, version, mode, path)
|
|
39518
40332
|
class moving_mesh_cfl_constraint(TUIMethod):
|
|
@@ -39523,15 +40337,38 @@ class main_menu(TUIMenu):
|
|
|
39523
40337
|
"""
|
|
39524
40338
|
Enables/disables the physics-driven time-step constraints.
|
|
39525
40339
|
"""
|
|
39526
|
-
class time_scale_options(TUIMethod):
|
|
39527
|
-
"""
|
|
39528
|
-
Enters the menu for choosing the time-scale options. This menu becomes available after you enable the physics-driven time-step constraints using the solve/set/transient-controls/multiphase-specific-time-constraints/physics-based-constraint? text command.
|
|
39529
|
-
"""
|
|
39530
40340
|
class verbosity(TUIMethod):
|
|
39531
40341
|
"""
|
|
39532
40342
|
When enabled, various time scales (depending on the selection) are printed to the console window at every time step. This text command is available with the moving mesh CFL constraint and with the physics-based constraint.
|
|
39533
40343
|
"""
|
|
39534
40344
|
|
|
40345
|
+
class time_scale_options(TUIMenu):
|
|
40346
|
+
"""
|
|
40347
|
+
Enters the menu for choosing the time-scale options. This menu becomes available after you enable the physics-driven time-step constraints using the solve/set/transient-controls/multiphase-specific-time-constraints/physics-based-constraint? text command.
|
|
40348
|
+
"""
|
|
40349
|
+
def __init__(self, service, version, mode, path):
|
|
40350
|
+
self.acoustic_scale = self.__class__.acoustic_scale(service, version, mode, path + ["acoustic_scale"])
|
|
40351
|
+
self.gravity_scale = self.__class__.gravity_scale(service, version, mode, path + ["gravity_scale"])
|
|
40352
|
+
self.surface_tension_scale = self.__class__.surface_tension_scale(service, version, mode, path + ["surface_tension_scale"])
|
|
40353
|
+
self.viscous_scale = self.__class__.viscous_scale(service, version, mode, path + ["viscous_scale"])
|
|
40354
|
+
super().__init__(service, version, mode, path)
|
|
40355
|
+
class acoustic_scale(TUIMethod):
|
|
40356
|
+
"""
|
|
40357
|
+
Allows you to Include the acoustic time scale. This option is available only for compressible flows.
|
|
40358
|
+
"""
|
|
40359
|
+
class gravity_scale(TUIMethod):
|
|
40360
|
+
"""
|
|
40361
|
+
Allows you to Include the gravitational time scale. This option is available only if gravity is enabled.
|
|
40362
|
+
"""
|
|
40363
|
+
class surface_tension_scale(TUIMethod):
|
|
40364
|
+
"""
|
|
40365
|
+
Allows you to Include the surface-tension-driven time scale. This option is available only if the surface tension force modeling is enabled.
|
|
40366
|
+
"""
|
|
40367
|
+
class viscous_scale(TUIMethod):
|
|
40368
|
+
"""
|
|
40369
|
+
Allows you to Include the viscous time scale. This option is disabled by default. This command is not available with inviscid flows.
|
|
40370
|
+
"""
|
|
40371
|
+
|
|
39535
40372
|
class warped_face_gradient_correction(TUIMenu):
|
|
39536
40373
|
"""
|
|
39537
40374
|
Enters the warped-face gradient correction menu.
|