ansys-fluent-core 0.27.dev1__py3-none-any.whl → 0.28.dev0__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.

Files changed (188) hide show
  1. ansys/fluent/core/__init__.py +22 -9
  2. ansys/fluent/core/_version.py +5 -2
  3. ansys/fluent/core/codegen/__init__.py +0 -3
  4. ansys/fluent/core/codegen/allapigen.py +1 -5
  5. ansys/fluent/core/codegen/builtin_settingsgen.py +44 -10
  6. ansys/fluent/core/codegen/datamodelgen.py +53 -12
  7. ansys/fluent/core/codegen/settingsgen.py +21 -12
  8. ansys/fluent/core/codegen/settingsgen_old.py +2 -2
  9. ansys/fluent/core/codegen/tuigen.py +1 -1
  10. ansys/fluent/core/codegen/write_settings_yaml.py +3 -4
  11. ansys/fluent/core/data_model_cache.py +132 -70
  12. ansys/fluent/core/docs/README.rst +2 -2
  13. ansys/fluent/core/examples/downloads.py +3 -5
  14. ansys/fluent/core/exceptions.py +1 -0
  15. ansys/fluent/core/file_session.py +59 -131
  16. ansys/fluent/core/filereader/case_file.py +17 -17
  17. ansys/fluent/core/filereader/casereader.py +2 -1
  18. ansys/fluent/core/filereader/data_file.py +7 -7
  19. ansys/fluent/core/filereader/lispy.py +6 -1
  20. ansys/fluent/core/fluent_connection.py +35 -7
  21. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  22. ansys/fluent/core/generated/datamodel_222/PMFileManagement.py +2 -2
  23. ansys/fluent/core/generated/datamodel_222/PartManagement.py +28 -28
  24. ansys/fluent/core/generated/datamodel_222/meshing.py +301 -301
  25. ansys/fluent/core/generated/datamodel_222/workflow.py +9 -9
  26. ansys/fluent/core/generated/datamodel_231/PMFileManagement.py +2 -2
  27. ansys/fluent/core/generated/datamodel_231/PartManagement.py +55 -55
  28. ansys/fluent/core/generated/datamodel_231/flicing.py +51 -51
  29. ansys/fluent/core/generated/datamodel_231/meshing.py +317 -317
  30. ansys/fluent/core/generated/datamodel_231/solverworkflow.py +51 -51
  31. ansys/fluent/core/generated/datamodel_231/workflow.py +9 -9
  32. ansys/fluent/core/generated/datamodel_232/PMFileManagement.py +2 -2
  33. ansys/fluent/core/generated/datamodel_232/PartManagement.py +55 -55
  34. ansys/fluent/core/generated/datamodel_232/flicing.py +51 -51
  35. ansys/fluent/core/generated/datamodel_232/meshing.py +335 -335
  36. ansys/fluent/core/generated/datamodel_232/solverworkflow.py +58 -58
  37. ansys/fluent/core/generated/datamodel_232/workflow.py +9 -9
  38. ansys/fluent/core/generated/datamodel_241/PMFileManagement.py +2 -2
  39. ansys/fluent/core/generated/datamodel_241/PartManagement.py +57 -57
  40. ansys/fluent/core/generated/datamodel_241/flicing.py +51 -51
  41. ansys/fluent/core/generated/datamodel_241/meshing.py +361 -361
  42. ansys/fluent/core/generated/datamodel_241/solverworkflow.py +58 -58
  43. ansys/fluent/core/generated/datamodel_241/workflow.py +9 -9
  44. ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py +240 -240
  45. ansys/fluent/core/generated/datamodel_242/PMFileManagement.py +2 -2
  46. ansys/fluent/core/generated/datamodel_242/PartManagement.py +60 -60
  47. ansys/fluent/core/generated/datamodel_242/flicing.py +51 -51
  48. ansys/fluent/core/generated/datamodel_242/meshing.py +371 -371
  49. ansys/fluent/core/generated/datamodel_242/solverworkflow.py +58 -58
  50. ansys/fluent/core/generated/datamodel_242/workflow.py +9 -9
  51. ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py +244 -244
  52. ansys/fluent/core/generated/datamodel_251/PMFileManagement.py +2 -2
  53. ansys/fluent/core/generated/datamodel_251/PartManagement.py +60 -60
  54. ansys/fluent/core/generated/datamodel_251/flicing.py +51 -51
  55. ansys/fluent/core/generated/datamodel_251/meshing.py +384 -382
  56. ansys/fluent/core/generated/datamodel_251/preferences.py +7 -0
  57. ansys/fluent/core/generated/datamodel_251/solverworkflow.py +58 -58
  58. ansys/fluent/core/generated/datamodel_251/workflow.py +10 -10
  59. ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +3664 -0
  60. ansys/fluent/core/generated/datamodel_252/PMFileManagement.py +288 -0
  61. ansys/fluent/core/generated/datamodel_252/PartManagement.py +2588 -0
  62. ansys/fluent/core/generated/datamodel_252/flicing.py +7972 -0
  63. ansys/fluent/core/generated/datamodel_252/meshing.py +2644 -0
  64. ansys/fluent/core/generated/datamodel_252/preferences.py +2760 -0
  65. ansys/fluent/core/generated/datamodel_252/solverworkflow.py +479 -0
  66. ansys/fluent/core/generated/datamodel_252/workflow.py +466 -0
  67. ansys/fluent/core/generated/fluent_version_251.py +4 -4
  68. ansys/fluent/core/generated/fluent_version_252.py +5 -0
  69. ansys/fluent/core/generated/meshing/tui_251.py +1139 -1179
  70. ansys/fluent/core/generated/meshing/tui_252.py +10181 -0
  71. ansys/fluent/core/generated/solver/settings_222.py +3 -3
  72. ansys/fluent/core/generated/solver/settings_231.py +4 -4
  73. ansys/fluent/core/generated/solver/settings_232.py +5 -5
  74. ansys/fluent/core/generated/solver/settings_241.py +5 -5
  75. ansys/fluent/core/generated/solver/settings_242.py +1185 -1185
  76. ansys/fluent/core/generated/solver/settings_251.py +1847 -1652
  77. ansys/fluent/core/generated/solver/settings_251.pyi +237 -211
  78. ansys/fluent/core/generated/solver/settings_252.py +90369 -0
  79. ansys/fluent/core/generated/solver/settings_252.pyi +63778 -0
  80. ansys/fluent/core/generated/solver/settings_builtin.py +612 -1
  81. ansys/fluent/core/generated/solver/settings_builtin.pyi +235 -0
  82. ansys/fluent/core/generated/solver/tui_251.py +2283 -2103
  83. ansys/fluent/core/generated/solver/tui_252.py +37720 -0
  84. ansys/fluent/core/journaling.py +1 -1
  85. ansys/fluent/core/launcher/error_handler.py +3 -0
  86. ansys/fluent/core/launcher/fluent_container.py +5 -0
  87. ansys/fluent/core/launcher/launcher.py +1 -2
  88. ansys/fluent/core/launcher/launcher_utils.py +17 -6
  89. ansys/fluent/core/launcher/process_launch_string.py +3 -3
  90. ansys/fluent/core/launcher/pyfluent_enums.py +1 -1
  91. ansys/fluent/core/launcher/slurm_launcher.py +2 -1
  92. ansys/fluent/core/launcher/standalone_launcher.py +11 -5
  93. ansys/fluent/core/launcher/watchdog.py +1 -1
  94. ansys/fluent/core/launcher/watchdog_exec +6 -3
  95. ansys/fluent/core/logging.py +1 -5
  96. ansys/fluent/core/parametric.py +6 -3
  97. ansys/fluent/core/post_objects/meta.py +1 -39
  98. ansys/fluent/core/post_objects/post_helper.py +4 -3
  99. ansys/fluent/core/post_objects/post_object_definitions.py +12 -7
  100. ansys/fluent/core/post_objects/post_objects_container.py +39 -2
  101. ansys/fluent/core/rpvars.py +2 -1
  102. ansys/fluent/core/scheduler/machine_list.py +3 -1
  103. ansys/fluent/core/search.py +109 -262
  104. ansys/fluent/core/services/__init__.py +3 -0
  105. ansys/fluent/core/services/api_upgrade.py +1 -0
  106. ansys/fluent/core/services/batch_ops.py +3 -1
  107. ansys/fluent/core/services/datamodel_se.py +37 -30
  108. ansys/fluent/core/services/datamodel_tui.py +8 -3
  109. ansys/fluent/core/services/deprecated_field_data.py +691 -0
  110. ansys/fluent/core/services/field_data.py +67 -357
  111. ansys/fluent/core/services/interceptors.py +6 -4
  112. ansys/fluent/core/services/reduction.py +1 -2
  113. ansys/fluent/core/services/scheme_eval.py +2 -3
  114. ansys/fluent/core/services/solution_variables.py +46 -48
  115. ansys/fluent/core/session.py +6 -4
  116. ansys/fluent/core/session_meshing.pyi +5 -0
  117. ansys/fluent/core/session_pure_meshing.pyi +4 -1
  118. ansys/fluent/core/session_solver_lite.py +2 -1
  119. ansys/fluent/core/solver/flobject.py +179 -207
  120. ansys/fluent/core/solver/flunits.py +65 -56
  121. ansys/fluent/core/solver/function/reduction.py +9 -29
  122. ansys/fluent/core/solver/settings_builtin_bases.py +28 -22
  123. ansys/fluent/core/solver/settings_builtin_data.py +105 -1
  124. ansys/fluent/core/solver/settings_external.py +0 -28
  125. ansys/fluent/core/streaming_services/field_data_streaming.py +1 -0
  126. ansys/fluent/core/streaming_services/monitor_streaming.py +0 -1
  127. ansys/fluent/core/systemcoupling.py +145 -14
  128. ansys/fluent/core/utils/__init__.py +18 -2
  129. ansys/fluent/core/utils/dump_session_data.py +7 -4
  130. ansys/fluent/core/utils/execution.py +2 -2
  131. ansys/fluent/core/utils/file_transfer_service.py +37 -42
  132. ansys/fluent/core/utils/fluent_version.py +20 -2
  133. ansys/fluent/core/utils/networking.py +39 -1
  134. ansys/fluent/core/workflow.py +3 -15
  135. ansys/fluent/tests/conftest.py +89 -7
  136. ansys/fluent/tests/fluent/test_version/test.py +2 -0
  137. ansys/fluent/tests/fluent_fixtures.py +195 -0
  138. ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +7 -7
  139. ansys/fluent/tests/parametric/test_parametric_workflow.py +14 -4
  140. ansys/fluent/tests/test_builtin_settings.py +28 -0
  141. ansys/fluent/tests/test_cad_to_post_ftm.py +1 -3
  142. ansys/fluent/tests/test_cad_to_post_wtm.py +1 -1
  143. ansys/fluent/tests/test_casereader.py +1 -1
  144. ansys/fluent/tests/test_codegen.py +116 -6
  145. ansys/fluent/tests/test_data_model_cache.py +1 -1
  146. ansys/fluent/tests/test_datamodel_service.py +14 -19
  147. ansys/fluent/tests/test_field_data.py +93 -45
  148. ansys/fluent/tests/test_file_session.py +32 -29
  149. ansys/fluent/tests/test_flobject.py +16 -58
  150. ansys/fluent/tests/test_fluent_fixes.py +5 -5
  151. ansys/fluent/tests/test_fluent_session.py +11 -8
  152. ansys/fluent/tests/test_fluent_version.py +1 -1
  153. ansys/fluent/tests/test_launcher.py +22 -5
  154. ansys/fluent/tests/test_launcher_remote.py +80 -4
  155. ansys/fluent/tests/test_meshing_utilities.py +93 -44
  156. ansys/fluent/tests/test_meshing_workflow.py +6 -6
  157. ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +1 -1
  158. ansys/fluent/tests/test_new_meshing_workflow.py +42 -3
  159. ansys/fluent/tests/test_preferences.py +6 -6
  160. ansys/fluent/tests/test_reduction.py +61 -30
  161. ansys/fluent/tests/test_rp_vars.py +1 -1
  162. ansys/fluent/tests/test_search.py +53 -200
  163. ansys/fluent/tests/test_session.py +18 -13
  164. ansys/fluent/tests/test_settings_api.py +93 -29
  165. ansys/fluent/tests/test_settings_reader.py +1 -1
  166. ansys/fluent/tests/test_solver_monitors.py +1 -1
  167. ansys/fluent/tests/test_solvermode/test_calculationactivities.py +4 -4
  168. ansys/fluent/tests/test_solvermode/test_controls.py +3 -3
  169. ansys/fluent/tests/test_solvermode/test_methods.py +1 -1
  170. ansys/fluent/tests/test_solvermode/test_models.py +3 -3
  171. ansys/fluent/tests/test_systemcoupling.py +33 -5
  172. ansys/fluent/tests/test_topy.py +2 -2
  173. ansys/fluent/tests/test_tui_api.py +5 -5
  174. ansys/fluent/tests/test_utils.py +1 -1
  175. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/METADATA +6 -17
  176. ansys_fluent_core-0.28.dev0.dist-info/RECORD +291 -0
  177. ansys/fluent/core/generated/api_tree_222.pickle +0 -0
  178. ansys/fluent/core/generated/api_tree_231.pickle +0 -0
  179. ansys/fluent/core/generated/api_tree_232.pickle +0 -0
  180. ansys/fluent/core/generated/api_tree_241.pickle +0 -0
  181. ansys/fluent/core/generated/api_tree_242.pickle +0 -0
  182. ansys/fluent/core/generated/api_tree_251.pickle +0 -0
  183. ansys/fluent/tests/test_tests_util.py +0 -47
  184. ansys/fluent/tests/util/__init__.py +0 -38
  185. ansys_fluent_core-0.27.dev1.dist-info/RECORD +0 -283
  186. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/AUTHORS +0 -0
  187. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/LICENSE +0 -0
  188. {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,2760 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+ # pylint: disable=line-too-long
5
+
6
+ from ansys.fluent.core.services.datamodel_se import (
7
+ PyMenu,
8
+ PyParameter,
9
+ PyTextual,
10
+ PyNumerical,
11
+ PyDictionary,
12
+ PyNamedObjectContainer,
13
+ PyCommand,
14
+ PyQuery
15
+ )
16
+
17
+
18
+ class Root(PyMenu):
19
+ """
20
+ Singleton Root.
21
+ """
22
+ def __init__(self, service, rules, path):
23
+ self.Appearance = self.__class__.Appearance(service, rules, path + [("Appearance", "")])
24
+ self.GPUApp = self.__class__.GPUApp(service, rules, path + [("GPUApp", "")])
25
+ self.General = self.__class__.General(service, rules, path + [("General", "")])
26
+ self.Graphics = self.__class__.Graphics(service, rules, path + [("Graphics", "")])
27
+ self.MatProApp = self.__class__.MatProApp(service, rules, path + [("MatProApp", "")])
28
+ self.MeshingWorkflow = self.__class__.MeshingWorkflow(service, rules, path + [("MeshingWorkflow", "")])
29
+ self.Navigation = self.__class__.Navigation(service, rules, path + [("Navigation", "")])
30
+ self.ParametricStudy = self.__class__.ParametricStudy(service, rules, path + [("ParametricStudy", "")])
31
+ self.PrjApp = self.__class__.PrjApp(service, rules, path + [("PrjApp", "")])
32
+ self.PythonConsole = self.__class__.PythonConsole(service, rules, path + [("PythonConsole", "")])
33
+ self.Simulation = self.__class__.Simulation(service, rules, path + [("Simulation", "")])
34
+ self.TurboWorkflow = self.__class__.TurboWorkflow(service, rules, path + [("TurboWorkflow", "")])
35
+ super().__init__(service, rules, path)
36
+
37
+ class Appearance(PyMenu):
38
+ """
39
+ Singleton Appearance.
40
+ """
41
+ def __init__(self, service, rules, path):
42
+ self.AnsysLogo = self.__class__.AnsysLogo(service, rules, path + [("AnsysLogo", "")])
43
+ self.Charts = self.__class__.Charts(service, rules, path + [("Charts", "")])
44
+ self.Selections = self.__class__.Selections(service, rules, path + [("Selections", "")])
45
+ self.AllowInterfaceBoundsFlags = self.__class__.AllowInterfaceBoundsFlags(service, rules, path + [("AllowInterfaceBoundsFlags", "")])
46
+ self.ApplicationFontSize = self.__class__.ApplicationFontSize(service, rules, path + [("ApplicationFontSize", "")])
47
+ self.AxisTriad = self.__class__.AxisTriad(service, rules, path + [("AxisTriad", "")])
48
+ self.ColorTheme = self.__class__.ColorTheme(service, rules, path + [("ColorTheme", "")])
49
+ self.Completer = self.__class__.Completer(service, rules, path + [("Completer", "")])
50
+ self.CustomTitleBar = self.__class__.CustomTitleBar(service, rules, path + [("CustomTitleBar", "")])
51
+ self.DefaultView = self.__class__.DefaultView(service, rules, path + [("DefaultView", "")])
52
+ self.GraphicsBackgroundColor1 = self.__class__.GraphicsBackgroundColor1(service, rules, path + [("GraphicsBackgroundColor1", "")])
53
+ self.GraphicsBackgroundColor2 = self.__class__.GraphicsBackgroundColor2(service, rules, path + [("GraphicsBackgroundColor2", "")])
54
+ self.GraphicsBackgroundStyle = self.__class__.GraphicsBackgroundStyle(service, rules, path + [("GraphicsBackgroundStyle", "")])
55
+ self.GraphicsColorTheme = self.__class__.GraphicsColorTheme(service, rules, path + [("GraphicsColorTheme", "")])
56
+ self.GraphicsDefaultManualFaceColor = self.__class__.GraphicsDefaultManualFaceColor(service, rules, path + [("GraphicsDefaultManualFaceColor", "")])
57
+ self.GraphicsDefaultManualNodeColor = self.__class__.GraphicsDefaultManualNodeColor(service, rules, path + [("GraphicsDefaultManualNodeColor", "")])
58
+ self.GraphicsEdgeColor = self.__class__.GraphicsEdgeColor(service, rules, path + [("GraphicsEdgeColor", "")])
59
+ self.GraphicsForegroundColor = self.__class__.GraphicsForegroundColor(service, rules, path + [("GraphicsForegroundColor", "")])
60
+ self.GraphicsPartitionBoundaryColor = self.__class__.GraphicsPartitionBoundaryColor(service, rules, path + [("GraphicsPartitionBoundaryColor", "")])
61
+ self.GraphicsSurfaceColor = self.__class__.GraphicsSurfaceColor(service, rules, path + [("GraphicsSurfaceColor", "")])
62
+ self.GraphicsTitleWindowFramecolor = self.__class__.GraphicsTitleWindowFramecolor(service, rules, path + [("GraphicsTitleWindowFramecolor", "")])
63
+ self.GraphicsView = self.__class__.GraphicsView(service, rules, path + [("GraphicsView", "")])
64
+ self.GraphicsWallFaceColor = self.__class__.GraphicsWallFaceColor(service, rules, path + [("GraphicsWallFaceColor", "")])
65
+ self.GroupByTreeView = self.__class__.GroupByTreeView(service, rules, path + [("GroupByTreeView", "")])
66
+ self.GroupPhysicsByTreeView = self.__class__.GroupPhysicsByTreeView(service, rules, path + [("GroupPhysicsByTreeView", "")])
67
+ self.ModelColorScheme = self.__class__.ModelColorScheme(service, rules, path + [("ModelColorScheme", "")])
68
+ self.NumberOfFilesRecentlyUsed = self.__class__.NumberOfFilesRecentlyUsed(service, rules, path + [("NumberOfFilesRecentlyUsed", "")])
69
+ self.NumberOfPastelColors = self.__class__.NumberOfPastelColors(service, rules, path + [("NumberOfPastelColors", "")])
70
+ self.PastelColorSaturation = self.__class__.PastelColorSaturation(service, rules, path + [("PastelColorSaturation", "")])
71
+ self.PastelColorValue = self.__class__.PastelColorValue(service, rules, path + [("PastelColorValue", "")])
72
+ self.QuickPropertyView = self.__class__.QuickPropertyView(service, rules, path + [("QuickPropertyView", "")])
73
+ self.Ruler = self.__class__.Ruler(service, rules, path + [("Ruler", "")])
74
+ self.ShowEnabledModels = self.__class__.ShowEnabledModels(service, rules, path + [("ShowEnabledModels", "")])
75
+ self.ShowInterfaceNonOverlappingBoundaries = self.__class__.ShowInterfaceNonOverlappingBoundaries(service, rules, path + [("ShowInterfaceNonOverlappingBoundaries", "")])
76
+ self.ShowModelEdges = self.__class__.ShowModelEdges(service, rules, path + [("ShowModelEdges", "")])
77
+ self.SolutionModeEdgeColorInMeshingMode = self.__class__.SolutionModeEdgeColorInMeshingMode(service, rules, path + [("SolutionModeEdgeColorInMeshingMode", "")])
78
+ self.SurfaceEmissivity = self.__class__.SurfaceEmissivity(service, rules, path + [("SurfaceEmissivity", "")])
79
+ self.SurfaceSpecularity = self.__class__.SurfaceSpecularity(service, rules, path + [("SurfaceSpecularity", "")])
80
+ self.SurfaceSpecularityForContours = self.__class__.SurfaceSpecularityForContours(service, rules, path + [("SurfaceSpecularityForContours", "")])
81
+ self.Titles = self.__class__.Titles(service, rules, path + [("Titles", "")])
82
+ self.TitlesBorderOffset = self.__class__.TitlesBorderOffset(service, rules, path + [("TitlesBorderOffset", "")])
83
+ super().__init__(service, rules, path)
84
+
85
+ class AnsysLogo(PyMenu):
86
+ """
87
+ Singleton AnsysLogo.
88
+ """
89
+ def __init__(self, service, rules, path):
90
+ self.Color = self.__class__.Color(service, rules, path + [("Color", "")])
91
+ self.Visible = self.__class__.Visible(service, rules, path + [("Visible", "")])
92
+ super().__init__(service, rules, path)
93
+
94
+ class Color(PyTextual):
95
+ """
96
+ Parameter Color of value type str.
97
+ """
98
+ pass
99
+
100
+ class Visible(PyParameter):
101
+ """
102
+ Parameter Visible of value type bool.
103
+ """
104
+ pass
105
+
106
+ class Charts(PyMenu):
107
+ """
108
+ Singleton Charts.
109
+ """
110
+ def __init__(self, service, rules, path):
111
+ self.Font = self.__class__.Font(service, rules, path + [("Font", "")])
112
+ self.TextColor = self.__class__.TextColor(service, rules, path + [("TextColor", "")])
113
+ self.CurveColors = self.__class__.CurveColors(service, rules, path + [("CurveColors", "")])
114
+ self.EnableOpenGLForModernPlots = self.__class__.EnableOpenGLForModernPlots(service, rules, path + [("EnableOpenGLForModernPlots", "")])
115
+ self.LegendAlignment = self.__class__.LegendAlignment(service, rules, path + [("LegendAlignment", "")])
116
+ self.LegendVisibility = self.__class__.LegendVisibility(service, rules, path + [("LegendVisibility", "")])
117
+ self.ModernPlotsEnabled = self.__class__.ModernPlotsEnabled(service, rules, path + [("ModernPlotsEnabled", "")])
118
+ self.ModernPlotsPointsThreshold = self.__class__.ModernPlotsPointsThreshold(service, rules, path + [("ModernPlotsPointsThreshold", "")])
119
+ self.PlotsBehavior = self.__class__.PlotsBehavior(service, rules, path + [("PlotsBehavior", "")])
120
+ self.PrintPlotData = self.__class__.PrintPlotData(service, rules, path + [("PrintPlotData", "")])
121
+ self.PrintResidualsData = self.__class__.PrintResidualsData(service, rules, path + [("PrintResidualsData", "")])
122
+ self.Threshold = self.__class__.Threshold(service, rules, path + [("Threshold", "")])
123
+ self.TooltipInterpolation = self.__class__.TooltipInterpolation(service, rules, path + [("TooltipInterpolation", "")])
124
+ super().__init__(service, rules, path)
125
+
126
+ class Font(PyMenu):
127
+ """
128
+ Singleton Font.
129
+ """
130
+ def __init__(self, service, rules, path):
131
+ self.Axes = self.__class__.Axes(service, rules, path + [("Axes", "")])
132
+ self.AxesTitles = self.__class__.AxesTitles(service, rules, path + [("AxesTitles", "")])
133
+ self.Legend = self.__class__.Legend(service, rules, path + [("Legend", "")])
134
+ self.Title = self.__class__.Title(service, rules, path + [("Title", "")])
135
+ super().__init__(service, rules, path)
136
+
137
+ class Axes(PyTextual):
138
+ """
139
+ Parameter Axes of value type str.
140
+ """
141
+ pass
142
+
143
+ class AxesTitles(PyTextual):
144
+ """
145
+ Parameter AxesTitles of value type str.
146
+ """
147
+ pass
148
+
149
+ class Legend(PyTextual):
150
+ """
151
+ Parameter Legend of value type str.
152
+ """
153
+ pass
154
+
155
+ class Title(PyTextual):
156
+ """
157
+ Parameter Title of value type str.
158
+ """
159
+ pass
160
+
161
+ class TextColor(PyMenu):
162
+ """
163
+ Singleton TextColor.
164
+ """
165
+ def __init__(self, service, rules, path):
166
+ self.Axes = self.__class__.Axes(service, rules, path + [("Axes", "")])
167
+ self.AxesTitles = self.__class__.AxesTitles(service, rules, path + [("AxesTitles", "")])
168
+ self.Legend = self.__class__.Legend(service, rules, path + [("Legend", "")])
169
+ self.Title = self.__class__.Title(service, rules, path + [("Title", "")])
170
+ super().__init__(service, rules, path)
171
+
172
+ class Axes(PyTextual):
173
+ """
174
+ Parameter Axes of value type str.
175
+ """
176
+ pass
177
+
178
+ class AxesTitles(PyTextual):
179
+ """
180
+ Parameter AxesTitles of value type str.
181
+ """
182
+ pass
183
+
184
+ class Legend(PyTextual):
185
+ """
186
+ Parameter Legend of value type str.
187
+ """
188
+ pass
189
+
190
+ class Title(PyTextual):
191
+ """
192
+ Parameter Title of value type str.
193
+ """
194
+ pass
195
+
196
+ class CurveColors(PyTextual):
197
+ """
198
+ Parameter CurveColors of value type str.
199
+ """
200
+ pass
201
+
202
+ class EnableOpenGLForModernPlots(PyParameter):
203
+ """
204
+ Parameter EnableOpenGLForModernPlots of value type bool.
205
+ """
206
+ pass
207
+
208
+ class LegendAlignment(PyTextual):
209
+ """
210
+ Parameter LegendAlignment of value type str.
211
+ """
212
+ pass
213
+
214
+ class LegendVisibility(PyParameter):
215
+ """
216
+ Parameter LegendVisibility of value type bool.
217
+ """
218
+ pass
219
+
220
+ class ModernPlotsEnabled(PyParameter):
221
+ """
222
+ Parameter ModernPlotsEnabled of value type bool.
223
+ """
224
+ pass
225
+
226
+ class ModernPlotsPointsThreshold(PyParameter):
227
+ """
228
+ Parameter ModernPlotsPointsThreshold of value type bool.
229
+ """
230
+ pass
231
+
232
+ class PlotsBehavior(PyTextual):
233
+ """
234
+ Parameter PlotsBehavior of value type str.
235
+ """
236
+ pass
237
+
238
+ class PrintPlotData(PyParameter):
239
+ """
240
+ Parameter PrintPlotData of value type bool.
241
+ """
242
+ pass
243
+
244
+ class PrintResidualsData(PyNumerical):
245
+ """
246
+ Parameter PrintResidualsData of value type int.
247
+ """
248
+ pass
249
+
250
+ class Threshold(PyNumerical):
251
+ """
252
+ Parameter Threshold of value type int.
253
+ """
254
+ pass
255
+
256
+ class TooltipInterpolation(PyParameter):
257
+ """
258
+ Parameter TooltipInterpolation of value type bool.
259
+ """
260
+ pass
261
+
262
+ class Selections(PyMenu):
263
+ """
264
+ Singleton Selections.
265
+ """
266
+ def __init__(self, service, rules, path):
267
+ self.EnableHighlightEdgeTransparency = self.__class__.EnableHighlightEdgeTransparency(service, rules, path + [("EnableHighlightEdgeTransparency", "")])
268
+ self.GeneralDisplacement = self.__class__.GeneralDisplacement(service, rules, path + [("GeneralDisplacement", "")])
269
+ self.HighlightEdgeColor = self.__class__.HighlightEdgeColor(service, rules, path + [("HighlightEdgeColor", "")])
270
+ self.HighlightEdgeWeight = self.__class__.HighlightEdgeWeight(service, rules, path + [("HighlightEdgeWeight", "")])
271
+ self.HighlightFaceColor = self.__class__.HighlightFaceColor(service, rules, path + [("HighlightFaceColor", "")])
272
+ self.HighlightGloss = self.__class__.HighlightGloss(service, rules, path + [("HighlightGloss", "")])
273
+ self.HighlightSpecularComponent = self.__class__.HighlightSpecularComponent(service, rules, path + [("HighlightSpecularComponent", "")])
274
+ self.HighlightTransparency = self.__class__.HighlightTransparency(service, rules, path + [("HighlightTransparency", "")])
275
+ self.MouseHoverProbeValuesEnabled = self.__class__.MouseHoverProbeValuesEnabled(service, rules, path + [("MouseHoverProbeValuesEnabled", "")])
276
+ self.MouseOverHighlightEnabled = self.__class__.MouseOverHighlightEnabled(service, rules, path + [("MouseOverHighlightEnabled", "")])
277
+ self.ProbeTooltipHideDelayTimer = self.__class__.ProbeTooltipHideDelayTimer(service, rules, path + [("ProbeTooltipHideDelayTimer", "")])
278
+ self.ProbeTooltipShowDelayTimer = self.__class__.ProbeTooltipShowDelayTimer(service, rules, path + [("ProbeTooltipShowDelayTimer", "")])
279
+ super().__init__(service, rules, path)
280
+
281
+ class EnableHighlightEdgeTransparency(PyParameter):
282
+ """
283
+ Parameter EnableHighlightEdgeTransparency of value type bool.
284
+ """
285
+ pass
286
+
287
+ class GeneralDisplacement(PyNumerical):
288
+ """
289
+ Parameter GeneralDisplacement of value type int.
290
+ """
291
+ pass
292
+
293
+ class HighlightEdgeColor(PyTextual):
294
+ """
295
+ Parameter HighlightEdgeColor of value type str.
296
+ """
297
+ pass
298
+
299
+ class HighlightEdgeWeight(PyNumerical):
300
+ """
301
+ Parameter HighlightEdgeWeight of value type int.
302
+ """
303
+ pass
304
+
305
+ class HighlightFaceColor(PyTextual):
306
+ """
307
+ Parameter HighlightFaceColor of value type str.
308
+ """
309
+ pass
310
+
311
+ class HighlightGloss(PyNumerical):
312
+ """
313
+ Parameter HighlightGloss of value type float.
314
+ """
315
+ pass
316
+
317
+ class HighlightSpecularComponent(PyTextual):
318
+ """
319
+ Parameter HighlightSpecularComponent of value type str.
320
+ """
321
+ pass
322
+
323
+ class HighlightTransparency(PyNumerical):
324
+ """
325
+ Parameter HighlightTransparency of value type float.
326
+ """
327
+ pass
328
+
329
+ class MouseHoverProbeValuesEnabled(PyParameter):
330
+ """
331
+ Parameter MouseHoverProbeValuesEnabled of value type bool.
332
+ """
333
+ pass
334
+
335
+ class MouseOverHighlightEnabled(PyParameter):
336
+ """
337
+ Parameter MouseOverHighlightEnabled of value type bool.
338
+ """
339
+ pass
340
+
341
+ class ProbeTooltipHideDelayTimer(PyNumerical):
342
+ """
343
+ Parameter ProbeTooltipHideDelayTimer of value type int.
344
+ """
345
+ pass
346
+
347
+ class ProbeTooltipShowDelayTimer(PyNumerical):
348
+ """
349
+ Parameter ProbeTooltipShowDelayTimer of value type int.
350
+ """
351
+ pass
352
+
353
+ class AllowInterfaceBoundsFlags(PyParameter):
354
+ """
355
+ Parameter AllowInterfaceBoundsFlags of value type bool.
356
+ """
357
+ pass
358
+
359
+ class ApplicationFontSize(PyNumerical):
360
+ """
361
+ Parameter ApplicationFontSize of value type int.
362
+ """
363
+ pass
364
+
365
+ class AxisTriad(PyParameter):
366
+ """
367
+ Parameter AxisTriad of value type bool.
368
+ """
369
+ pass
370
+
371
+ class ColorTheme(PyTextual):
372
+ """
373
+ Parameter ColorTheme of value type str.
374
+ """
375
+ pass
376
+
377
+ class Completer(PyParameter):
378
+ """
379
+ Parameter Completer of value type bool.
380
+ """
381
+ pass
382
+
383
+ class CustomTitleBar(PyParameter):
384
+ """
385
+ Parameter CustomTitleBar of value type bool.
386
+ """
387
+ pass
388
+
389
+ class DefaultView(PyTextual):
390
+ """
391
+ Parameter DefaultView of value type str.
392
+ """
393
+ pass
394
+
395
+ class GraphicsBackgroundColor1(PyTextual):
396
+ """
397
+ Parameter GraphicsBackgroundColor1 of value type str.
398
+ """
399
+ pass
400
+
401
+ class GraphicsBackgroundColor2(PyTextual):
402
+ """
403
+ Parameter GraphicsBackgroundColor2 of value type str.
404
+ """
405
+ pass
406
+
407
+ class GraphicsBackgroundStyle(PyTextual):
408
+ """
409
+ Parameter GraphicsBackgroundStyle of value type str.
410
+ """
411
+ pass
412
+
413
+ class GraphicsColorTheme(PyTextual):
414
+ """
415
+ Parameter GraphicsColorTheme of value type str.
416
+ """
417
+ pass
418
+
419
+ class GraphicsDefaultManualFaceColor(PyTextual):
420
+ """
421
+ Parameter GraphicsDefaultManualFaceColor of value type str.
422
+ """
423
+ pass
424
+
425
+ class GraphicsDefaultManualNodeColor(PyTextual):
426
+ """
427
+ Parameter GraphicsDefaultManualNodeColor of value type str.
428
+ """
429
+ pass
430
+
431
+ class GraphicsEdgeColor(PyTextual):
432
+ """
433
+ Parameter GraphicsEdgeColor of value type str.
434
+ """
435
+ pass
436
+
437
+ class GraphicsForegroundColor(PyTextual):
438
+ """
439
+ Parameter GraphicsForegroundColor of value type str.
440
+ """
441
+ pass
442
+
443
+ class GraphicsPartitionBoundaryColor(PyTextual):
444
+ """
445
+ Parameter GraphicsPartitionBoundaryColor of value type str.
446
+ """
447
+ pass
448
+
449
+ class GraphicsSurfaceColor(PyTextual):
450
+ """
451
+ Parameter GraphicsSurfaceColor of value type str.
452
+ """
453
+ pass
454
+
455
+ class GraphicsTitleWindowFramecolor(PyTextual):
456
+ """
457
+ Parameter GraphicsTitleWindowFramecolor of value type str.
458
+ """
459
+ pass
460
+
461
+ class GraphicsView(PyTextual):
462
+ """
463
+ Parameter GraphicsView of value type str.
464
+ """
465
+ pass
466
+
467
+ class GraphicsWallFaceColor(PyTextual):
468
+ """
469
+ Parameter GraphicsWallFaceColor of value type str.
470
+ """
471
+ pass
472
+
473
+ class GroupByTreeView(PyTextual):
474
+ """
475
+ Parameter GroupByTreeView of value type str.
476
+ """
477
+ pass
478
+
479
+ class GroupPhysicsByTreeView(PyTextual):
480
+ """
481
+ Parameter GroupPhysicsByTreeView of value type str.
482
+ """
483
+ pass
484
+
485
+ class ModelColorScheme(PyTextual):
486
+ """
487
+ Parameter ModelColorScheme of value type str.
488
+ """
489
+ pass
490
+
491
+ class NumberOfFilesRecentlyUsed(PyNumerical):
492
+ """
493
+ Parameter NumberOfFilesRecentlyUsed of value type int.
494
+ """
495
+ pass
496
+
497
+ class NumberOfPastelColors(PyTextual):
498
+ """
499
+ Parameter NumberOfPastelColors of value type str.
500
+ """
501
+ pass
502
+
503
+ class PastelColorSaturation(PyNumerical):
504
+ """
505
+ Parameter PastelColorSaturation of value type float.
506
+ """
507
+ pass
508
+
509
+ class PastelColorValue(PyNumerical):
510
+ """
511
+ Parameter PastelColorValue of value type float.
512
+ """
513
+ pass
514
+
515
+ class QuickPropertyView(PyParameter):
516
+ """
517
+ Parameter QuickPropertyView of value type bool.
518
+ """
519
+ pass
520
+
521
+ class Ruler(PyParameter):
522
+ """
523
+ Parameter Ruler of value type bool.
524
+ """
525
+ pass
526
+
527
+ class ShowEnabledModels(PyParameter):
528
+ """
529
+ Parameter ShowEnabledModels of value type bool.
530
+ """
531
+ pass
532
+
533
+ class ShowInterfaceNonOverlappingBoundaries(PyParameter):
534
+ """
535
+ Parameter ShowInterfaceNonOverlappingBoundaries of value type bool.
536
+ """
537
+ pass
538
+
539
+ class ShowModelEdges(PyParameter):
540
+ """
541
+ Parameter ShowModelEdges of value type bool.
542
+ """
543
+ pass
544
+
545
+ class SolutionModeEdgeColorInMeshingMode(PyParameter):
546
+ """
547
+ Parameter SolutionModeEdgeColorInMeshingMode of value type bool.
548
+ """
549
+ pass
550
+
551
+ class SurfaceEmissivity(PyNumerical):
552
+ """
553
+ Parameter SurfaceEmissivity of value type float.
554
+ """
555
+ pass
556
+
557
+ class SurfaceSpecularity(PyNumerical):
558
+ """
559
+ Parameter SurfaceSpecularity of value type float.
560
+ """
561
+ pass
562
+
563
+ class SurfaceSpecularityForContours(PyNumerical):
564
+ """
565
+ Parameter SurfaceSpecularityForContours of value type float.
566
+ """
567
+ pass
568
+
569
+ class Titles(PyParameter):
570
+ """
571
+ Parameter Titles of value type bool.
572
+ """
573
+ pass
574
+
575
+ class TitlesBorderOffset(PyNumerical):
576
+ """
577
+ Parameter TitlesBorderOffset of value type float.
578
+ """
579
+ pass
580
+
581
+ class GPUApp(PyMenu):
582
+ """
583
+ Singleton GPUApp.
584
+ """
585
+ def __init__(self, service, rules, path):
586
+ self.AlphaFeatures = self.__class__.AlphaFeatures(service, rules, path + [("AlphaFeatures", "")])
587
+ super().__init__(service, rules, path)
588
+
589
+ class AlphaFeatures(PyParameter):
590
+ """
591
+ Parameter AlphaFeatures of value type bool.
592
+ """
593
+ pass
594
+
595
+ class General(PyMenu):
596
+ """
597
+ Singleton General.
598
+ """
599
+ def __init__(self, service, rules, path):
600
+ self.StartupMessages = self.__class__.StartupMessages(service, rules, path + [("StartupMessages", "")])
601
+ self.AdvancedPartition = self.__class__.AdvancedPartition(service, rules, path + [("AdvancedPartition", "")])
602
+ self.AutomaticTranscript = self.__class__.AutomaticTranscript(service, rules, path + [("AutomaticTranscript", "")])
603
+ self.DefaultIOFormat = self.__class__.DefaultIOFormat(service, rules, path + [("DefaultIOFormat", "")])
604
+ self.DockEditor = self.__class__.DockEditor(service, rules, path + [("DockEditor", "")])
605
+ self.FlowModel = self.__class__.FlowModel(service, rules, path + [("FlowModel", "")])
606
+ self.IdleTimeout = self.__class__.IdleTimeout(service, rules, path + [("IdleTimeout", "")])
607
+ self.ImportPhysicsVolumeDefinitions = self.__class__.ImportPhysicsVolumeDefinitions(service, rules, path + [("ImportPhysicsVolumeDefinitions", "")])
608
+ self.InitialPhysicsVolumeDefinitions = self.__class__.InitialPhysicsVolumeDefinitions(service, rules, path + [("InitialPhysicsVolumeDefinitions", "")])
609
+ self.SkipCreationOfGroupsPointingToSingleEntity = self.__class__.SkipCreationOfGroupsPointingToSingleEntity(service, rules, path + [("SkipCreationOfGroupsPointingToSingleEntity", "")])
610
+ self.UTLCreatePhysicsOnModeChange = self.__class__.UTLCreatePhysicsOnModeChange(service, rules, path + [("UTLCreatePhysicsOnModeChange", "")])
611
+ self.UTLMode = self.__class__.UTLMode(service, rules, path + [("UTLMode", "")])
612
+ super().__init__(service, rules, path)
613
+
614
+ class StartupMessages(PyMenu):
615
+ """
616
+ Singleton StartupMessages.
617
+ """
618
+ def __init__(self, service, rules, path):
619
+ self.ColorThemeChangeMessage = self.__class__.ColorThemeChangeMessage(service, rules, path + [("ColorThemeChangeMessage", "")])
620
+ self.KeyBehavioralChangesMessage = self.__class__.KeyBehavioralChangesMessage(service, rules, path + [("KeyBehavioralChangesMessage", "")])
621
+ self.QAServiceMessage = self.__class__.QAServiceMessage(service, rules, path + [("QAServiceMessage", "")])
622
+ super().__init__(service, rules, path)
623
+
624
+ class ColorThemeChangeMessage(PyParameter):
625
+ """
626
+ Parameter ColorThemeChangeMessage of value type bool.
627
+ """
628
+ pass
629
+
630
+ class KeyBehavioralChangesMessage(PyParameter):
631
+ """
632
+ Parameter KeyBehavioralChangesMessage of value type bool.
633
+ """
634
+ pass
635
+
636
+ class QAServiceMessage(PyParameter):
637
+ """
638
+ Parameter QAServiceMessage of value type bool.
639
+ """
640
+ pass
641
+
642
+ class AdvancedPartition(PyTextual):
643
+ """
644
+ Parameter AdvancedPartition of value type str.
645
+ """
646
+ pass
647
+
648
+ class AutomaticTranscript(PyParameter):
649
+ """
650
+ Parameter AutomaticTranscript of value type bool.
651
+ """
652
+ pass
653
+
654
+ class DefaultIOFormat(PyTextual):
655
+ """
656
+ Parameter DefaultIOFormat of value type str.
657
+ """
658
+ pass
659
+
660
+ class DockEditor(PyParameter):
661
+ """
662
+ Parameter DockEditor of value type bool.
663
+ """
664
+ pass
665
+
666
+ class FlowModel(PyTextual):
667
+ """
668
+ Parameter FlowModel of value type str.
669
+ """
670
+ pass
671
+
672
+ class IdleTimeout(PyNumerical):
673
+ """
674
+ Parameter IdleTimeout of value type int.
675
+ """
676
+ pass
677
+
678
+ class ImportPhysicsVolumeDefinitions(PyTextual):
679
+ """
680
+ Parameter ImportPhysicsVolumeDefinitions of value type str.
681
+ """
682
+ pass
683
+
684
+ class InitialPhysicsVolumeDefinitions(PyTextual):
685
+ """
686
+ Parameter InitialPhysicsVolumeDefinitions of value type str.
687
+ """
688
+ pass
689
+
690
+ class SkipCreationOfGroupsPointingToSingleEntity(PyParameter):
691
+ """
692
+ Parameter SkipCreationOfGroupsPointingToSingleEntity of value type bool.
693
+ """
694
+ pass
695
+
696
+ class UTLCreatePhysicsOnModeChange(PyParameter):
697
+ """
698
+ Parameter UTLCreatePhysicsOnModeChange of value type bool.
699
+ """
700
+ pass
701
+
702
+ class UTLMode(PyParameter):
703
+ """
704
+ Parameter UTLMode of value type bool.
705
+ """
706
+ pass
707
+
708
+ class Graphics(PyMenu):
709
+ """
710
+ Singleton Graphics.
711
+ """
712
+ def __init__(self, service, rules, path):
713
+ self.BoundaryMarkers = self.__class__.BoundaryMarkers(service, rules, path + [("BoundaryMarkers", "")])
714
+ self.ColormapSettings = self.__class__.ColormapSettings(service, rules, path + [("ColormapSettings", "")])
715
+ self.DisplayLists = self.__class__.DisplayLists(service, rules, path + [("DisplayLists", "")])
716
+ self.EmbeddedWindows = self.__class__.EmbeddedWindows(service, rules, path + [("EmbeddedWindows", "")])
717
+ self.ExportVideoSettings = self.__class__.ExportVideoSettings(service, rules, path + [("ExportVideoSettings", "")])
718
+ self.GraphicsEffects = self.__class__.GraphicsEffects(service, rules, path + [("GraphicsEffects", "")])
719
+ self.HardcopySettings = self.__class__.HardcopySettings(service, rules, path + [("HardcopySettings", "")])
720
+ self.Lighting = self.__class__.Lighting(service, rules, path + [("Lighting", "")])
721
+ self.ManageHoopsMemory = self.__class__.ManageHoopsMemory(service, rules, path + [("ManageHoopsMemory", "")])
722
+ self.MaterialEffects = self.__class__.MaterialEffects(service, rules, path + [("MaterialEffects", "")])
723
+ self.MeshingMode = self.__class__.MeshingMode(service, rules, path + [("MeshingMode", "")])
724
+ self.Performance = self.__class__.Performance(service, rules, path + [("Performance", "")])
725
+ self.RayTracingOptions = self.__class__.RayTracingOptions(service, rules, path + [("RayTracingOptions", "")])
726
+ self.Transparency = self.__class__.Transparency(service, rules, path + [("Transparency", "")])
727
+ self.VectorSettings = self.__class__.VectorSettings(service, rules, path + [("VectorSettings", "")])
728
+ self.AnimationOption = self.__class__.AnimationOption(service, rules, path + [("AnimationOption", "")])
729
+ self.BackfaceCull = self.__class__.BackfaceCull(service, rules, path + [("BackfaceCull", "")])
730
+ self.CameraNearLimit = self.__class__.CameraNearLimit(service, rules, path + [("CameraNearLimit", "")])
731
+ self.DoubleBuffering = self.__class__.DoubleBuffering(service, rules, path + [("DoubleBuffering", "")])
732
+ self.EnableCameraNearLimitToAvoidZFighting = self.__class__.EnableCameraNearLimitToAvoidZFighting(service, rules, path + [("EnableCameraNearLimitToAvoidZFighting", "")])
733
+ self.EnableNonObjectBasedWorkflow = self.__class__.EnableNonObjectBasedWorkflow(service, rules, path + [("EnableNonObjectBasedWorkflow", "")])
734
+ self.EventPollInterval = self.__class__.EventPollInterval(service, rules, path + [("EventPollInterval", "")])
735
+ self.EventPollTimeout = self.__class__.EventPollTimeout(service, rules, path + [("EventPollTimeout", "")])
736
+ self.ForceKeyFrameAnimationMarkersToOff = self.__class__.ForceKeyFrameAnimationMarkersToOff(service, rules, path + [("ForceKeyFrameAnimationMarkersToOff", "")])
737
+ self.GraphicsWindowLineWidth = self.__class__.GraphicsWindowLineWidth(service, rules, path + [("GraphicsWindowLineWidth", "")])
738
+ self.GraphicsWindowPointSymbol = self.__class__.GraphicsWindowPointSymbol(service, rules, path + [("GraphicsWindowPointSymbol", "")])
739
+ self.HiddenSurfaceRemovalMethod = self.__class__.HiddenSurfaceRemovalMethod(service, rules, path + [("HiddenSurfaceRemovalMethod", "")])
740
+ self.HigherResolutionGraphicsWindowLineWidth = self.__class__.HigherResolutionGraphicsWindowLineWidth(service, rules, path + [("HigherResolutionGraphicsWindowLineWidth", "")])
741
+ self.LowerResolutionGraphicsWindowLineWidth = self.__class__.LowerResolutionGraphicsWindowLineWidth(service, rules, path + [("LowerResolutionGraphicsWindowLineWidth", "")])
742
+ self.MarkerDrawingMode = self.__class__.MarkerDrawingMode(service, rules, path + [("MarkerDrawingMode", "")])
743
+ self.MaxGraphicsTextSize = self.__class__.MaxGraphicsTextSize(service, rules, path + [("MaxGraphicsTextSize", "")])
744
+ self.MinGraphicsTextSize = self.__class__.MinGraphicsTextSize(service, rules, path + [("MinGraphicsTextSize", "")])
745
+ self.PlotLegendMargin = self.__class__.PlotLegendMargin(service, rules, path + [("PlotLegendMargin", "")])
746
+ self.PointToolSize = self.__class__.PointToolSize(service, rules, path + [("PointToolSize", "")])
747
+ self.RemovePartitionLines = self.__class__.RemovePartitionLines(service, rules, path + [("RemovePartitionLines", "")])
748
+ self.RemovePartitionLinesTolerance = self.__class__.RemovePartitionLinesTolerance(service, rules, path + [("RemovePartitionLinesTolerance", "")])
749
+ self.RotationCenterpointVisible = self.__class__.RotationCenterpointVisible(service, rules, path + [("RotationCenterpointVisible", "")])
750
+ self.ScrollWheelEventEndTimer = self.__class__.ScrollWheelEventEndTimer(service, rules, path + [("ScrollWheelEventEndTimer", "")])
751
+ self.SelectionHighlightWindow = self.__class__.SelectionHighlightWindow(service, rules, path + [("SelectionHighlightWindow", "")])
752
+ self.SetCameraNormalToSurfaceIncrements = self.__class__.SetCameraNormalToSurfaceIncrements(service, rules, path + [("SetCameraNormalToSurfaceIncrements", "")])
753
+ self.ShowHiddenLines = self.__class__.ShowHiddenLines(service, rules, path + [("ShowHiddenLines", "")])
754
+ self.ShowHiddenSurfaces = self.__class__.ShowHiddenSurfaces(service, rules, path + [("ShowHiddenSurfaces", "")])
755
+ self.SurfaceGeneralDisplacement = self.__class__.SurfaceGeneralDisplacement(service, rules, path + [("SurfaceGeneralDisplacement", "")])
756
+ self.SwitchToOpenGLForRemoteVisualization = self.__class__.SwitchToOpenGLForRemoteVisualization(service, rules, path + [("SwitchToOpenGLForRemoteVisualization", "")])
757
+ self.TestUseExternalFunction = self.__class__.TestUseExternalFunction(service, rules, path + [("TestUseExternalFunction", "")])
758
+ self.TextWindowLineWidth = self.__class__.TextWindowLineWidth(service, rules, path + [("TextWindowLineWidth", "")])
759
+ super().__init__(service, rules, path)
760
+
761
+ class BoundaryMarkers(PyMenu):
762
+ """
763
+ Singleton BoundaryMarkers.
764
+ """
765
+ def __init__(self, service, rules, path):
766
+ self.AutomaticMarkerScaling = self.__class__.AutomaticMarkerScaling(service, rules, path + [("AutomaticMarkerScaling", "")])
767
+ self.ColorOption = self.__class__.ColorOption(service, rules, path + [("ColorOption", "")])
768
+ self.Enabled = self.__class__.Enabled(service, rules, path + [("Enabled", "")])
769
+ self.ExcludeFromBounding = self.__class__.ExcludeFromBounding(service, rules, path + [("ExcludeFromBounding", "")])
770
+ self.InletColor = self.__class__.InletColor(service, rules, path + [("InletColor", "")])
771
+ self.MarkerFraction = self.__class__.MarkerFraction(service, rules, path + [("MarkerFraction", "")])
772
+ self.MarkerSizeLimitingScaleMultiplier = self.__class__.MarkerSizeLimitingScaleMultiplier(service, rules, path + [("MarkerSizeLimitingScaleMultiplier", "")])
773
+ self.MarkersLimit = self.__class__.MarkersLimit(service, rules, path + [("MarkersLimit", "")])
774
+ self.OutletColor = self.__class__.OutletColor(service, rules, path + [("OutletColor", "")])
775
+ self.ScaleMarker = self.__class__.ScaleMarker(service, rules, path + [("ScaleMarker", "")])
776
+ self.ShowInletMarkers = self.__class__.ShowInletMarkers(service, rules, path + [("ShowInletMarkers", "")])
777
+ self.ShowOutletMarkers = self.__class__.ShowOutletMarkers(service, rules, path + [("ShowOutletMarkers", "")])
778
+ super().__init__(service, rules, path)
779
+
780
+ class AutomaticMarkerScaling(PyParameter):
781
+ """
782
+ Parameter AutomaticMarkerScaling of value type bool.
783
+ """
784
+ pass
785
+
786
+ class ColorOption(PyTextual):
787
+ """
788
+ Parameter ColorOption of value type str.
789
+ """
790
+ pass
791
+
792
+ class Enabled(PyParameter):
793
+ """
794
+ Parameter Enabled of value type bool.
795
+ """
796
+ pass
797
+
798
+ class ExcludeFromBounding(PyParameter):
799
+ """
800
+ Parameter ExcludeFromBounding of value type bool.
801
+ """
802
+ pass
803
+
804
+ class InletColor(PyTextual):
805
+ """
806
+ Parameter InletColor of value type str.
807
+ """
808
+ pass
809
+
810
+ class MarkerFraction(PyNumerical):
811
+ """
812
+ Parameter MarkerFraction of value type float.
813
+ """
814
+ pass
815
+
816
+ class MarkerSizeLimitingScaleMultiplier(PyNumerical):
817
+ """
818
+ Parameter MarkerSizeLimitingScaleMultiplier of value type float.
819
+ """
820
+ pass
821
+
822
+ class MarkersLimit(PyNumerical):
823
+ """
824
+ Parameter MarkersLimit of value type int.
825
+ """
826
+ pass
827
+
828
+ class OutletColor(PyTextual):
829
+ """
830
+ Parameter OutletColor of value type str.
831
+ """
832
+ pass
833
+
834
+ class ScaleMarker(PyNumerical):
835
+ """
836
+ Parameter ScaleMarker of value type float.
837
+ """
838
+ pass
839
+
840
+ class ShowInletMarkers(PyParameter):
841
+ """
842
+ Parameter ShowInletMarkers of value type bool.
843
+ """
844
+ pass
845
+
846
+ class ShowOutletMarkers(PyParameter):
847
+ """
848
+ Parameter ShowOutletMarkers of value type bool.
849
+ """
850
+ pass
851
+
852
+ class ColormapSettings(PyMenu):
853
+ """
854
+ Singleton ColormapSettings.
855
+ """
856
+ def __init__(self, service, rules, path):
857
+ self.Alignment = self.__class__.Alignment(service, rules, path + [("Alignment", "")])
858
+ self.AspectRatioWhenHorizontal = self.__class__.AspectRatioWhenHorizontal(service, rules, path + [("AspectRatioWhenHorizontal", "")])
859
+ self.AspectRatioWhenVertical = self.__class__.AspectRatioWhenVertical(service, rules, path + [("AspectRatioWhenVertical", "")])
860
+ self.AutoRefitOnResize = self.__class__.AutoRefitOnResize(service, rules, path + [("AutoRefitOnResize", "")])
861
+ self.AutomaticResize = self.__class__.AutomaticResize(service, rules, path + [("AutomaticResize", "")])
862
+ self.BorderStyle = self.__class__.BorderStyle(service, rules, path + [("BorderStyle", "")])
863
+ self.Colormap = self.__class__.Colormap(service, rules, path + [("Colormap", "")])
864
+ self.IsolinesPositionOffset = self.__class__.IsolinesPositionOffset(service, rules, path + [("IsolinesPositionOffset", "")])
865
+ self.Labels = self.__class__.Labels(service, rules, path + [("Labels", "")])
866
+ self.Levels = self.__class__.Levels(service, rules, path + [("Levels", "")])
867
+ self.LogScale = self.__class__.LogScale(service, rules, path + [("LogScale", "")])
868
+ self.MajorLengthToScreenRatioWhenHorizontal = self.__class__.MajorLengthToScreenRatioWhenHorizontal(service, rules, path + [("MajorLengthToScreenRatioWhenHorizontal", "")])
869
+ self.MajorLengthToScreenRatioWhenVertical = self.__class__.MajorLengthToScreenRatioWhenVertical(service, rules, path + [("MajorLengthToScreenRatioWhenVertical", "")])
870
+ self.MarginFromEdgeToScreenRatio = self.__class__.MarginFromEdgeToScreenRatio(service, rules, path + [("MarginFromEdgeToScreenRatio", "")])
871
+ self.MaxSizeScaleFactor = self.__class__.MaxSizeScaleFactor(service, rules, path + [("MaxSizeScaleFactor", "")])
872
+ self.MinSizeScaleFactor = self.__class__.MinSizeScaleFactor(service, rules, path + [("MinSizeScaleFactor", "")])
873
+ self.NumberFormatPrecision = self.__class__.NumberFormatPrecision(service, rules, path + [("NumberFormatPrecision", "")])
874
+ self.NumberFormatType = self.__class__.NumberFormatType(service, rules, path + [("NumberFormatType", "")])
875
+ self.PreserveAspectRatioForHardcopy = self.__class__.PreserveAspectRatioForHardcopy(service, rules, path + [("PreserveAspectRatioForHardcopy", "")])
876
+ self.ShowColormap = self.__class__.ShowColormap(service, rules, path + [("ShowColormap", "")])
877
+ self.SkipValue = self.__class__.SkipValue(service, rules, path + [("SkipValue", "")])
878
+ self.TextBehavior = self.__class__.TextBehavior(service, rules, path + [("TextBehavior", "")])
879
+ self.TextFontAutomaticHorizontalSize = self.__class__.TextFontAutomaticHorizontalSize(service, rules, path + [("TextFontAutomaticHorizontalSize", "")])
880
+ self.TextFontAutomaticSize = self.__class__.TextFontAutomaticSize(service, rules, path + [("TextFontAutomaticSize", "")])
881
+ self.TextFontAutomaticUnits = self.__class__.TextFontAutomaticUnits(service, rules, path + [("TextFontAutomaticUnits", "")])
882
+ self.TextFontAutomaticVerticalSize = self.__class__.TextFontAutomaticVerticalSize(service, rules, path + [("TextFontAutomaticVerticalSize", "")])
883
+ self.TextFontFixedHorizontalSize = self.__class__.TextFontFixedHorizontalSize(service, rules, path + [("TextFontFixedHorizontalSize", "")])
884
+ self.TextFontFixedSize = self.__class__.TextFontFixedSize(service, rules, path + [("TextFontFixedSize", "")])
885
+ self.TextFontFixedUnits = self.__class__.TextFontFixedUnits(service, rules, path + [("TextFontFixedUnits", "")])
886
+ self.TextFontFixedVerticalSize = self.__class__.TextFontFixedVerticalSize(service, rules, path + [("TextFontFixedVerticalSize", "")])
887
+ self.TextFontName = self.__class__.TextFontName(service, rules, path + [("TextFontName", "")])
888
+ self.TextTruncationLimitForHorizontalColormaps = self.__class__.TextTruncationLimitForHorizontalColormaps(service, rules, path + [("TextTruncationLimitForHorizontalColormaps", "")])
889
+ self.TextTruncationLimitForVerticalColormaps = self.__class__.TextTruncationLimitForVerticalColormaps(service, rules, path + [("TextTruncationLimitForVerticalColormaps", "")])
890
+ self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
891
+ self.UseNoSubWindows = self.__class__.UseNoSubWindows(service, rules, path + [("UseNoSubWindows", "")])
892
+ super().__init__(service, rules, path)
893
+
894
+ class Alignment(PyTextual):
895
+ """
896
+ Parameter Alignment of value type str.
897
+ """
898
+ pass
899
+
900
+ class AspectRatioWhenHorizontal(PyNumerical):
901
+ """
902
+ Parameter AspectRatioWhenHorizontal of value type float.
903
+ """
904
+ pass
905
+
906
+ class AspectRatioWhenVertical(PyNumerical):
907
+ """
908
+ Parameter AspectRatioWhenVertical of value type float.
909
+ """
910
+ pass
911
+
912
+ class AutoRefitOnResize(PyParameter):
913
+ """
914
+ Parameter AutoRefitOnResize of value type bool.
915
+ """
916
+ pass
917
+
918
+ class AutomaticResize(PyParameter):
919
+ """
920
+ Parameter AutomaticResize of value type bool.
921
+ """
922
+ pass
923
+
924
+ class BorderStyle(PyTextual):
925
+ """
926
+ Parameter BorderStyle of value type str.
927
+ """
928
+ pass
929
+
930
+ class Colormap(PyTextual):
931
+ """
932
+ Parameter Colormap of value type str.
933
+ """
934
+ pass
935
+
936
+ class IsolinesPositionOffset(PyNumerical):
937
+ """
938
+ Parameter IsolinesPositionOffset of value type float.
939
+ """
940
+ pass
941
+
942
+ class Labels(PyParameter):
943
+ """
944
+ Parameter Labels of value type bool.
945
+ """
946
+ pass
947
+
948
+ class Levels(PyNumerical):
949
+ """
950
+ Parameter Levels of value type int.
951
+ """
952
+ pass
953
+
954
+ class LogScale(PyParameter):
955
+ """
956
+ Parameter LogScale of value type bool.
957
+ """
958
+ pass
959
+
960
+ class MajorLengthToScreenRatioWhenHorizontal(PyNumerical):
961
+ """
962
+ Parameter MajorLengthToScreenRatioWhenHorizontal of value type float.
963
+ """
964
+ pass
965
+
966
+ class MajorLengthToScreenRatioWhenVertical(PyNumerical):
967
+ """
968
+ Parameter MajorLengthToScreenRatioWhenVertical of value type float.
969
+ """
970
+ pass
971
+
972
+ class MarginFromEdgeToScreenRatio(PyNumerical):
973
+ """
974
+ Parameter MarginFromEdgeToScreenRatio of value type float.
975
+ """
976
+ pass
977
+
978
+ class MaxSizeScaleFactor(PyNumerical):
979
+ """
980
+ Parameter MaxSizeScaleFactor of value type float.
981
+ """
982
+ pass
983
+
984
+ class MinSizeScaleFactor(PyNumerical):
985
+ """
986
+ Parameter MinSizeScaleFactor of value type float.
987
+ """
988
+ pass
989
+
990
+ class NumberFormatPrecision(PyNumerical):
991
+ """
992
+ Parameter NumberFormatPrecision of value type int.
993
+ """
994
+ pass
995
+
996
+ class NumberFormatType(PyTextual):
997
+ """
998
+ Parameter NumberFormatType of value type str.
999
+ """
1000
+ pass
1001
+
1002
+ class PreserveAspectRatioForHardcopy(PyParameter):
1003
+ """
1004
+ Parameter PreserveAspectRatioForHardcopy of value type bool.
1005
+ """
1006
+ pass
1007
+
1008
+ class ShowColormap(PyParameter):
1009
+ """
1010
+ Parameter ShowColormap of value type bool.
1011
+ """
1012
+ pass
1013
+
1014
+ class SkipValue(PyNumerical):
1015
+ """
1016
+ Parameter SkipValue of value type int.
1017
+ """
1018
+ pass
1019
+
1020
+ class TextBehavior(PyTextual):
1021
+ """
1022
+ Parameter TextBehavior of value type str.
1023
+ """
1024
+ pass
1025
+
1026
+ class TextFontAutomaticHorizontalSize(PyNumerical):
1027
+ """
1028
+ Parameter TextFontAutomaticHorizontalSize of value type float.
1029
+ """
1030
+ pass
1031
+
1032
+ class TextFontAutomaticSize(PyNumerical):
1033
+ """
1034
+ Parameter TextFontAutomaticSize of value type float.
1035
+ """
1036
+ pass
1037
+
1038
+ class TextFontAutomaticUnits(PyTextual):
1039
+ """
1040
+ Parameter TextFontAutomaticUnits of value type str.
1041
+ """
1042
+ pass
1043
+
1044
+ class TextFontAutomaticVerticalSize(PyNumerical):
1045
+ """
1046
+ Parameter TextFontAutomaticVerticalSize of value type float.
1047
+ """
1048
+ pass
1049
+
1050
+ class TextFontFixedHorizontalSize(PyNumerical):
1051
+ """
1052
+ Parameter TextFontFixedHorizontalSize of value type int.
1053
+ """
1054
+ pass
1055
+
1056
+ class TextFontFixedSize(PyNumerical):
1057
+ """
1058
+ Parameter TextFontFixedSize of value type int.
1059
+ """
1060
+ pass
1061
+
1062
+ class TextFontFixedUnits(PyTextual):
1063
+ """
1064
+ Parameter TextFontFixedUnits of value type str.
1065
+ """
1066
+ pass
1067
+
1068
+ class TextFontFixedVerticalSize(PyNumerical):
1069
+ """
1070
+ Parameter TextFontFixedVerticalSize of value type int.
1071
+ """
1072
+ pass
1073
+
1074
+ class TextFontName(PyTextual):
1075
+ """
1076
+ Parameter TextFontName of value type str.
1077
+ """
1078
+ pass
1079
+
1080
+ class TextTruncationLimitForHorizontalColormaps(PyNumerical):
1081
+ """
1082
+ Parameter TextTruncationLimitForHorizontalColormaps of value type int.
1083
+ """
1084
+ pass
1085
+
1086
+ class TextTruncationLimitForVerticalColormaps(PyNumerical):
1087
+ """
1088
+ Parameter TextTruncationLimitForVerticalColormaps of value type int.
1089
+ """
1090
+ pass
1091
+
1092
+ class Type(PyTextual):
1093
+ """
1094
+ Parameter Type of value type str.
1095
+ """
1096
+ pass
1097
+
1098
+ class UseNoSubWindows(PyParameter):
1099
+ """
1100
+ Parameter UseNoSubWindows of value type bool.
1101
+ """
1102
+ pass
1103
+
1104
+ class DisplayLists(PyMenu):
1105
+ """
1106
+ Singleton DisplayLists.
1107
+ """
1108
+ def __init__(self, service, rules, path):
1109
+ self.Options = self.__class__.Options(service, rules, path + [("Options", "")])
1110
+ super().__init__(service, rules, path)
1111
+
1112
+ class Options(PyTextual):
1113
+ """
1114
+ Parameter Options of value type str.
1115
+ """
1116
+ pass
1117
+
1118
+ class EmbeddedWindows(PyMenu):
1119
+ """
1120
+ Singleton EmbeddedWindows.
1121
+ """
1122
+ def __init__(self, service, rules, path):
1123
+ self.DefaultEmbeddedMeshWindowsView = self.__class__.DefaultEmbeddedMeshWindowsView(service, rules, path + [("DefaultEmbeddedMeshWindowsView", "")])
1124
+ self.DefaultEmbeddedWindowsView = self.__class__.DefaultEmbeddedWindowsView(service, rules, path + [("DefaultEmbeddedWindowsView", "")])
1125
+ self.SaveEmbeddedWindowLayout = self.__class__.SaveEmbeddedWindowLayout(service, rules, path + [("SaveEmbeddedWindowLayout", "")])
1126
+ self.ShowBorderForEmbeddedWindow = self.__class__.ShowBorderForEmbeddedWindow(service, rules, path + [("ShowBorderForEmbeddedWindow", "")])
1127
+ super().__init__(service, rules, path)
1128
+
1129
+ class DefaultEmbeddedMeshWindowsView(PyParameter):
1130
+ """
1131
+ Parameter DefaultEmbeddedMeshWindowsView of value type bool.
1132
+ """
1133
+ pass
1134
+
1135
+ class DefaultEmbeddedWindowsView(PyParameter):
1136
+ """
1137
+ Parameter DefaultEmbeddedWindowsView of value type bool.
1138
+ """
1139
+ pass
1140
+
1141
+ class SaveEmbeddedWindowLayout(PyParameter):
1142
+ """
1143
+ Parameter SaveEmbeddedWindowLayout of value type bool.
1144
+ """
1145
+ pass
1146
+
1147
+ class ShowBorderForEmbeddedWindow(PyParameter):
1148
+ """
1149
+ Parameter ShowBorderForEmbeddedWindow of value type bool.
1150
+ """
1151
+ pass
1152
+
1153
+ class ExportVideoSettings(PyMenu):
1154
+ """
1155
+ Singleton ExportVideoSettings.
1156
+ """
1157
+ def __init__(self, service, rules, path):
1158
+ self.AdvancedVideoQualityOptions = self.__class__.AdvancedVideoQualityOptions(service, rules, path + [("AdvancedVideoQualityOptions", "")])
1159
+ self.VideoFPS = self.__class__.VideoFPS(service, rules, path + [("VideoFPS", "")])
1160
+ self.VideoFormat = self.__class__.VideoFormat(service, rules, path + [("VideoFormat", "")])
1161
+ self.VideoQuality = self.__class__.VideoQuality(service, rules, path + [("VideoQuality", "")])
1162
+ self.VideoResoutionX = self.__class__.VideoResoutionX(service, rules, path + [("VideoResoutionX", "")])
1163
+ self.VideoResoutionY = self.__class__.VideoResoutionY(service, rules, path + [("VideoResoutionY", "")])
1164
+ self.VideoScale = self.__class__.VideoScale(service, rules, path + [("VideoScale", "")])
1165
+ self.VideoSmoothScaling = self.__class__.VideoSmoothScaling(service, rules, path + [("VideoSmoothScaling", "")])
1166
+ self.VideoUseFrameResolution = self.__class__.VideoUseFrameResolution(service, rules, path + [("VideoUseFrameResolution", "")])
1167
+ super().__init__(service, rules, path)
1168
+
1169
+ class AdvancedVideoQualityOptions(PyMenu):
1170
+ """
1171
+ Singleton AdvancedVideoQualityOptions.
1172
+ """
1173
+ def __init__(self, service, rules, path):
1174
+ self.BitRateQuality = self.__class__.BitRateQuality(service, rules, path + [("BitRateQuality", "")])
1175
+ self.Bitrate = self.__class__.Bitrate(service, rules, path + [("Bitrate", "")])
1176
+ self.CompressionMethod = self.__class__.CompressionMethod(service, rules, path + [("CompressionMethod", "")])
1177
+ self.EnableH264 = self.__class__.EnableH264(service, rules, path + [("EnableH264", "")])
1178
+ super().__init__(service, rules, path)
1179
+
1180
+ class BitRateQuality(PyTextual):
1181
+ """
1182
+ Parameter BitRateQuality of value type str.
1183
+ """
1184
+ pass
1185
+
1186
+ class Bitrate(PyNumerical):
1187
+ """
1188
+ Parameter Bitrate of value type int.
1189
+ """
1190
+ pass
1191
+
1192
+ class CompressionMethod(PyTextual):
1193
+ """
1194
+ Parameter CompressionMethod of value type str.
1195
+ """
1196
+ pass
1197
+
1198
+ class EnableH264(PyParameter):
1199
+ """
1200
+ Parameter EnableH264 of value type bool.
1201
+ """
1202
+ pass
1203
+
1204
+ class VideoFPS(PyNumerical):
1205
+ """
1206
+ Parameter VideoFPS of value type int.
1207
+ """
1208
+ pass
1209
+
1210
+ class VideoFormat(PyTextual):
1211
+ """
1212
+ Parameter VideoFormat of value type str.
1213
+ """
1214
+ pass
1215
+
1216
+ class VideoQuality(PyTextual):
1217
+ """
1218
+ Parameter VideoQuality of value type str.
1219
+ """
1220
+ pass
1221
+
1222
+ class VideoResoutionX(PyNumerical):
1223
+ """
1224
+ Parameter VideoResoutionX of value type int.
1225
+ """
1226
+ pass
1227
+
1228
+ class VideoResoutionY(PyNumerical):
1229
+ """
1230
+ Parameter VideoResoutionY of value type int.
1231
+ """
1232
+ pass
1233
+
1234
+ class VideoScale(PyTextual):
1235
+ """
1236
+ Parameter VideoScale of value type str.
1237
+ """
1238
+ pass
1239
+
1240
+ class VideoSmoothScaling(PyParameter):
1241
+ """
1242
+ Parameter VideoSmoothScaling of value type bool.
1243
+ """
1244
+ pass
1245
+
1246
+ class VideoUseFrameResolution(PyParameter):
1247
+ """
1248
+ Parameter VideoUseFrameResolution of value type bool.
1249
+ """
1250
+ pass
1251
+
1252
+ class GraphicsEffects(PyMenu):
1253
+ """
1254
+ Singleton GraphicsEffects.
1255
+ """
1256
+ def __init__(self, service, rules, path):
1257
+ self.AmbientOcclusionEnabled = self.__class__.AmbientOcclusionEnabled(service, rules, path + [("AmbientOcclusionEnabled", "")])
1258
+ self.AmbientOcclusionQuality = self.__class__.AmbientOcclusionQuality(service, rules, path + [("AmbientOcclusionQuality", "")])
1259
+ self.AmbientOcclusionStrength = self.__class__.AmbientOcclusionStrength(service, rules, path + [("AmbientOcclusionStrength", "")])
1260
+ self.AntiAliasing = self.__class__.AntiAliasing(service, rules, path + [("AntiAliasing", "")])
1261
+ self.BloomBlur = self.__class__.BloomBlur(service, rules, path + [("BloomBlur", "")])
1262
+ self.BloomEnabled = self.__class__.BloomEnabled(service, rules, path + [("BloomEnabled", "")])
1263
+ self.BloomStrength = self.__class__.BloomStrength(service, rules, path + [("BloomStrength", "")])
1264
+ self.GridColor = self.__class__.GridColor(service, rules, path + [("GridColor", "")])
1265
+ self.GridPlaneCount = self.__class__.GridPlaneCount(service, rules, path + [("GridPlaneCount", "")])
1266
+ self.GridPlaneEnabled = self.__class__.GridPlaneEnabled(service, rules, path + [("GridPlaneEnabled", "")])
1267
+ self.GridPlaneOffset = self.__class__.GridPlaneOffset(service, rules, path + [("GridPlaneOffset", "")])
1268
+ self.GridPlaneSizeFactor = self.__class__.GridPlaneSizeFactor(service, rules, path + [("GridPlaneSizeFactor", "")])
1269
+ self.PlaneDirection = self.__class__.PlaneDirection(service, rules, path + [("PlaneDirection", "")])
1270
+ self.ReflectionsEnabled = self.__class__.ReflectionsEnabled(service, rules, path + [("ReflectionsEnabled", "")])
1271
+ self.ShadowMapEnabled = self.__class__.ShadowMapEnabled(service, rules, path + [("ShadowMapEnabled", "")])
1272
+ self.ShowEdgeReflections = self.__class__.ShowEdgeReflections(service, rules, path + [("ShowEdgeReflections", "")])
1273
+ self.ShowMarkerReflections = self.__class__.ShowMarkerReflections(service, rules, path + [("ShowMarkerReflections", "")])
1274
+ self.SimpleShadowsEnabled = self.__class__.SimpleShadowsEnabled(service, rules, path + [("SimpleShadowsEnabled", "")])
1275
+ self.UpdateAfterMouseRelease = self.__class__.UpdateAfterMouseRelease(service, rules, path + [("UpdateAfterMouseRelease", "")])
1276
+ super().__init__(service, rules, path)
1277
+
1278
+ class AmbientOcclusionEnabled(PyParameter):
1279
+ """
1280
+ Parameter AmbientOcclusionEnabled of value type bool.
1281
+ """
1282
+ pass
1283
+
1284
+ class AmbientOcclusionQuality(PyTextual):
1285
+ """
1286
+ Parameter AmbientOcclusionQuality of value type str.
1287
+ """
1288
+ pass
1289
+
1290
+ class AmbientOcclusionStrength(PyNumerical):
1291
+ """
1292
+ Parameter AmbientOcclusionStrength of value type int.
1293
+ """
1294
+ pass
1295
+
1296
+ class AntiAliasing(PyParameter):
1297
+ """
1298
+ Parameter AntiAliasing of value type bool.
1299
+ """
1300
+ pass
1301
+
1302
+ class BloomBlur(PyNumerical):
1303
+ """
1304
+ Parameter BloomBlur of value type int.
1305
+ """
1306
+ pass
1307
+
1308
+ class BloomEnabled(PyParameter):
1309
+ """
1310
+ Parameter BloomEnabled of value type bool.
1311
+ """
1312
+ pass
1313
+
1314
+ class BloomStrength(PyNumerical):
1315
+ """
1316
+ Parameter BloomStrength of value type int.
1317
+ """
1318
+ pass
1319
+
1320
+ class GridColor(PyTextual):
1321
+ """
1322
+ Parameter GridColor of value type str.
1323
+ """
1324
+ pass
1325
+
1326
+ class GridPlaneCount(PyNumerical):
1327
+ """
1328
+ Parameter GridPlaneCount of value type int.
1329
+ """
1330
+ pass
1331
+
1332
+ class GridPlaneEnabled(PyParameter):
1333
+ """
1334
+ Parameter GridPlaneEnabled of value type bool.
1335
+ """
1336
+ pass
1337
+
1338
+ class GridPlaneOffset(PyNumerical):
1339
+ """
1340
+ Parameter GridPlaneOffset of value type int.
1341
+ """
1342
+ pass
1343
+
1344
+ class GridPlaneSizeFactor(PyNumerical):
1345
+ """
1346
+ Parameter GridPlaneSizeFactor of value type int.
1347
+ """
1348
+ pass
1349
+
1350
+ class PlaneDirection(PyTextual):
1351
+ """
1352
+ Parameter PlaneDirection of value type str.
1353
+ """
1354
+ pass
1355
+
1356
+ class ReflectionsEnabled(PyParameter):
1357
+ """
1358
+ Parameter ReflectionsEnabled of value type bool.
1359
+ """
1360
+ pass
1361
+
1362
+ class ShadowMapEnabled(PyParameter):
1363
+ """
1364
+ Parameter ShadowMapEnabled of value type bool.
1365
+ """
1366
+ pass
1367
+
1368
+ class ShowEdgeReflections(PyParameter):
1369
+ """
1370
+ Parameter ShowEdgeReflections of value type bool.
1371
+ """
1372
+ pass
1373
+
1374
+ class ShowMarkerReflections(PyParameter):
1375
+ """
1376
+ Parameter ShowMarkerReflections of value type bool.
1377
+ """
1378
+ pass
1379
+
1380
+ class SimpleShadowsEnabled(PyParameter):
1381
+ """
1382
+ Parameter SimpleShadowsEnabled of value type bool.
1383
+ """
1384
+ pass
1385
+
1386
+ class UpdateAfterMouseRelease(PyParameter):
1387
+ """
1388
+ Parameter UpdateAfterMouseRelease of value type bool.
1389
+ """
1390
+ pass
1391
+
1392
+ class HardcopySettings(PyMenu):
1393
+ """
1394
+ Singleton HardcopySettings.
1395
+ """
1396
+ def __init__(self, service, rules, path):
1397
+ self.ExportEdgesForAVZ = self.__class__.ExportEdgesForAVZ(service, rules, path + [("ExportEdgesForAVZ", "")])
1398
+ self.HardcopyDriver = self.__class__.HardcopyDriver(service, rules, path + [("HardcopyDriver", "")])
1399
+ self.HardcopyLineWidth = self.__class__.HardcopyLineWidth(service, rules, path + [("HardcopyLineWidth", "")])
1400
+ self.HardwareImageAccel = self.__class__.HardwareImageAccel(service, rules, path + [("HardwareImageAccel", "")])
1401
+ self.PostScriptPermissionOverride = self.__class__.PostScriptPermissionOverride(service, rules, path + [("PostScriptPermissionOverride", "")])
1402
+ self.RetainColormapPosForAVZ = self.__class__.RetainColormapPosForAVZ(service, rules, path + [("RetainColormapPosForAVZ", "")])
1403
+ self.SaveEmbeddedHardcopiesSeparately = self.__class__.SaveEmbeddedHardcopiesSeparately(service, rules, path + [("SaveEmbeddedHardcopiesSeparately", "")])
1404
+ self.SaveEmbeddedWindowsInHardcopy = self.__class__.SaveEmbeddedWindowsInHardcopy(service, rules, path + [("SaveEmbeddedWindowsInHardcopy", "")])
1405
+ self.TransparentEmbeddedWindows = self.__class__.TransparentEmbeddedWindows(service, rules, path + [("TransparentEmbeddedWindows", "")])
1406
+ super().__init__(service, rules, path)
1407
+
1408
+ class ExportEdgesForAVZ(PyParameter):
1409
+ """
1410
+ Parameter ExportEdgesForAVZ of value type bool.
1411
+ """
1412
+ pass
1413
+
1414
+ class HardcopyDriver(PyTextual):
1415
+ """
1416
+ Parameter HardcopyDriver of value type str.
1417
+ """
1418
+ pass
1419
+
1420
+ class HardcopyLineWidth(PyNumerical):
1421
+ """
1422
+ Parameter HardcopyLineWidth of value type int.
1423
+ """
1424
+ pass
1425
+
1426
+ class HardwareImageAccel(PyParameter):
1427
+ """
1428
+ Parameter HardwareImageAccel of value type bool.
1429
+ """
1430
+ pass
1431
+
1432
+ class PostScriptPermissionOverride(PyParameter):
1433
+ """
1434
+ Parameter PostScriptPermissionOverride of value type bool.
1435
+ """
1436
+ pass
1437
+
1438
+ class RetainColormapPosForAVZ(PyParameter):
1439
+ """
1440
+ Parameter RetainColormapPosForAVZ of value type bool.
1441
+ """
1442
+ pass
1443
+
1444
+ class SaveEmbeddedHardcopiesSeparately(PyParameter):
1445
+ """
1446
+ Parameter SaveEmbeddedHardcopiesSeparately of value type bool.
1447
+ """
1448
+ pass
1449
+
1450
+ class SaveEmbeddedWindowsInHardcopy(PyParameter):
1451
+ """
1452
+ Parameter SaveEmbeddedWindowsInHardcopy of value type bool.
1453
+ """
1454
+ pass
1455
+
1456
+ class TransparentEmbeddedWindows(PyParameter):
1457
+ """
1458
+ Parameter TransparentEmbeddedWindows of value type bool.
1459
+ """
1460
+ pass
1461
+
1462
+ class Lighting(PyMenu):
1463
+ """
1464
+ Singleton Lighting.
1465
+ """
1466
+ def __init__(self, service, rules, path):
1467
+ self.AmbientLightIntensity = self.__class__.AmbientLightIntensity(service, rules, path + [("AmbientLightIntensity", "")])
1468
+ self.Headlight = self.__class__.Headlight(service, rules, path + [("Headlight", "")])
1469
+ self.HeadlightIntensity = self.__class__.HeadlightIntensity(service, rules, path + [("HeadlightIntensity", "")])
1470
+ self.LightingMethod = self.__class__.LightingMethod(service, rules, path + [("LightingMethod", "")])
1471
+ super().__init__(service, rules, path)
1472
+
1473
+ class AmbientLightIntensity(PyNumerical):
1474
+ """
1475
+ Parameter AmbientLightIntensity of value type float.
1476
+ """
1477
+ pass
1478
+
1479
+ class Headlight(PyTextual):
1480
+ """
1481
+ Parameter Headlight of value type str.
1482
+ """
1483
+ pass
1484
+
1485
+ class HeadlightIntensity(PyNumerical):
1486
+ """
1487
+ Parameter HeadlightIntensity of value type float.
1488
+ """
1489
+ pass
1490
+
1491
+ class LightingMethod(PyTextual):
1492
+ """
1493
+ Parameter LightingMethod of value type str.
1494
+ """
1495
+ pass
1496
+
1497
+ class ManageHoopsMemory(PyMenu):
1498
+ """
1499
+ Singleton ManageHoopsMemory.
1500
+ """
1501
+ def __init__(self, service, rules, path):
1502
+ self.Enabled = self.__class__.Enabled(service, rules, path + [("Enabled", "")])
1503
+ self.HSFImportLimit = self.__class__.HSFImportLimit(service, rules, path + [("HSFImportLimit", "")])
1504
+ super().__init__(service, rules, path)
1505
+
1506
+ class Enabled(PyParameter):
1507
+ """
1508
+ Parameter Enabled of value type bool.
1509
+ """
1510
+ pass
1511
+
1512
+ class HSFImportLimit(PyNumerical):
1513
+ """
1514
+ Parameter HSFImportLimit of value type int.
1515
+ """
1516
+ pass
1517
+
1518
+ class MaterialEffects(PyMenu):
1519
+ """
1520
+ Singleton MaterialEffects.
1521
+ """
1522
+ def __init__(self, service, rules, path):
1523
+ self.DecimationFilter = self.__class__.DecimationFilter(service, rules, path + [("DecimationFilter", "")])
1524
+ self.ParameterizationSource = self.__class__.ParameterizationSource(service, rules, path + [("ParameterizationSource", "")])
1525
+ self.TilingStyle = self.__class__.TilingStyle(service, rules, path + [("TilingStyle", "")])
1526
+ super().__init__(service, rules, path)
1527
+
1528
+ class DecimationFilter(PyTextual):
1529
+ """
1530
+ Parameter DecimationFilter of value type str.
1531
+ """
1532
+ pass
1533
+
1534
+ class ParameterizationSource(PyTextual):
1535
+ """
1536
+ Parameter ParameterizationSource of value type str.
1537
+ """
1538
+ pass
1539
+
1540
+ class TilingStyle(PyTextual):
1541
+ """
1542
+ Parameter TilingStyle of value type str.
1543
+ """
1544
+ pass
1545
+
1546
+ class MeshingMode(PyMenu):
1547
+ """
1548
+ Singleton MeshingMode.
1549
+ """
1550
+ def __init__(self, service, rules, path):
1551
+ self.GraphicsWindowDisplayTimeout = self.__class__.GraphicsWindowDisplayTimeout(service, rules, path + [("GraphicsWindowDisplayTimeout", "")])
1552
+ self.GraphicsWindowDisplayTimeoutValue = self.__class__.GraphicsWindowDisplayTimeoutValue(service, rules, path + [("GraphicsWindowDisplayTimeoutValue", "")])
1553
+ super().__init__(service, rules, path)
1554
+
1555
+ class GraphicsWindowDisplayTimeout(PyParameter):
1556
+ """
1557
+ Parameter GraphicsWindowDisplayTimeout of value type bool.
1558
+ """
1559
+ pass
1560
+
1561
+ class GraphicsWindowDisplayTimeoutValue(PyNumerical):
1562
+ """
1563
+ Parameter GraphicsWindowDisplayTimeoutValue of value type float.
1564
+ """
1565
+ pass
1566
+
1567
+ class Performance(PyMenu):
1568
+ """
1569
+ Singleton Performance.
1570
+ """
1571
+ def __init__(self, service, rules, path):
1572
+ self.FastDisplayMode = self.__class__.FastDisplayMode(service, rules, path + [("FastDisplayMode", "")])
1573
+ self.MinimumFrameRate = self.__class__.MinimumFrameRate(service, rules, path + [("MinimumFrameRate", "")])
1574
+ self.OptimizeInputData = self.__class__.OptimizeInputData(service, rules, path + [("OptimizeInputData", "")])
1575
+ self.OptimizeFor = self.__class__.OptimizeFor(service, rules, path + [("OptimizeFor", "")])
1576
+ self.RatioOfTargetFrameRateToClassifyHeavyGeometry = self.__class__.RatioOfTargetFrameRateToClassifyHeavyGeometry(service, rules, path + [("RatioOfTargetFrameRateToClassifyHeavyGeometry", "")])
1577
+ self.RatioOfTargetFrameRateToDeclassifyHeavyGeometry = self.__class__.RatioOfTargetFrameRateToDeclassifyHeavyGeometry(service, rules, path + [("RatioOfTargetFrameRateToDeclassifyHeavyGeometry", "")])
1578
+ super().__init__(service, rules, path)
1579
+
1580
+ class FastDisplayMode(PyMenu):
1581
+ """
1582
+ Singleton FastDisplayMode.
1583
+ """
1584
+ def __init__(self, service, rules, path):
1585
+ self.Culling = self.__class__.Culling(service, rules, path + [("Culling", "")])
1586
+ self.FacesShown = self.__class__.FacesShown(service, rules, path + [("FacesShown", "")])
1587
+ self.MarkersDecimation = self.__class__.MarkersDecimation(service, rules, path + [("MarkersDecimation", "")])
1588
+ self.NodesShown = self.__class__.NodesShown(service, rules, path + [("NodesShown", "")])
1589
+ self.PerimeterEdgesShown = self.__class__.PerimeterEdgesShown(service, rules, path + [("PerimeterEdgesShown", "")])
1590
+ self.SilhouetteShown = self.__class__.SilhouetteShown(service, rules, path + [("SilhouetteShown", "")])
1591
+ self.Status = self.__class__.Status(service, rules, path + [("Status", "")])
1592
+ self.Transparency = self.__class__.Transparency(service, rules, path + [("Transparency", "")])
1593
+ super().__init__(service, rules, path)
1594
+
1595
+ class Culling(PyNumerical):
1596
+ """
1597
+ Parameter Culling of value type int.
1598
+ """
1599
+ pass
1600
+
1601
+ class FacesShown(PyParameter):
1602
+ """
1603
+ Parameter FacesShown of value type bool.
1604
+ """
1605
+ pass
1606
+
1607
+ class MarkersDecimation(PyNumerical):
1608
+ """
1609
+ Parameter MarkersDecimation of value type float.
1610
+ """
1611
+ pass
1612
+
1613
+ class NodesShown(PyParameter):
1614
+ """
1615
+ Parameter NodesShown of value type bool.
1616
+ """
1617
+ pass
1618
+
1619
+ class PerimeterEdgesShown(PyParameter):
1620
+ """
1621
+ Parameter PerimeterEdgesShown of value type bool.
1622
+ """
1623
+ pass
1624
+
1625
+ class SilhouetteShown(PyParameter):
1626
+ """
1627
+ Parameter SilhouetteShown of value type bool.
1628
+ """
1629
+ pass
1630
+
1631
+ class Status(PyTextual):
1632
+ """
1633
+ Parameter Status of value type str.
1634
+ """
1635
+ pass
1636
+
1637
+ class Transparency(PyParameter):
1638
+ """
1639
+ Parameter Transparency of value type bool.
1640
+ """
1641
+ pass
1642
+
1643
+ class MinimumFrameRate(PyMenu):
1644
+ """
1645
+ Singleton MinimumFrameRate.
1646
+ """
1647
+ def __init__(self, service, rules, path):
1648
+ self.DynamicAdjustment = self.__class__.DynamicAdjustment(service, rules, path + [("DynamicAdjustment", "")])
1649
+ self.Enabled = self.__class__.Enabled(service, rules, path + [("Enabled", "")])
1650
+ self.FixedCullingValue = self.__class__.FixedCullingValue(service, rules, path + [("FixedCullingValue", "")])
1651
+ self.MaximumCullingThreshold = self.__class__.MaximumCullingThreshold(service, rules, path + [("MaximumCullingThreshold", "")])
1652
+ self.MinimumCullingThreshold = self.__class__.MinimumCullingThreshold(service, rules, path + [("MinimumCullingThreshold", "")])
1653
+ self.TargetFPS = self.__class__.TargetFPS(service, rules, path + [("TargetFPS", "")])
1654
+ super().__init__(service, rules, path)
1655
+
1656
+ class DynamicAdjustment(PyParameter):
1657
+ """
1658
+ Parameter DynamicAdjustment of value type bool.
1659
+ """
1660
+ pass
1661
+
1662
+ class Enabled(PyParameter):
1663
+ """
1664
+ Parameter Enabled of value type bool.
1665
+ """
1666
+ pass
1667
+
1668
+ class FixedCullingValue(PyNumerical):
1669
+ """
1670
+ Parameter FixedCullingValue of value type int.
1671
+ """
1672
+ pass
1673
+
1674
+ class MaximumCullingThreshold(PyNumerical):
1675
+ """
1676
+ Parameter MaximumCullingThreshold of value type int.
1677
+ """
1678
+ pass
1679
+
1680
+ class MinimumCullingThreshold(PyNumerical):
1681
+ """
1682
+ Parameter MinimumCullingThreshold of value type int.
1683
+ """
1684
+ pass
1685
+
1686
+ class TargetFPS(PyNumerical):
1687
+ """
1688
+ Parameter TargetFPS of value type int.
1689
+ """
1690
+ pass
1691
+
1692
+ class OptimizeInputData(PyMenu):
1693
+ """
1694
+ Singleton OptimizeInputData.
1695
+ """
1696
+ def __init__(self, service, rules, path):
1697
+ self.Enabled = self.__class__.Enabled(service, rules, path + [("Enabled", "")])
1698
+ self.MaximumFacetsPerShell = self.__class__.MaximumFacetsPerShell(service, rules, path + [("MaximumFacetsPerShell", "")])
1699
+ super().__init__(service, rules, path)
1700
+
1701
+ class Enabled(PyParameter):
1702
+ """
1703
+ Parameter Enabled of value type bool.
1704
+ """
1705
+ pass
1706
+
1707
+ class MaximumFacetsPerShell(PyNumerical):
1708
+ """
1709
+ Parameter MaximumFacetsPerShell of value type int.
1710
+ """
1711
+ pass
1712
+
1713
+ class OptimizeFor(PyTextual):
1714
+ """
1715
+ Parameter OptimizeFor of value type str.
1716
+ """
1717
+ pass
1718
+
1719
+ class RatioOfTargetFrameRateToClassifyHeavyGeometry(PyNumerical):
1720
+ """
1721
+ Parameter RatioOfTargetFrameRateToClassifyHeavyGeometry of value type float.
1722
+ """
1723
+ pass
1724
+
1725
+ class RatioOfTargetFrameRateToDeclassifyHeavyGeometry(PyNumerical):
1726
+ """
1727
+ Parameter RatioOfTargetFrameRateToDeclassifyHeavyGeometry of value type float.
1728
+ """
1729
+ pass
1730
+
1731
+ class RayTracingOptions(PyMenu):
1732
+ """
1733
+ Singleton RayTracingOptions.
1734
+ """
1735
+ def __init__(self, service, rules, path):
1736
+ self.VolumeRenderingMethod = self.__class__.VolumeRenderingMethod(service, rules, path + [("VolumeRenderingMethod", "")])
1737
+ super().__init__(service, rules, path)
1738
+
1739
+ class VolumeRenderingMethod(PyTextual):
1740
+ """
1741
+ Parameter VolumeRenderingMethod of value type str.
1742
+ """
1743
+ pass
1744
+
1745
+ class Transparency(PyMenu):
1746
+ """
1747
+ Singleton Transparency.
1748
+ """
1749
+ def __init__(self, service, rules, path):
1750
+ self.AlgorithmForModernDrivers = self.__class__.AlgorithmForModernDrivers(service, rules, path + [("AlgorithmForModernDrivers", "")])
1751
+ self.DepthPeelingLayers = self.__class__.DepthPeelingLayers(service, rules, path + [("DepthPeelingLayers", "")])
1752
+ self.DepthPeelingPreference = self.__class__.DepthPeelingPreference(service, rules, path + [("DepthPeelingPreference", "")])
1753
+ self.QuickMoves = self.__class__.QuickMoves(service, rules, path + [("QuickMoves", "")])
1754
+ self.ZSortOptions = self.__class__.ZSortOptions(service, rules, path + [("ZSortOptions", "")])
1755
+ super().__init__(service, rules, path)
1756
+
1757
+ class AlgorithmForModernDrivers(PyTextual):
1758
+ """
1759
+ Parameter AlgorithmForModernDrivers of value type str.
1760
+ """
1761
+ pass
1762
+
1763
+ class DepthPeelingLayers(PyNumerical):
1764
+ """
1765
+ Parameter DepthPeelingLayers of value type int.
1766
+ """
1767
+ pass
1768
+
1769
+ class DepthPeelingPreference(PyTextual):
1770
+ """
1771
+ Parameter DepthPeelingPreference of value type str.
1772
+ """
1773
+ pass
1774
+
1775
+ class QuickMoves(PyTextual):
1776
+ """
1777
+ Parameter QuickMoves of value type str.
1778
+ """
1779
+ pass
1780
+
1781
+ class ZSortOptions(PyTextual):
1782
+ """
1783
+ Parameter ZSortOptions of value type str.
1784
+ """
1785
+ pass
1786
+
1787
+ class VectorSettings(PyMenu):
1788
+ """
1789
+ Singleton VectorSettings.
1790
+ """
1791
+ def __init__(self, service, rules, path):
1792
+ self.Arrow3DRadius1Factor = self.__class__.Arrow3DRadius1Factor(service, rules, path + [("Arrow3DRadius1Factor", "")])
1793
+ self.Arrow3DRadius2Factor = self.__class__.Arrow3DRadius2Factor(service, rules, path + [("Arrow3DRadius2Factor", "")])
1794
+ self.Arrowhead3DRadius1Factor = self.__class__.Arrowhead3DRadius1Factor(service, rules, path + [("Arrowhead3DRadius1Factor", "")])
1795
+ self.LineArrow3DPerpendicularRadius = self.__class__.LineArrow3DPerpendicularRadius(service, rules, path + [("LineArrow3DPerpendicularRadius", "")])
1796
+ super().__init__(service, rules, path)
1797
+
1798
+ class Arrow3DRadius1Factor(PyNumerical):
1799
+ """
1800
+ Parameter Arrow3DRadius1Factor of value type float.
1801
+ """
1802
+ pass
1803
+
1804
+ class Arrow3DRadius2Factor(PyNumerical):
1805
+ """
1806
+ Parameter Arrow3DRadius2Factor of value type float.
1807
+ """
1808
+ pass
1809
+
1810
+ class Arrowhead3DRadius1Factor(PyNumerical):
1811
+ """
1812
+ Parameter Arrowhead3DRadius1Factor of value type float.
1813
+ """
1814
+ pass
1815
+
1816
+ class LineArrow3DPerpendicularRadius(PyNumerical):
1817
+ """
1818
+ Parameter LineArrow3DPerpendicularRadius of value type float.
1819
+ """
1820
+ pass
1821
+
1822
+ class AnimationOption(PyTextual):
1823
+ """
1824
+ Parameter AnimationOption of value type str.
1825
+ """
1826
+ pass
1827
+
1828
+ class BackfaceCull(PyParameter):
1829
+ """
1830
+ Parameter BackfaceCull of value type bool.
1831
+ """
1832
+ pass
1833
+
1834
+ class CameraNearLimit(PyNumerical):
1835
+ """
1836
+ Parameter CameraNearLimit of value type float.
1837
+ """
1838
+ pass
1839
+
1840
+ class DoubleBuffering(PyParameter):
1841
+ """
1842
+ Parameter DoubleBuffering of value type bool.
1843
+ """
1844
+ pass
1845
+
1846
+ class EnableCameraNearLimitToAvoidZFighting(PyParameter):
1847
+ """
1848
+ Parameter EnableCameraNearLimitToAvoidZFighting of value type bool.
1849
+ """
1850
+ pass
1851
+
1852
+ class EnableNonObjectBasedWorkflow(PyParameter):
1853
+ """
1854
+ Parameter EnableNonObjectBasedWorkflow of value type bool.
1855
+ """
1856
+ pass
1857
+
1858
+ class EventPollInterval(PyNumerical):
1859
+ """
1860
+ Parameter EventPollInterval of value type int.
1861
+ """
1862
+ pass
1863
+
1864
+ class EventPollTimeout(PyNumerical):
1865
+ """
1866
+ Parameter EventPollTimeout of value type int.
1867
+ """
1868
+ pass
1869
+
1870
+ class ForceKeyFrameAnimationMarkersToOff(PyParameter):
1871
+ """
1872
+ Parameter ForceKeyFrameAnimationMarkersToOff of value type bool.
1873
+ """
1874
+ pass
1875
+
1876
+ class GraphicsWindowLineWidth(PyTextual):
1877
+ """
1878
+ Parameter GraphicsWindowLineWidth of value type str.
1879
+ """
1880
+ pass
1881
+
1882
+ class GraphicsWindowPointSymbol(PyTextual):
1883
+ """
1884
+ Parameter GraphicsWindowPointSymbol of value type str.
1885
+ """
1886
+ pass
1887
+
1888
+ class HiddenSurfaceRemovalMethod(PyTextual):
1889
+ """
1890
+ Parameter HiddenSurfaceRemovalMethod of value type str.
1891
+ """
1892
+ pass
1893
+
1894
+ class HigherResolutionGraphicsWindowLineWidth(PyNumerical):
1895
+ """
1896
+ Parameter HigherResolutionGraphicsWindowLineWidth of value type float.
1897
+ """
1898
+ pass
1899
+
1900
+ class LowerResolutionGraphicsWindowLineWidth(PyNumerical):
1901
+ """
1902
+ Parameter LowerResolutionGraphicsWindowLineWidth of value type float.
1903
+ """
1904
+ pass
1905
+
1906
+ class MarkerDrawingMode(PyTextual):
1907
+ """
1908
+ Parameter MarkerDrawingMode of value type str.
1909
+ """
1910
+ pass
1911
+
1912
+ class MaxGraphicsTextSize(PyNumerical):
1913
+ """
1914
+ Parameter MaxGraphicsTextSize of value type int.
1915
+ """
1916
+ pass
1917
+
1918
+ class MinGraphicsTextSize(PyNumerical):
1919
+ """
1920
+ Parameter MinGraphicsTextSize of value type int.
1921
+ """
1922
+ pass
1923
+
1924
+ class PlotLegendMargin(PyNumerical):
1925
+ """
1926
+ Parameter PlotLegendMargin of value type float.
1927
+ """
1928
+ pass
1929
+
1930
+ class PointToolSize(PyNumerical):
1931
+ """
1932
+ Parameter PointToolSize of value type float.
1933
+ """
1934
+ pass
1935
+
1936
+ class RemovePartitionLines(PyParameter):
1937
+ """
1938
+ Parameter RemovePartitionLines of value type bool.
1939
+ """
1940
+ pass
1941
+
1942
+ class RemovePartitionLinesTolerance(PyNumerical):
1943
+ """
1944
+ Parameter RemovePartitionLinesTolerance of value type float.
1945
+ """
1946
+ pass
1947
+
1948
+ class RotationCenterpointVisible(PyParameter):
1949
+ """
1950
+ Parameter RotationCenterpointVisible of value type bool.
1951
+ """
1952
+ pass
1953
+
1954
+ class ScrollWheelEventEndTimer(PyNumerical):
1955
+ """
1956
+ Parameter ScrollWheelEventEndTimer of value type int.
1957
+ """
1958
+ pass
1959
+
1960
+ class SelectionHighlightWindow(PyParameter):
1961
+ """
1962
+ Parameter SelectionHighlightWindow of value type bool.
1963
+ """
1964
+ pass
1965
+
1966
+ class SetCameraNormalToSurfaceIncrements(PyNumerical):
1967
+ """
1968
+ Parameter SetCameraNormalToSurfaceIncrements of value type int.
1969
+ """
1970
+ pass
1971
+
1972
+ class ShowHiddenLines(PyParameter):
1973
+ """
1974
+ Parameter ShowHiddenLines of value type bool.
1975
+ """
1976
+ pass
1977
+
1978
+ class ShowHiddenSurfaces(PyParameter):
1979
+ """
1980
+ Parameter ShowHiddenSurfaces of value type bool.
1981
+ """
1982
+ pass
1983
+
1984
+ class SurfaceGeneralDisplacement(PyNumerical):
1985
+ """
1986
+ Parameter SurfaceGeneralDisplacement of value type int.
1987
+ """
1988
+ pass
1989
+
1990
+ class SwitchToOpenGLForRemoteVisualization(PyParameter):
1991
+ """
1992
+ Parameter SwitchToOpenGLForRemoteVisualization of value type bool.
1993
+ """
1994
+ pass
1995
+
1996
+ class TestUseExternalFunction(PyTextual):
1997
+ """
1998
+ Parameter TestUseExternalFunction of value type str.
1999
+ """
2000
+ pass
2001
+
2002
+ class TextWindowLineWidth(PyTextual):
2003
+ """
2004
+ Parameter TextWindowLineWidth of value type str.
2005
+ """
2006
+ pass
2007
+
2008
+ class MatProApp(PyMenu):
2009
+ """
2010
+ Singleton MatProApp.
2011
+ """
2012
+ def __init__(self, service, rules, path):
2013
+ self.CheckExpression = self.__class__.CheckExpression(service, rules, path + [("CheckExpression", "")])
2014
+ self.Statistics = self.__class__.Statistics(service, rules, path + [("Statistics", "")])
2015
+ self.BetaFeatures = self.__class__.BetaFeatures(service, rules, path + [("BetaFeatures", "")])
2016
+ self.CheckCrash = self.__class__.CheckCrash(service, rules, path + [("CheckCrash", "")])
2017
+ self.Debug = self.__class__.Debug(service, rules, path + [("Debug", "")])
2018
+ self.Focus = self.__class__.Focus(service, rules, path + [("Focus", "")])
2019
+ self.MeshNaming = self.__class__.MeshNaming(service, rules, path + [("MeshNaming", "")])
2020
+ self.Tracking = self.__class__.Tracking(service, rules, path + [("Tracking", "")])
2021
+ self.Warning = self.__class__.Warning(service, rules, path + [("Warning", "")])
2022
+ super().__init__(service, rules, path)
2023
+
2024
+ class CheckExpression(PyMenu):
2025
+ """
2026
+ Singleton CheckExpression.
2027
+ """
2028
+ def __init__(self, service, rules, path):
2029
+ self.Cdot = self.__class__.Cdot(service, rules, path + [("Cdot", "")])
2030
+ self.Coordinates = self.__class__.Coordinates(service, rules, path + [("Coordinates", "")])
2031
+ self.Dvv = self.__class__.Dvv(service, rules, path + [("Dvv", "")])
2032
+ self.Edot = self.__class__.Edot(service, rules, path + [("Edot", "")])
2033
+ self.Gdot = self.__class__.Gdot(service, rules, path + [("Gdot", "")])
2034
+ self.Giesekus = self.__class__.Giesekus(service, rules, path + [("Giesekus", "")])
2035
+ self.Pressure = self.__class__.Pressure(service, rules, path + [("Pressure", "")])
2036
+ self.Species = self.__class__.Species(service, rules, path + [("Species", "")])
2037
+ self.Temperature = self.__class__.Temperature(service, rules, path + [("Temperature", "")])
2038
+ self.Time = self.__class__.Time(service, rules, path + [("Time", "")])
2039
+ self.Velocities = self.__class__.Velocities(service, rules, path + [("Velocities", "")])
2040
+ self.Vorticity = self.__class__.Vorticity(service, rules, path + [("Vorticity", "")])
2041
+ super().__init__(service, rules, path)
2042
+
2043
+ class Cdot(PyNumerical):
2044
+ """
2045
+ Parameter Cdot of value type float.
2046
+ """
2047
+ pass
2048
+
2049
+ class Coordinates(PyNumerical):
2050
+ """
2051
+ Parameter Coordinates of value type float.
2052
+ """
2053
+ pass
2054
+
2055
+ class Dvv(PyNumerical):
2056
+ """
2057
+ Parameter Dvv of value type float.
2058
+ """
2059
+ pass
2060
+
2061
+ class Edot(PyNumerical):
2062
+ """
2063
+ Parameter Edot of value type float.
2064
+ """
2065
+ pass
2066
+
2067
+ class Gdot(PyNumerical):
2068
+ """
2069
+ Parameter Gdot of value type float.
2070
+ """
2071
+ pass
2072
+
2073
+ class Giesekus(PyNumerical):
2074
+ """
2075
+ Parameter Giesekus of value type float.
2076
+ """
2077
+ pass
2078
+
2079
+ class Pressure(PyNumerical):
2080
+ """
2081
+ Parameter Pressure of value type float.
2082
+ """
2083
+ pass
2084
+
2085
+ class Species(PyNumerical):
2086
+ """
2087
+ Parameter Species of value type float.
2088
+ """
2089
+ pass
2090
+
2091
+ class Temperature(PyNumerical):
2092
+ """
2093
+ Parameter Temperature of value type float.
2094
+ """
2095
+ pass
2096
+
2097
+ class Time(PyNumerical):
2098
+ """
2099
+ Parameter Time of value type float.
2100
+ """
2101
+ pass
2102
+
2103
+ class Velocities(PyNumerical):
2104
+ """
2105
+ Parameter Velocities of value type float.
2106
+ """
2107
+ pass
2108
+
2109
+ class Vorticity(PyNumerical):
2110
+ """
2111
+ Parameter Vorticity of value type float.
2112
+ """
2113
+ pass
2114
+
2115
+ class Statistics(PyMenu):
2116
+ """
2117
+ Singleton Statistics.
2118
+ """
2119
+ def __init__(self, service, rules, path):
2120
+ self.MaxPositions = self.__class__.MaxPositions(service, rules, path + [("MaxPositions", "")])
2121
+ self.QuickSlicing = self.__class__.QuickSlicing(service, rules, path + [("QuickSlicing", "")])
2122
+ super().__init__(service, rules, path)
2123
+
2124
+ class MaxPositions(PyNumerical):
2125
+ """
2126
+ Parameter MaxPositions of value type int.
2127
+ """
2128
+ pass
2129
+
2130
+ class QuickSlicing(PyParameter):
2131
+ """
2132
+ Parameter QuickSlicing of value type bool.
2133
+ """
2134
+ pass
2135
+
2136
+ class BetaFeatures(PyParameter):
2137
+ """
2138
+ Parameter BetaFeatures of value type bool.
2139
+ """
2140
+ pass
2141
+
2142
+ class CheckCrash(PyParameter):
2143
+ """
2144
+ Parameter CheckCrash of value type bool.
2145
+ """
2146
+ pass
2147
+
2148
+ class Debug(PyParameter):
2149
+ """
2150
+ Parameter Debug of value type bool.
2151
+ """
2152
+ pass
2153
+
2154
+ class Focus(PyParameter):
2155
+ """
2156
+ Parameter Focus of value type bool.
2157
+ """
2158
+ pass
2159
+
2160
+ class MeshNaming(PyTextual):
2161
+ """
2162
+ Parameter MeshNaming of value type str.
2163
+ """
2164
+ pass
2165
+
2166
+ class Tracking(PyParameter):
2167
+ """
2168
+ Parameter Tracking of value type bool.
2169
+ """
2170
+ pass
2171
+
2172
+ class Warning(PyParameter):
2173
+ """
2174
+ Parameter Warning of value type bool.
2175
+ """
2176
+ pass
2177
+
2178
+ class MeshingWorkflow(PyMenu):
2179
+ """
2180
+ Singleton MeshingWorkflow.
2181
+ """
2182
+ def __init__(self, service, rules, path):
2183
+ self.DrawSettings = self.__class__.DrawSettings(service, rules, path + [("DrawSettings", "")])
2184
+ self.CheckpointingOption = self.__class__.CheckpointingOption(service, rules, path + [("CheckpointingOption", "")])
2185
+ self.SaveCheckpointFiles = self.__class__.SaveCheckpointFiles(service, rules, path + [("SaveCheckpointFiles", "")])
2186
+ self.SaveWftFileWithMesh = self.__class__.SaveWftFileWithMesh(service, rules, path + [("SaveWftFileWithMesh", "")])
2187
+ self.TempFolder = self.__class__.TempFolder(service, rules, path + [("TempFolder", "")])
2188
+ self.TemplatesFolder = self.__class__.TemplatesFolder(service, rules, path + [("TemplatesFolder", "")])
2189
+ self.Verbosity = self.__class__.Verbosity(service, rules, path + [("Verbosity", "")])
2190
+ super().__init__(service, rules, path)
2191
+
2192
+ class DrawSettings(PyMenu):
2193
+ """
2194
+ Singleton DrawSettings.
2195
+ """
2196
+ def __init__(self, service, rules, path):
2197
+ self.AutoDraw = self.__class__.AutoDraw(service, rules, path + [("AutoDraw", "")])
2198
+ self.FaceZoneLimit = self.__class__.FaceZoneLimit(service, rules, path + [("FaceZoneLimit", "")])
2199
+ self.FacetLimit = self.__class__.FacetLimit(service, rules, path + [("FacetLimit", "")])
2200
+ super().__init__(service, rules, path)
2201
+
2202
+ class AutoDraw(PyTextual):
2203
+ """
2204
+ Parameter AutoDraw of value type str.
2205
+ """
2206
+ pass
2207
+
2208
+ class FaceZoneLimit(PyNumerical):
2209
+ """
2210
+ Parameter FaceZoneLimit of value type int.
2211
+ """
2212
+ pass
2213
+
2214
+ class FacetLimit(PyNumerical):
2215
+ """
2216
+ Parameter FacetLimit of value type int.
2217
+ """
2218
+ pass
2219
+
2220
+ class CheckpointingOption(PyTextual):
2221
+ """
2222
+ Parameter CheckpointingOption of value type str.
2223
+ """
2224
+ pass
2225
+
2226
+ class SaveCheckpointFiles(PyParameter):
2227
+ """
2228
+ Parameter SaveCheckpointFiles of value type bool.
2229
+ """
2230
+ pass
2231
+
2232
+ class SaveWftFileWithMesh(PyParameter):
2233
+ """
2234
+ Parameter SaveWftFileWithMesh of value type bool.
2235
+ """
2236
+ pass
2237
+
2238
+ class TempFolder(PyTextual):
2239
+ """
2240
+ Parameter TempFolder of value type str.
2241
+ """
2242
+ pass
2243
+
2244
+ class TemplatesFolder(PyTextual):
2245
+ """
2246
+ Parameter TemplatesFolder of value type str.
2247
+ """
2248
+ pass
2249
+
2250
+ class Verbosity(PyTextual):
2251
+ """
2252
+ Parameter Verbosity of value type str.
2253
+ """
2254
+ pass
2255
+
2256
+ class Navigation(PyMenu):
2257
+ """
2258
+ Singleton Navigation.
2259
+ """
2260
+ def __init__(self, service, rules, path):
2261
+ self.MouseMapping = self.__class__.MouseMapping(service, rules, path + [("MouseMapping", "")])
2262
+ super().__init__(service, rules, path)
2263
+
2264
+ class MouseMapping(PyMenu):
2265
+ """
2266
+ Singleton MouseMapping.
2267
+ """
2268
+ def __init__(self, service, rules, path):
2269
+ self.Additional = self.__class__.Additional(service, rules, path + [("Additional", "")])
2270
+ self.Basic = self.__class__.Basic(service, rules, path + [("Basic", "")])
2271
+ self.MOUSEMAPTHEME = self.__class__.MOUSEMAPTHEME(service, rules, path + [("MOUSEMAPTHEME", "")])
2272
+ super().__init__(service, rules, path)
2273
+
2274
+ class Additional(PyMenu):
2275
+ """
2276
+ Singleton Additional.
2277
+ """
2278
+ def __init__(self, service, rules, path):
2279
+ self.CTRLLMBCLICK = self.__class__.CTRLLMBCLICK(service, rules, path + [("CTRLLMBCLICK", "")])
2280
+ self.CTRLLMBDRAG = self.__class__.CTRLLMBDRAG(service, rules, path + [("CTRLLMBDRAG", "")])
2281
+ self.CTRLMMBCLICK = self.__class__.CTRLMMBCLICK(service, rules, path + [("CTRLMMBCLICK", "")])
2282
+ self.CTRLMMBDRAG = self.__class__.CTRLMMBDRAG(service, rules, path + [("CTRLMMBDRAG", "")])
2283
+ self.CTRLRMBCLICK = self.__class__.CTRLRMBCLICK(service, rules, path + [("CTRLRMBCLICK", "")])
2284
+ self.CTRLRMBDRAG = self.__class__.CTRLRMBDRAG(service, rules, path + [("CTRLRMBDRAG", "")])
2285
+ self.MOUSEPROBE = self.__class__.MOUSEPROBE(service, rules, path + [("MOUSEPROBE", "")])
2286
+ self.MOUSEWHEEL = self.__class__.MOUSEWHEEL(service, rules, path + [("MOUSEWHEEL", "")])
2287
+ self.MOUSEWHEELSENSITIVITY = self.__class__.MOUSEWHEELSENSITIVITY(service, rules, path + [("MOUSEWHEELSENSITIVITY", "")])
2288
+ self.REVERSEWHEELDIRECTION = self.__class__.REVERSEWHEELDIRECTION(service, rules, path + [("REVERSEWHEELDIRECTION", "")])
2289
+ self.SHIFTLMBCLICK = self.__class__.SHIFTLMBCLICK(service, rules, path + [("SHIFTLMBCLICK", "")])
2290
+ self.SHIFTLMBDRAG = self.__class__.SHIFTLMBDRAG(service, rules, path + [("SHIFTLMBDRAG", "")])
2291
+ self.SHIFTMMBCLICK = self.__class__.SHIFTMMBCLICK(service, rules, path + [("SHIFTMMBCLICK", "")])
2292
+ self.SHIFTMMBDRAG = self.__class__.SHIFTMMBDRAG(service, rules, path + [("SHIFTMMBDRAG", "")])
2293
+ self.SHIFTRMBCLICK = self.__class__.SHIFTRMBCLICK(service, rules, path + [("SHIFTRMBCLICK", "")])
2294
+ self.SHIFTRMBDRAG = self.__class__.SHIFTRMBDRAG(service, rules, path + [("SHIFTRMBDRAG", "")])
2295
+ super().__init__(service, rules, path)
2296
+
2297
+ class CTRLLMBCLICK(PyTextual):
2298
+ """
2299
+ Parameter CTRLLMBCLICK of value type str.
2300
+ """
2301
+ pass
2302
+
2303
+ class CTRLLMBDRAG(PyTextual):
2304
+ """
2305
+ Parameter CTRLLMBDRAG of value type str.
2306
+ """
2307
+ pass
2308
+
2309
+ class CTRLMMBCLICK(PyTextual):
2310
+ """
2311
+ Parameter CTRLMMBCLICK of value type str.
2312
+ """
2313
+ pass
2314
+
2315
+ class CTRLMMBDRAG(PyTextual):
2316
+ """
2317
+ Parameter CTRLMMBDRAG of value type str.
2318
+ """
2319
+ pass
2320
+
2321
+ class CTRLRMBCLICK(PyTextual):
2322
+ """
2323
+ Parameter CTRLRMBCLICK of value type str.
2324
+ """
2325
+ pass
2326
+
2327
+ class CTRLRMBDRAG(PyTextual):
2328
+ """
2329
+ Parameter CTRLRMBDRAG of value type str.
2330
+ """
2331
+ pass
2332
+
2333
+ class MOUSEPROBE(PyTextual):
2334
+ """
2335
+ Parameter MOUSEPROBE of value type str.
2336
+ """
2337
+ pass
2338
+
2339
+ class MOUSEWHEEL(PyTextual):
2340
+ """
2341
+ Parameter MOUSEWHEEL of value type str.
2342
+ """
2343
+ pass
2344
+
2345
+ class MOUSEWHEELSENSITIVITY(PyNumerical):
2346
+ """
2347
+ Parameter MOUSEWHEELSENSITIVITY of value type float.
2348
+ """
2349
+ pass
2350
+
2351
+ class REVERSEWHEELDIRECTION(PyParameter):
2352
+ """
2353
+ Parameter REVERSEWHEELDIRECTION of value type bool.
2354
+ """
2355
+ pass
2356
+
2357
+ class SHIFTLMBCLICK(PyTextual):
2358
+ """
2359
+ Parameter SHIFTLMBCLICK of value type str.
2360
+ """
2361
+ pass
2362
+
2363
+ class SHIFTLMBDRAG(PyTextual):
2364
+ """
2365
+ Parameter SHIFTLMBDRAG of value type str.
2366
+ """
2367
+ pass
2368
+
2369
+ class SHIFTMMBCLICK(PyTextual):
2370
+ """
2371
+ Parameter SHIFTMMBCLICK of value type str.
2372
+ """
2373
+ pass
2374
+
2375
+ class SHIFTMMBDRAG(PyTextual):
2376
+ """
2377
+ Parameter SHIFTMMBDRAG of value type str.
2378
+ """
2379
+ pass
2380
+
2381
+ class SHIFTRMBCLICK(PyTextual):
2382
+ """
2383
+ Parameter SHIFTRMBCLICK of value type str.
2384
+ """
2385
+ pass
2386
+
2387
+ class SHIFTRMBDRAG(PyTextual):
2388
+ """
2389
+ Parameter SHIFTRMBDRAG of value type str.
2390
+ """
2391
+ pass
2392
+
2393
+ class Basic(PyMenu):
2394
+ """
2395
+ Singleton Basic.
2396
+ """
2397
+ def __init__(self, service, rules, path):
2398
+ self.LMB = self.__class__.LMB(service, rules, path + [("LMB", "")])
2399
+ self.LMBCLICK = self.__class__.LMBCLICK(service, rules, path + [("LMBCLICK", "")])
2400
+ self.MMB = self.__class__.MMB(service, rules, path + [("MMB", "")])
2401
+ self.MMBCLICK = self.__class__.MMBCLICK(service, rules, path + [("MMBCLICK", "")])
2402
+ self.RMB = self.__class__.RMB(service, rules, path + [("RMB", "")])
2403
+ self.RMBCLICK = self.__class__.RMBCLICK(service, rules, path + [("RMBCLICK", "")])
2404
+ super().__init__(service, rules, path)
2405
+
2406
+ class LMB(PyTextual):
2407
+ """
2408
+ Parameter LMB of value type str.
2409
+ """
2410
+ pass
2411
+
2412
+ class LMBCLICK(PyTextual):
2413
+ """
2414
+ Parameter LMBCLICK of value type str.
2415
+ """
2416
+ pass
2417
+
2418
+ class MMB(PyTextual):
2419
+ """
2420
+ Parameter MMB of value type str.
2421
+ """
2422
+ pass
2423
+
2424
+ class MMBCLICK(PyTextual):
2425
+ """
2426
+ Parameter MMBCLICK of value type str.
2427
+ """
2428
+ pass
2429
+
2430
+ class RMB(PyTextual):
2431
+ """
2432
+ Parameter RMB of value type str.
2433
+ """
2434
+ pass
2435
+
2436
+ class RMBCLICK(PyTextual):
2437
+ """
2438
+ Parameter RMBCLICK of value type str.
2439
+ """
2440
+ pass
2441
+
2442
+ class MOUSEMAPTHEME(PyTextual):
2443
+ """
2444
+ Parameter MOUSEMAPTHEME of value type str.
2445
+ """
2446
+ pass
2447
+
2448
+ class ParametricStudy(PyMenu):
2449
+ """
2450
+ Singleton ParametricStudy.
2451
+ """
2452
+ def __init__(self, service, rules, path):
2453
+ self.LayoutOptions = self.__class__.LayoutOptions(service, rules, path + [("LayoutOptions", "")])
2454
+ self.UpdateOptions = self.__class__.UpdateOptions(service, rules, path + [("UpdateOptions", "")])
2455
+ super().__init__(service, rules, path)
2456
+
2457
+ class LayoutOptions(PyMenu):
2458
+ """
2459
+ Singleton LayoutOptions.
2460
+ """
2461
+ def __init__(self, service, rules, path):
2462
+ self.CurrentCaseParameters = self.__class__.CurrentCaseParameters(service, rules, path + [("CurrentCaseParameters", "")])
2463
+ self.ParametricStudyTree = self.__class__.ParametricStudyTree(service, rules, path + [("ParametricStudyTree", "")])
2464
+ super().__init__(service, rules, path)
2465
+
2466
+ class CurrentCaseParameters(PyParameter):
2467
+ """
2468
+ Parameter CurrentCaseParameters of value type bool.
2469
+ """
2470
+ pass
2471
+
2472
+ class ParametricStudyTree(PyParameter):
2473
+ """
2474
+ Parameter ParametricStudyTree of value type bool.
2475
+ """
2476
+ pass
2477
+
2478
+ class UpdateOptions(PyMenu):
2479
+ """
2480
+ Singleton UpdateOptions.
2481
+ """
2482
+ def __init__(self, service, rules, path):
2483
+ self.AutoRefreshTime = self.__class__.AutoRefreshTime(service, rules, path + [("AutoRefreshTime", "")])
2484
+ self.CaptureSimReportData = self.__class__.CaptureSimReportData(service, rules, path + [("CaptureSimReportData", "")])
2485
+ self.EnableAutoRefresh = self.__class__.EnableAutoRefresh(service, rules, path + [("EnableAutoRefresh", "")])
2486
+ self.ParameterValuePrecision = self.__class__.ParameterValuePrecision(service, rules, path + [("ParameterValuePrecision", "")])
2487
+ self.SaveProjectAfterDPUpdate = self.__class__.SaveProjectAfterDPUpdate(service, rules, path + [("SaveProjectAfterDPUpdate", "")])
2488
+ self.WriteData = self.__class__.WriteData(service, rules, path + [("WriteData", "")])
2489
+ super().__init__(service, rules, path)
2490
+
2491
+ class AutoRefreshTime(PyNumerical):
2492
+ """
2493
+ Parameter AutoRefreshTime of value type int.
2494
+ """
2495
+ pass
2496
+
2497
+ class CaptureSimReportData(PyParameter):
2498
+ """
2499
+ Parameter CaptureSimReportData of value type bool.
2500
+ """
2501
+ pass
2502
+
2503
+ class EnableAutoRefresh(PyParameter):
2504
+ """
2505
+ Parameter EnableAutoRefresh of value type bool.
2506
+ """
2507
+ pass
2508
+
2509
+ class ParameterValuePrecision(PyNumerical):
2510
+ """
2511
+ Parameter ParameterValuePrecision of value type int.
2512
+ """
2513
+ pass
2514
+
2515
+ class SaveProjectAfterDPUpdate(PyParameter):
2516
+ """
2517
+ Parameter SaveProjectAfterDPUpdate of value type bool.
2518
+ """
2519
+ pass
2520
+
2521
+ class WriteData(PyParameter):
2522
+ """
2523
+ Parameter WriteData of value type bool.
2524
+ """
2525
+ pass
2526
+
2527
+ class PrjApp(PyMenu):
2528
+ """
2529
+ Singleton PrjApp.
2530
+ """
2531
+ def __init__(self, service, rules, path):
2532
+ self.AdvancedFlag = self.__class__.AdvancedFlag(service, rules, path + [("AdvancedFlag", "")])
2533
+ self.BetaFlag = self.__class__.BetaFlag(service, rules, path + [("BetaFlag", "")])
2534
+ self.UnitSystem = self.__class__.UnitSystem(service, rules, path + [("UnitSystem", "")])
2535
+ super().__init__(service, rules, path)
2536
+
2537
+ class AdvancedFlag(PyParameter):
2538
+ """
2539
+ Parameter AdvancedFlag of value type bool.
2540
+ """
2541
+ pass
2542
+
2543
+ class BetaFlag(PyParameter):
2544
+ """
2545
+ Parameter BetaFlag of value type bool.
2546
+ """
2547
+ pass
2548
+
2549
+ class UnitSystem(PyTextual):
2550
+ """
2551
+ Parameter UnitSystem of value type str.
2552
+ """
2553
+ pass
2554
+
2555
+ class PythonConsole(PyMenu):
2556
+ """
2557
+ Singleton PythonConsole.
2558
+ """
2559
+ def __init__(self, service, rules, path):
2560
+ self.ConsoleSuggestion = self.__class__.ConsoleSuggestion(service, rules, path + [("ConsoleSuggestion", "")])
2561
+ self.ConsoleSuggestionActiveOnly = self.__class__.ConsoleSuggestionActiveOnly(service, rules, path + [("ConsoleSuggestionActiveOnly", "")])
2562
+ self.PrettyPrintDict = self.__class__.PrettyPrintDict(service, rules, path + [("PrettyPrintDict", "")])
2563
+ super().__init__(service, rules, path)
2564
+
2565
+ class ConsoleSuggestion(PyParameter):
2566
+ """
2567
+ Parameter ConsoleSuggestion of value type bool.
2568
+ """
2569
+ pass
2570
+
2571
+ class ConsoleSuggestionActiveOnly(PyParameter):
2572
+ """
2573
+ Parameter ConsoleSuggestionActiveOnly of value type bool.
2574
+ """
2575
+ pass
2576
+
2577
+ class PrettyPrintDict(PyParameter):
2578
+ """
2579
+ Parameter PrettyPrintDict of value type bool.
2580
+ """
2581
+ pass
2582
+
2583
+ class Simulation(PyMenu):
2584
+ """
2585
+ Singleton Simulation.
2586
+ """
2587
+ def __init__(self, service, rules, path):
2588
+ self.ReportDefinitions = self.__class__.ReportDefinitions(service, rules, path + [("ReportDefinitions", "")])
2589
+ self.FlowModel = self.__class__.FlowModel(service, rules, path + [("FlowModel", "")])
2590
+ self.LocalResidualScaling = self.__class__.LocalResidualScaling(service, rules, path + [("LocalResidualScaling", "")])
2591
+ self.PdfCombustionRobustNumerics = self.__class__.PdfCombustionRobustNumerics(service, rules, path + [("PdfCombustionRobustNumerics", "")])
2592
+ super().__init__(service, rules, path)
2593
+
2594
+ class ReportDefinitions(PyMenu):
2595
+ """
2596
+ Singleton ReportDefinitions.
2597
+ """
2598
+ def __init__(self, service, rules, path):
2599
+ self.AutomaticPlotFile = self.__class__.AutomaticPlotFile(service, rules, path + [("AutomaticPlotFile", "")])
2600
+ self.ReportPlotHistoryDataSize = self.__class__.ReportPlotHistoryDataSize(service, rules, path + [("ReportPlotHistoryDataSize", "")])
2601
+ super().__init__(service, rules, path)
2602
+
2603
+ class AutomaticPlotFile(PyParameter):
2604
+ """
2605
+ Parameter AutomaticPlotFile of value type bool.
2606
+ """
2607
+ pass
2608
+
2609
+ class ReportPlotHistoryDataSize(PyNumerical):
2610
+ """
2611
+ Parameter ReportPlotHistoryDataSize of value type int.
2612
+ """
2613
+ pass
2614
+
2615
+ class FlowModel(PyTextual):
2616
+ """
2617
+ Parameter FlowModel of value type str.
2618
+ """
2619
+ pass
2620
+
2621
+ class LocalResidualScaling(PyParameter):
2622
+ """
2623
+ Parameter LocalResidualScaling of value type bool.
2624
+ """
2625
+ pass
2626
+
2627
+ class PdfCombustionRobustNumerics(PyParameter):
2628
+ """
2629
+ Parameter PdfCombustionRobustNumerics of value type bool.
2630
+ """
2631
+ pass
2632
+
2633
+ class TurboWorkflow(PyMenu):
2634
+ """
2635
+ Singleton TurboWorkflow.
2636
+ """
2637
+ def __init__(self, service, rules, path):
2638
+ self.FaceZoneSettings = self.__class__.FaceZoneSettings(service, rules, path + [("FaceZoneSettings", "")])
2639
+ self.GraphicsSettings = self.__class__.GraphicsSettings(service, rules, path + [("GraphicsSettings", "")])
2640
+ self.CheckpointingOption = self.__class__.CheckpointingOption(service, rules, path + [("CheckpointingOption", "")])
2641
+ self.SaveCheckpointFiles = self.__class__.SaveCheckpointFiles(service, rules, path + [("SaveCheckpointFiles", "")])
2642
+ super().__init__(service, rules, path)
2643
+
2644
+ class FaceZoneSettings(PyMenu):
2645
+ """
2646
+ Singleton FaceZoneSettings.
2647
+ """
2648
+ def __init__(self, service, rules, path):
2649
+ self.BladeRegion = self.__class__.BladeRegion(service, rules, path + [("BladeRegion", "")])
2650
+ self.FZSearchOrder = self.__class__.FZSearchOrder(service, rules, path + [("FZSearchOrder", "")])
2651
+ self.HubRegion = self.__class__.HubRegion(service, rules, path + [("HubRegion", "")])
2652
+ self.InletRegion = self.__class__.InletRegion(service, rules, path + [("InletRegion", "")])
2653
+ self.InteriorRegion = self.__class__.InteriorRegion(service, rules, path + [("InteriorRegion", "")])
2654
+ self.OutletRegion = self.__class__.OutletRegion(service, rules, path + [("OutletRegion", "")])
2655
+ self.Periodic1Region = self.__class__.Periodic1Region(service, rules, path + [("Periodic1Region", "")])
2656
+ self.Periodic2Region = self.__class__.Periodic2Region(service, rules, path + [("Periodic2Region", "")])
2657
+ self.ShroudRegion = self.__class__.ShroudRegion(service, rules, path + [("ShroudRegion", "")])
2658
+ self.SymmetryRegion = self.__class__.SymmetryRegion(service, rules, path + [("SymmetryRegion", "")])
2659
+ self.Tip1Region = self.__class__.Tip1Region(service, rules, path + [("Tip1Region", "")])
2660
+ self.Tip2Region = self.__class__.Tip2Region(service, rules, path + [("Tip2Region", "")])
2661
+ super().__init__(service, rules, path)
2662
+
2663
+ class BladeRegion(PyTextual):
2664
+ """
2665
+ Parameter BladeRegion of value type str.
2666
+ """
2667
+ pass
2668
+
2669
+ class FZSearchOrder(PyTextual):
2670
+ """
2671
+ Parameter FZSearchOrder of value type str.
2672
+ """
2673
+ pass
2674
+
2675
+ class HubRegion(PyTextual):
2676
+ """
2677
+ Parameter HubRegion of value type str.
2678
+ """
2679
+ pass
2680
+
2681
+ class InletRegion(PyTextual):
2682
+ """
2683
+ Parameter InletRegion of value type str.
2684
+ """
2685
+ pass
2686
+
2687
+ class InteriorRegion(PyTextual):
2688
+ """
2689
+ Parameter InteriorRegion of value type str.
2690
+ """
2691
+ pass
2692
+
2693
+ class OutletRegion(PyTextual):
2694
+ """
2695
+ Parameter OutletRegion of value type str.
2696
+ """
2697
+ pass
2698
+
2699
+ class Periodic1Region(PyTextual):
2700
+ """
2701
+ Parameter Periodic1Region of value type str.
2702
+ """
2703
+ pass
2704
+
2705
+ class Periodic2Region(PyTextual):
2706
+ """
2707
+ Parameter Periodic2Region of value type str.
2708
+ """
2709
+ pass
2710
+
2711
+ class ShroudRegion(PyTextual):
2712
+ """
2713
+ Parameter ShroudRegion of value type str.
2714
+ """
2715
+ pass
2716
+
2717
+ class SymmetryRegion(PyTextual):
2718
+ """
2719
+ Parameter SymmetryRegion of value type str.
2720
+ """
2721
+ pass
2722
+
2723
+ class Tip1Region(PyTextual):
2724
+ """
2725
+ Parameter Tip1Region of value type str.
2726
+ """
2727
+ pass
2728
+
2729
+ class Tip2Region(PyTextual):
2730
+ """
2731
+ Parameter Tip2Region of value type str.
2732
+ """
2733
+ pass
2734
+
2735
+ class GraphicsSettings(PyMenu):
2736
+ """
2737
+ Singleton GraphicsSettings.
2738
+ """
2739
+ def __init__(self, service, rules, path):
2740
+ self.AutoDraw = self.__class__.AutoDraw(service, rules, path + [("AutoDraw", "")])
2741
+ super().__init__(service, rules, path)
2742
+
2743
+ class AutoDraw(PyParameter):
2744
+ """
2745
+ Parameter AutoDraw of value type bool.
2746
+ """
2747
+ pass
2748
+
2749
+ class CheckpointingOption(PyTextual):
2750
+ """
2751
+ Parameter CheckpointingOption of value type str.
2752
+ """
2753
+ pass
2754
+
2755
+ class SaveCheckpointFiles(PyParameter):
2756
+ """
2757
+ Parameter SaveCheckpointFiles of value type bool.
2758
+ """
2759
+ pass
2760
+