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.
- ansys/fluent/core/__init__.py +22 -9
- ansys/fluent/core/_version.py +5 -2
- ansys/fluent/core/codegen/__init__.py +0 -3
- ansys/fluent/core/codegen/allapigen.py +1 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +44 -10
- ansys/fluent/core/codegen/datamodelgen.py +53 -12
- ansys/fluent/core/codegen/settingsgen.py +21 -12
- ansys/fluent/core/codegen/settingsgen_old.py +2 -2
- ansys/fluent/core/codegen/tuigen.py +1 -1
- ansys/fluent/core/codegen/write_settings_yaml.py +3 -4
- ansys/fluent/core/data_model_cache.py +132 -70
- ansys/fluent/core/docs/README.rst +2 -2
- ansys/fluent/core/examples/downloads.py +3 -5
- ansys/fluent/core/exceptions.py +1 -0
- ansys/fluent/core/file_session.py +59 -131
- ansys/fluent/core/filereader/case_file.py +17 -17
- ansys/fluent/core/filereader/casereader.py +2 -1
- ansys/fluent/core/filereader/data_file.py +7 -7
- ansys/fluent/core/filereader/lispy.py +6 -1
- ansys/fluent/core/fluent_connection.py +35 -7
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_222/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_222/PartManagement.py +28 -28
- ansys/fluent/core/generated/datamodel_222/meshing.py +301 -301
- ansys/fluent/core/generated/datamodel_222/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_231/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_231/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_231/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_231/meshing.py +317 -317
- ansys/fluent/core/generated/datamodel_231/solverworkflow.py +51 -51
- ansys/fluent/core/generated/datamodel_231/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_232/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_232/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_232/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_232/meshing.py +335 -335
- ansys/fluent/core/generated/datamodel_232/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_232/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_241/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_241/PartManagement.py +57 -57
- ansys/fluent/core/generated/datamodel_241/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_241/meshing.py +361 -361
- ansys/fluent/core/generated/datamodel_241/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_241/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py +240 -240
- ansys/fluent/core/generated/datamodel_242/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_242/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_242/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_242/meshing.py +371 -371
- ansys/fluent/core/generated/datamodel_242/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_242/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py +244 -244
- ansys/fluent/core/generated/datamodel_251/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_251/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_251/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_251/meshing.py +384 -382
- ansys/fluent/core/generated/datamodel_251/preferences.py +7 -0
- ansys/fluent/core/generated/datamodel_251/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_251/workflow.py +10 -10
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +3664 -0
- ansys/fluent/core/generated/datamodel_252/PMFileManagement.py +288 -0
- ansys/fluent/core/generated/datamodel_252/PartManagement.py +2588 -0
- ansys/fluent/core/generated/datamodel_252/flicing.py +7972 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +2644 -0
- ansys/fluent/core/generated/datamodel_252/preferences.py +2760 -0
- ansys/fluent/core/generated/datamodel_252/solverworkflow.py +479 -0
- ansys/fluent/core/generated/datamodel_252/workflow.py +466 -0
- ansys/fluent/core/generated/fluent_version_251.py +4 -4
- ansys/fluent/core/generated/fluent_version_252.py +5 -0
- ansys/fluent/core/generated/meshing/tui_251.py +1139 -1179
- ansys/fluent/core/generated/meshing/tui_252.py +10181 -0
- ansys/fluent/core/generated/solver/settings_222.py +3 -3
- ansys/fluent/core/generated/solver/settings_231.py +4 -4
- ansys/fluent/core/generated/solver/settings_232.py +5 -5
- ansys/fluent/core/generated/solver/settings_241.py +5 -5
- ansys/fluent/core/generated/solver/settings_242.py +1185 -1185
- ansys/fluent/core/generated/solver/settings_251.py +1847 -1652
- ansys/fluent/core/generated/solver/settings_251.pyi +237 -211
- ansys/fluent/core/generated/solver/settings_252.py +90369 -0
- ansys/fluent/core/generated/solver/settings_252.pyi +63778 -0
- ansys/fluent/core/generated/solver/settings_builtin.py +612 -1
- ansys/fluent/core/generated/solver/settings_builtin.pyi +235 -0
- ansys/fluent/core/generated/solver/tui_251.py +2283 -2103
- ansys/fluent/core/generated/solver/tui_252.py +37720 -0
- ansys/fluent/core/journaling.py +1 -1
- ansys/fluent/core/launcher/error_handler.py +3 -0
- ansys/fluent/core/launcher/fluent_container.py +5 -0
- ansys/fluent/core/launcher/launcher.py +1 -2
- ansys/fluent/core/launcher/launcher_utils.py +17 -6
- ansys/fluent/core/launcher/process_launch_string.py +3 -3
- ansys/fluent/core/launcher/pyfluent_enums.py +1 -1
- ansys/fluent/core/launcher/slurm_launcher.py +2 -1
- ansys/fluent/core/launcher/standalone_launcher.py +11 -5
- ansys/fluent/core/launcher/watchdog.py +1 -1
- ansys/fluent/core/launcher/watchdog_exec +6 -3
- ansys/fluent/core/logging.py +1 -5
- ansys/fluent/core/parametric.py +6 -3
- ansys/fluent/core/post_objects/meta.py +1 -39
- ansys/fluent/core/post_objects/post_helper.py +4 -3
- ansys/fluent/core/post_objects/post_object_definitions.py +12 -7
- ansys/fluent/core/post_objects/post_objects_container.py +39 -2
- ansys/fluent/core/rpvars.py +2 -1
- ansys/fluent/core/scheduler/machine_list.py +3 -1
- ansys/fluent/core/search.py +109 -262
- ansys/fluent/core/services/__init__.py +3 -0
- ansys/fluent/core/services/api_upgrade.py +1 -0
- ansys/fluent/core/services/batch_ops.py +3 -1
- ansys/fluent/core/services/datamodel_se.py +37 -30
- ansys/fluent/core/services/datamodel_tui.py +8 -3
- ansys/fluent/core/services/deprecated_field_data.py +691 -0
- ansys/fluent/core/services/field_data.py +67 -357
- ansys/fluent/core/services/interceptors.py +6 -4
- ansys/fluent/core/services/reduction.py +1 -2
- ansys/fluent/core/services/scheme_eval.py +2 -3
- ansys/fluent/core/services/solution_variables.py +46 -48
- ansys/fluent/core/session.py +6 -4
- ansys/fluent/core/session_meshing.pyi +5 -0
- ansys/fluent/core/session_pure_meshing.pyi +4 -1
- ansys/fluent/core/session_solver_lite.py +2 -1
- ansys/fluent/core/solver/flobject.py +179 -207
- ansys/fluent/core/solver/flunits.py +65 -56
- ansys/fluent/core/solver/function/reduction.py +9 -29
- ansys/fluent/core/solver/settings_builtin_bases.py +28 -22
- ansys/fluent/core/solver/settings_builtin_data.py +105 -1
- ansys/fluent/core/solver/settings_external.py +0 -28
- ansys/fluent/core/streaming_services/field_data_streaming.py +1 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +0 -1
- ansys/fluent/core/systemcoupling.py +145 -14
- ansys/fluent/core/utils/__init__.py +18 -2
- ansys/fluent/core/utils/dump_session_data.py +7 -4
- ansys/fluent/core/utils/execution.py +2 -2
- ansys/fluent/core/utils/file_transfer_service.py +37 -42
- ansys/fluent/core/utils/fluent_version.py +20 -2
- ansys/fluent/core/utils/networking.py +39 -1
- ansys/fluent/core/workflow.py +3 -15
- ansys/fluent/tests/conftest.py +89 -7
- ansys/fluent/tests/fluent/test_version/test.py +2 -0
- ansys/fluent/tests/fluent_fixtures.py +195 -0
- ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +7 -7
- ansys/fluent/tests/parametric/test_parametric_workflow.py +14 -4
- ansys/fluent/tests/test_builtin_settings.py +28 -0
- ansys/fluent/tests/test_cad_to_post_ftm.py +1 -3
- ansys/fluent/tests/test_cad_to_post_wtm.py +1 -1
- ansys/fluent/tests/test_casereader.py +1 -1
- ansys/fluent/tests/test_codegen.py +116 -6
- ansys/fluent/tests/test_data_model_cache.py +1 -1
- ansys/fluent/tests/test_datamodel_service.py +14 -19
- ansys/fluent/tests/test_field_data.py +93 -45
- ansys/fluent/tests/test_file_session.py +32 -29
- ansys/fluent/tests/test_flobject.py +16 -58
- ansys/fluent/tests/test_fluent_fixes.py +5 -5
- ansys/fluent/tests/test_fluent_session.py +11 -8
- ansys/fluent/tests/test_fluent_version.py +1 -1
- ansys/fluent/tests/test_launcher.py +22 -5
- ansys/fluent/tests/test_launcher_remote.py +80 -4
- ansys/fluent/tests/test_meshing_utilities.py +93 -44
- ansys/fluent/tests/test_meshing_workflow.py +6 -6
- ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +1 -1
- ansys/fluent/tests/test_new_meshing_workflow.py +42 -3
- ansys/fluent/tests/test_preferences.py +6 -6
- ansys/fluent/tests/test_reduction.py +61 -30
- ansys/fluent/tests/test_rp_vars.py +1 -1
- ansys/fluent/tests/test_search.py +53 -200
- ansys/fluent/tests/test_session.py +18 -13
- ansys/fluent/tests/test_settings_api.py +93 -29
- ansys/fluent/tests/test_settings_reader.py +1 -1
- ansys/fluent/tests/test_solver_monitors.py +1 -1
- ansys/fluent/tests/test_solvermode/test_calculationactivities.py +4 -4
- ansys/fluent/tests/test_solvermode/test_controls.py +3 -3
- ansys/fluent/tests/test_solvermode/test_methods.py +1 -1
- ansys/fluent/tests/test_solvermode/test_models.py +3 -3
- ansys/fluent/tests/test_systemcoupling.py +33 -5
- ansys/fluent/tests/test_topy.py +2 -2
- ansys/fluent/tests/test_tui_api.py +5 -5
- ansys/fluent/tests/test_utils.py +1 -1
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/METADATA +6 -17
- ansys_fluent_core-0.28.dev0.dist-info/RECORD +291 -0
- ansys/fluent/core/generated/api_tree_222.pickle +0 -0
- ansys/fluent/core/generated/api_tree_231.pickle +0 -0
- ansys/fluent/core/generated/api_tree_232.pickle +0 -0
- ansys/fluent/core/generated/api_tree_241.pickle +0 -0
- ansys/fluent/core/generated/api_tree_242.pickle +0 -0
- ansys/fluent/core/generated/api_tree_251.pickle +0 -0
- ansys/fluent/tests/test_tests_util.py +0 -47
- ansys/fluent/tests/util/__init__.py +0 -38
- ansys_fluent_core-0.27.dev1.dist-info/RECORD +0 -283
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/AUTHORS +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,2588 @@
|
|
|
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.AssemblyNode = self.__class__.AssemblyNode(service, rules, path + [("AssemblyNode", "")])
|
|
24
|
+
self.Mirror = self.__class__.Mirror(service, rules, path + [("Mirror", "")])
|
|
25
|
+
self.Node = self.__class__.Node(service, rules, path + [("Node", "")])
|
|
26
|
+
self.ObjectSetting = self.__class__.ObjectSetting(service, rules, path + [("ObjectSetting", "")])
|
|
27
|
+
self.Refaceting = self.__class__.Refaceting(service, rules, path + [("Refaceting", "")])
|
|
28
|
+
self.Rotate = self.__class__.Rotate(service, rules, path + [("Rotate", "")])
|
|
29
|
+
self.RotateAboutAxis = self.__class__.RotateAboutAxis(service, rules, path + [("RotateAboutAxis", "")])
|
|
30
|
+
self.Scaling = self.__class__.Scaling(service, rules, path + [("Scaling", "")])
|
|
31
|
+
self.Transform = self.__class__.Transform(service, rules, path + [("Transform", "")])
|
|
32
|
+
self.TransformBase = self.__class__.TransformBase(service, rules, path + [("TransformBase", "")])
|
|
33
|
+
self.Translate = self.__class__.Translate(service, rules, path + [("Translate", "")])
|
|
34
|
+
self.GlobalSettings = self.__class__.GlobalSettings(service, rules, path + [("GlobalSettings", "")])
|
|
35
|
+
self.MeshingOperations = self.__class__.MeshingOperations(service, rules, path + [("MeshingOperations", "")])
|
|
36
|
+
self.ObjectSettingOperations = self.__class__.ObjectSettingOperations(service, rules, path + [("ObjectSettingOperations", "")])
|
|
37
|
+
self.RefacetingOperations = self.__class__.RefacetingOperations(service, rules, path + [("RefacetingOperations", "")])
|
|
38
|
+
self.TransformOperations = self.__class__.TransformOperations(service, rules, path + [("TransformOperations", "")])
|
|
39
|
+
self.AppendFmdFiles = self.__class__.AppendFmdFiles(service, rules, "AppendFmdFiles", path)
|
|
40
|
+
self.ChangeFileLengthUnit = self.__class__.ChangeFileLengthUnit(service, rules, "ChangeFileLengthUnit", path)
|
|
41
|
+
self.ChangeLengthUnit = self.__class__.ChangeLengthUnit(service, rules, "ChangeLengthUnit", path)
|
|
42
|
+
self.CreateObjForEachPart = self.__class__.CreateObjForEachPart(service, rules, "CreateObjForEachPart", path)
|
|
43
|
+
self.CreateObjects = self.__class__.CreateObjects(service, rules, "CreateObjects", path)
|
|
44
|
+
self.Delete = self.__class__.Delete(service, rules, "Delete", path)
|
|
45
|
+
self.DeletePaths = self.__class__.DeletePaths(service, rules, "DeletePaths", path)
|
|
46
|
+
self.InitializeTemplate = self.__class__.InitializeTemplate(service, rules, "InitializeTemplate", path)
|
|
47
|
+
self.InputFileChanged = self.__class__.InputFileChanged(service, rules, "InputFileChanged", path)
|
|
48
|
+
self.ListMeshingOperations = self.__class__.ListMeshingOperations(service, rules, "ListMeshingOperations", path)
|
|
49
|
+
self.LoadFmdFile = self.__class__.LoadFmdFile(service, rules, "LoadFmdFile", path)
|
|
50
|
+
self.LoadTemplate = self.__class__.LoadTemplate(service, rules, "LoadTemplate", path)
|
|
51
|
+
self.MarkObjectsOutofDate = self.__class__.MarkObjectsOutofDate(service, rules, "MarkObjectsOutofDate", path)
|
|
52
|
+
self.MoveCADComponentsToNewObject = self.__class__.MoveCADComponentsToNewObject(service, rules, "MoveCADComponentsToNewObject", path)
|
|
53
|
+
self.MoveToNewSubobject = self.__class__.MoveToNewSubobject(service, rules, "MoveToNewSubobject", path)
|
|
54
|
+
self.MoveToObject = self.__class__.MoveToObject(service, rules, "MoveToObject", path)
|
|
55
|
+
self.RedoAllTransforms = self.__class__.RedoAllTransforms(service, rules, "RedoAllTransforms", path)
|
|
56
|
+
self.ResetTemplate = self.__class__.ResetTemplate(service, rules, "ResetTemplate", path)
|
|
57
|
+
self.SaveFmdFile = self.__class__.SaveFmdFile(service, rules, "SaveFmdFile", path)
|
|
58
|
+
self.SaveTemplate = self.__class__.SaveTemplate(service, rules, "SaveTemplate", path)
|
|
59
|
+
self.SuppressNodeObjects = self.__class__.SuppressNodeObjects(service, rules, "SuppressNodeObjects", path)
|
|
60
|
+
self.UndoAllTransforms = self.__class__.UndoAllTransforms(service, rules, "UndoAllTransforms", path)
|
|
61
|
+
super().__init__(service, rules, path)
|
|
62
|
+
|
|
63
|
+
class AssemblyNode(PyNamedObjectContainer):
|
|
64
|
+
"""
|
|
65
|
+
.
|
|
66
|
+
"""
|
|
67
|
+
class _AssemblyNode(PyMenu):
|
|
68
|
+
"""
|
|
69
|
+
Singleton _AssemblyNode.
|
|
70
|
+
"""
|
|
71
|
+
def __init__(self, service, rules, path):
|
|
72
|
+
self.Refaceting = self.__class__.Refaceting(service, rules, path + [("Refaceting", "")])
|
|
73
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
74
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
75
|
+
self.EdgeExtraction = self.__class__.EdgeExtraction(service, rules, path + [("EdgeExtraction", "")])
|
|
76
|
+
self.FeatureAngle = self.__class__.FeatureAngle(service, rules, path + [("FeatureAngle", "")])
|
|
77
|
+
self.IsChildrenSettingsChanged = self.__class__.IsChildrenSettingsChanged(service, rules, path + [("IsChildrenSettingsChanged", "")])
|
|
78
|
+
self.KeyId = self.__class__.KeyId(service, rules, path + [("KeyId", "")])
|
|
79
|
+
self.MergeChildren = self.__class__.MergeChildren(service, rules, path + [("MergeChildren", "")])
|
|
80
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
81
|
+
self.OneZonePer = self.__class__.OneZonePer(service, rules, path + [("OneZonePer", "")])
|
|
82
|
+
self.Parent = self.__class__.Parent(service, rules, path + [("Parent", "")])
|
|
83
|
+
self.PrefixObjectName = self.__class__.PrefixObjectName(service, rules, path + [("PrefixObjectName", "")])
|
|
84
|
+
self.RefacetOperation = self.__class__.RefacetOperation(service, rules, path + [("RefacetOperation", "")])
|
|
85
|
+
self.Transformations = self.__class__.Transformations(service, rules, path + [("Transformations", "")])
|
|
86
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
87
|
+
self.ChangeChildrenSettings = self.__class__.ChangeChildrenSettings(service, rules, "ChangeChildrenSettings", path)
|
|
88
|
+
self.Copy = self.__class__.Copy(service, rules, "Copy", path)
|
|
89
|
+
self.CreateChild = self.__class__.CreateChild(service, rules, "CreateChild", path)
|
|
90
|
+
self.Move = self.__class__.Move(service, rules, "Move", path)
|
|
91
|
+
self.ReFacet = self.__class__.ReFacet(service, rules, "ReFacet", path)
|
|
92
|
+
self.ReFacetNow = self.__class__.ReFacetNow(service, rules, "ReFacetNow", path)
|
|
93
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
94
|
+
super().__init__(service, rules, path)
|
|
95
|
+
|
|
96
|
+
class Refaceting(PyMenu):
|
|
97
|
+
"""
|
|
98
|
+
Singleton Refaceting.
|
|
99
|
+
"""
|
|
100
|
+
def __init__(self, service, rules, path):
|
|
101
|
+
self.Deviation = self.__class__.Deviation(service, rules, path + [("Deviation", "")])
|
|
102
|
+
self.MaxSize = self.__class__.MaxSize(service, rules, path + [("MaxSize", "")])
|
|
103
|
+
self.NormalAngle = self.__class__.NormalAngle(service, rules, path + [("NormalAngle", "")])
|
|
104
|
+
self.Refacet = self.__class__.Refacet(service, rules, path + [("Refacet", "")])
|
|
105
|
+
super().__init__(service, rules, path)
|
|
106
|
+
|
|
107
|
+
class Deviation(PyNumerical):
|
|
108
|
+
"""
|
|
109
|
+
Parameter Deviation of value type float.
|
|
110
|
+
"""
|
|
111
|
+
pass
|
|
112
|
+
|
|
113
|
+
class MaxSize(PyNumerical):
|
|
114
|
+
"""
|
|
115
|
+
Parameter MaxSize of value type float.
|
|
116
|
+
"""
|
|
117
|
+
pass
|
|
118
|
+
|
|
119
|
+
class NormalAngle(PyNumerical):
|
|
120
|
+
"""
|
|
121
|
+
Parameter NormalAngle of value type float.
|
|
122
|
+
"""
|
|
123
|
+
pass
|
|
124
|
+
|
|
125
|
+
class Refacet(PyParameter):
|
|
126
|
+
"""
|
|
127
|
+
Parameter Refacet of value type bool.
|
|
128
|
+
"""
|
|
129
|
+
pass
|
|
130
|
+
|
|
131
|
+
class Children(PyTextual):
|
|
132
|
+
"""
|
|
133
|
+
Parameter Children of value type list[str].
|
|
134
|
+
"""
|
|
135
|
+
pass
|
|
136
|
+
|
|
137
|
+
class Context(PyNumerical):
|
|
138
|
+
"""
|
|
139
|
+
Parameter Context of value type int.
|
|
140
|
+
"""
|
|
141
|
+
pass
|
|
142
|
+
|
|
143
|
+
class EdgeExtraction(PyTextual):
|
|
144
|
+
"""
|
|
145
|
+
Parameter EdgeExtraction of value type str.
|
|
146
|
+
"""
|
|
147
|
+
pass
|
|
148
|
+
|
|
149
|
+
class FeatureAngle(PyNumerical):
|
|
150
|
+
"""
|
|
151
|
+
Parameter FeatureAngle of value type float.
|
|
152
|
+
"""
|
|
153
|
+
pass
|
|
154
|
+
|
|
155
|
+
class IsChildrenSettingsChanged(PyParameter):
|
|
156
|
+
"""
|
|
157
|
+
Parameter IsChildrenSettingsChanged of value type bool.
|
|
158
|
+
"""
|
|
159
|
+
pass
|
|
160
|
+
|
|
161
|
+
class KeyId(PyNumerical):
|
|
162
|
+
"""
|
|
163
|
+
Parameter KeyId of value type int.
|
|
164
|
+
"""
|
|
165
|
+
pass
|
|
166
|
+
|
|
167
|
+
class MergeChildren(PyParameter):
|
|
168
|
+
"""
|
|
169
|
+
Parameter MergeChildren of value type bool.
|
|
170
|
+
"""
|
|
171
|
+
pass
|
|
172
|
+
|
|
173
|
+
class Name(PyTextual):
|
|
174
|
+
"""
|
|
175
|
+
Parameter Name of value type str.
|
|
176
|
+
"""
|
|
177
|
+
pass
|
|
178
|
+
|
|
179
|
+
class OneZonePer(PyTextual):
|
|
180
|
+
"""
|
|
181
|
+
Parameter OneZonePer of value type str.
|
|
182
|
+
"""
|
|
183
|
+
pass
|
|
184
|
+
|
|
185
|
+
class Parent(PyTextual):
|
|
186
|
+
"""
|
|
187
|
+
Parameter Parent of value type str.
|
|
188
|
+
"""
|
|
189
|
+
pass
|
|
190
|
+
|
|
191
|
+
class PrefixObjectName(PyParameter):
|
|
192
|
+
"""
|
|
193
|
+
Parameter PrefixObjectName of value type bool.
|
|
194
|
+
"""
|
|
195
|
+
pass
|
|
196
|
+
|
|
197
|
+
class RefacetOperation(PyTextual):
|
|
198
|
+
"""
|
|
199
|
+
Parameter RefacetOperation of value type str.
|
|
200
|
+
"""
|
|
201
|
+
pass
|
|
202
|
+
|
|
203
|
+
class Transformations(PyTextual):
|
|
204
|
+
"""
|
|
205
|
+
Parameter Transformations of value type list[str].
|
|
206
|
+
"""
|
|
207
|
+
pass
|
|
208
|
+
|
|
209
|
+
class _name_(PyTextual):
|
|
210
|
+
"""
|
|
211
|
+
Parameter _name_ of value type str.
|
|
212
|
+
"""
|
|
213
|
+
pass
|
|
214
|
+
|
|
215
|
+
class ChangeChildrenSettings(PyCommand):
|
|
216
|
+
"""
|
|
217
|
+
Command ChangeChildrenSettings.
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
Returns
|
|
221
|
+
-------
|
|
222
|
+
bool
|
|
223
|
+
"""
|
|
224
|
+
pass
|
|
225
|
+
|
|
226
|
+
class Copy(PyCommand):
|
|
227
|
+
"""
|
|
228
|
+
Command Copy.
|
|
229
|
+
|
|
230
|
+
Parameters
|
|
231
|
+
----------
|
|
232
|
+
Paths : list[str]
|
|
233
|
+
|
|
234
|
+
Returns
|
|
235
|
+
-------
|
|
236
|
+
bool
|
|
237
|
+
"""
|
|
238
|
+
pass
|
|
239
|
+
|
|
240
|
+
class CreateChild(PyCommand):
|
|
241
|
+
"""
|
|
242
|
+
Command CreateChild.
|
|
243
|
+
|
|
244
|
+
Parameters
|
|
245
|
+
----------
|
|
246
|
+
ChildName : str
|
|
247
|
+
|
|
248
|
+
Returns
|
|
249
|
+
-------
|
|
250
|
+
bool
|
|
251
|
+
"""
|
|
252
|
+
pass
|
|
253
|
+
|
|
254
|
+
class Move(PyCommand):
|
|
255
|
+
"""
|
|
256
|
+
Command Move.
|
|
257
|
+
|
|
258
|
+
Parameters
|
|
259
|
+
----------
|
|
260
|
+
Paths : list[str]
|
|
261
|
+
|
|
262
|
+
Returns
|
|
263
|
+
-------
|
|
264
|
+
bool
|
|
265
|
+
"""
|
|
266
|
+
pass
|
|
267
|
+
|
|
268
|
+
class ReFacet(PyCommand):
|
|
269
|
+
"""
|
|
270
|
+
Command ReFacet.
|
|
271
|
+
|
|
272
|
+
Parameters
|
|
273
|
+
----------
|
|
274
|
+
Deviation : float
|
|
275
|
+
NormalAngle : float
|
|
276
|
+
MaxSize : float
|
|
277
|
+
|
|
278
|
+
Returns
|
|
279
|
+
-------
|
|
280
|
+
bool
|
|
281
|
+
"""
|
|
282
|
+
pass
|
|
283
|
+
|
|
284
|
+
class ReFacetNow(PyCommand):
|
|
285
|
+
"""
|
|
286
|
+
Command ReFacetNow.
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
Returns
|
|
290
|
+
-------
|
|
291
|
+
bool
|
|
292
|
+
"""
|
|
293
|
+
pass
|
|
294
|
+
|
|
295
|
+
class Rename(PyCommand):
|
|
296
|
+
"""
|
|
297
|
+
Command Rename.
|
|
298
|
+
|
|
299
|
+
Parameters
|
|
300
|
+
----------
|
|
301
|
+
NewName : str
|
|
302
|
+
|
|
303
|
+
Returns
|
|
304
|
+
-------
|
|
305
|
+
bool
|
|
306
|
+
"""
|
|
307
|
+
pass
|
|
308
|
+
|
|
309
|
+
def __getitem__(self, key: str) -> _AssemblyNode:
|
|
310
|
+
return super().__getitem__(key)
|
|
311
|
+
|
|
312
|
+
class Mirror(PyNamedObjectContainer):
|
|
313
|
+
"""
|
|
314
|
+
.
|
|
315
|
+
"""
|
|
316
|
+
class _Mirror(PyMenu):
|
|
317
|
+
"""
|
|
318
|
+
Singleton _Mirror.
|
|
319
|
+
"""
|
|
320
|
+
def __init__(self, service, rules, path):
|
|
321
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
322
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
323
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
324
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
325
|
+
self.MirrorAbout = self.__class__.MirrorAbout(service, rules, path + [("MirrorAbout", "")])
|
|
326
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
327
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
328
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
329
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
330
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
331
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
332
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
333
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
334
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
335
|
+
super().__init__(service, rules, path)
|
|
336
|
+
|
|
337
|
+
class Applied(PyParameter):
|
|
338
|
+
"""
|
|
339
|
+
Parameter Applied of value type bool.
|
|
340
|
+
"""
|
|
341
|
+
pass
|
|
342
|
+
|
|
343
|
+
class Children(PyTextual):
|
|
344
|
+
"""
|
|
345
|
+
Parameter Children of value type list[str].
|
|
346
|
+
"""
|
|
347
|
+
pass
|
|
348
|
+
|
|
349
|
+
class Context(PyNumerical):
|
|
350
|
+
"""
|
|
351
|
+
Parameter Context of value type int.
|
|
352
|
+
"""
|
|
353
|
+
pass
|
|
354
|
+
|
|
355
|
+
class Global(PyTextual):
|
|
356
|
+
"""
|
|
357
|
+
Parameter Global of value type str.
|
|
358
|
+
"""
|
|
359
|
+
pass
|
|
360
|
+
|
|
361
|
+
class MirrorAbout(PyTextual):
|
|
362
|
+
"""
|
|
363
|
+
Parameter MirrorAbout of value type str.
|
|
364
|
+
"""
|
|
365
|
+
pass
|
|
366
|
+
|
|
367
|
+
class Name(PyTextual):
|
|
368
|
+
"""
|
|
369
|
+
Parameter Name of value type str.
|
|
370
|
+
"""
|
|
371
|
+
pass
|
|
372
|
+
|
|
373
|
+
class Type(PyTextual):
|
|
374
|
+
"""
|
|
375
|
+
Parameter Type of value type str.
|
|
376
|
+
"""
|
|
377
|
+
pass
|
|
378
|
+
|
|
379
|
+
class _name_(PyTextual):
|
|
380
|
+
"""
|
|
381
|
+
Parameter _name_ of value type str.
|
|
382
|
+
"""
|
|
383
|
+
pass
|
|
384
|
+
|
|
385
|
+
class Add(PyCommand):
|
|
386
|
+
"""
|
|
387
|
+
Command Add.
|
|
388
|
+
|
|
389
|
+
Parameters
|
|
390
|
+
----------
|
|
391
|
+
Paths : list[str]
|
|
392
|
+
|
|
393
|
+
Returns
|
|
394
|
+
-------
|
|
395
|
+
bool
|
|
396
|
+
"""
|
|
397
|
+
pass
|
|
398
|
+
|
|
399
|
+
class Apply(PyCommand):
|
|
400
|
+
"""
|
|
401
|
+
Command Apply.
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
Returns
|
|
405
|
+
-------
|
|
406
|
+
bool
|
|
407
|
+
"""
|
|
408
|
+
pass
|
|
409
|
+
|
|
410
|
+
class Remove(PyCommand):
|
|
411
|
+
"""
|
|
412
|
+
Command Remove.
|
|
413
|
+
|
|
414
|
+
Parameters
|
|
415
|
+
----------
|
|
416
|
+
Paths : list[str]
|
|
417
|
+
|
|
418
|
+
Returns
|
|
419
|
+
-------
|
|
420
|
+
bool
|
|
421
|
+
"""
|
|
422
|
+
pass
|
|
423
|
+
|
|
424
|
+
class Rename(PyCommand):
|
|
425
|
+
"""
|
|
426
|
+
Command Rename.
|
|
427
|
+
|
|
428
|
+
Parameters
|
|
429
|
+
----------
|
|
430
|
+
NewName : str
|
|
431
|
+
|
|
432
|
+
Returns
|
|
433
|
+
-------
|
|
434
|
+
bool
|
|
435
|
+
"""
|
|
436
|
+
pass
|
|
437
|
+
|
|
438
|
+
class Undo(PyCommand):
|
|
439
|
+
"""
|
|
440
|
+
Command Undo.
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Returns
|
|
444
|
+
-------
|
|
445
|
+
bool
|
|
446
|
+
"""
|
|
447
|
+
pass
|
|
448
|
+
|
|
449
|
+
class Update(PyCommand):
|
|
450
|
+
"""
|
|
451
|
+
Command Update.
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
Returns
|
|
455
|
+
-------
|
|
456
|
+
bool
|
|
457
|
+
"""
|
|
458
|
+
pass
|
|
459
|
+
|
|
460
|
+
def __getitem__(self, key: str) -> _Mirror:
|
|
461
|
+
return super().__getitem__(key)
|
|
462
|
+
|
|
463
|
+
class Node(PyNamedObjectContainer):
|
|
464
|
+
"""
|
|
465
|
+
.
|
|
466
|
+
"""
|
|
467
|
+
class _Node(PyMenu):
|
|
468
|
+
"""
|
|
469
|
+
Singleton _Node.
|
|
470
|
+
"""
|
|
471
|
+
def __init__(self, service, rules, path):
|
|
472
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
473
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
474
|
+
self.KeyId = self.__class__.KeyId(service, rules, path + [("KeyId", "")])
|
|
475
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
476
|
+
self.ObjectSetting = self.__class__.ObjectSetting(service, rules, path + [("ObjectSetting", "")])
|
|
477
|
+
self.Parent = self.__class__.Parent(service, rules, path + [("Parent", "")])
|
|
478
|
+
self.RefacetOperation = self.__class__.RefacetOperation(service, rules, path + [("RefacetOperation", "")])
|
|
479
|
+
self.Suppress = self.__class__.Suppress(service, rules, path + [("Suppress", "")])
|
|
480
|
+
self.Transformations = self.__class__.Transformations(service, rules, path + [("Transformations", "")])
|
|
481
|
+
self.Updated = self.__class__.Updated(service, rules, path + [("Updated", "")])
|
|
482
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
483
|
+
self.Copy = self.__class__.Copy(service, rules, "Copy", path)
|
|
484
|
+
self.CreateChild = self.__class__.CreateChild(service, rules, "CreateChild", path)
|
|
485
|
+
self.Move = self.__class__.Move(service, rules, "Move", path)
|
|
486
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
487
|
+
self.WildcardCopy = self.__class__.WildcardCopy(service, rules, "WildcardCopy", path)
|
|
488
|
+
super().__init__(service, rules, path)
|
|
489
|
+
|
|
490
|
+
class Children(PyTextual):
|
|
491
|
+
"""
|
|
492
|
+
Parameter Children of value type list[str].
|
|
493
|
+
"""
|
|
494
|
+
pass
|
|
495
|
+
|
|
496
|
+
class Context(PyNumerical):
|
|
497
|
+
"""
|
|
498
|
+
Parameter Context of value type int.
|
|
499
|
+
"""
|
|
500
|
+
pass
|
|
501
|
+
|
|
502
|
+
class KeyId(PyNumerical):
|
|
503
|
+
"""
|
|
504
|
+
Parameter KeyId of value type int.
|
|
505
|
+
"""
|
|
506
|
+
pass
|
|
507
|
+
|
|
508
|
+
class Name(PyTextual):
|
|
509
|
+
"""
|
|
510
|
+
Parameter Name of value type str.
|
|
511
|
+
"""
|
|
512
|
+
pass
|
|
513
|
+
|
|
514
|
+
class ObjectSetting(PyTextual):
|
|
515
|
+
"""
|
|
516
|
+
Parameter ObjectSetting of value type str.
|
|
517
|
+
"""
|
|
518
|
+
pass
|
|
519
|
+
|
|
520
|
+
class Parent(PyTextual):
|
|
521
|
+
"""
|
|
522
|
+
Parameter Parent of value type str.
|
|
523
|
+
"""
|
|
524
|
+
pass
|
|
525
|
+
|
|
526
|
+
class RefacetOperation(PyTextual):
|
|
527
|
+
"""
|
|
528
|
+
Parameter RefacetOperation of value type str.
|
|
529
|
+
"""
|
|
530
|
+
pass
|
|
531
|
+
|
|
532
|
+
class Suppress(PyParameter):
|
|
533
|
+
"""
|
|
534
|
+
Parameter Suppress of value type bool.
|
|
535
|
+
"""
|
|
536
|
+
pass
|
|
537
|
+
|
|
538
|
+
class Transformations(PyTextual):
|
|
539
|
+
"""
|
|
540
|
+
Parameter Transformations of value type list[str].
|
|
541
|
+
"""
|
|
542
|
+
pass
|
|
543
|
+
|
|
544
|
+
class Updated(PyParameter):
|
|
545
|
+
"""
|
|
546
|
+
Parameter Updated of value type bool.
|
|
547
|
+
"""
|
|
548
|
+
pass
|
|
549
|
+
|
|
550
|
+
class _name_(PyTextual):
|
|
551
|
+
"""
|
|
552
|
+
Parameter _name_ of value type str.
|
|
553
|
+
"""
|
|
554
|
+
pass
|
|
555
|
+
|
|
556
|
+
class Copy(PyCommand):
|
|
557
|
+
"""
|
|
558
|
+
Command Copy.
|
|
559
|
+
|
|
560
|
+
Parameters
|
|
561
|
+
----------
|
|
562
|
+
Paths : list[str]
|
|
563
|
+
|
|
564
|
+
Returns
|
|
565
|
+
-------
|
|
566
|
+
bool
|
|
567
|
+
"""
|
|
568
|
+
pass
|
|
569
|
+
|
|
570
|
+
class CreateChild(PyCommand):
|
|
571
|
+
"""
|
|
572
|
+
Command CreateChild.
|
|
573
|
+
|
|
574
|
+
Parameters
|
|
575
|
+
----------
|
|
576
|
+
ChildName : str
|
|
577
|
+
|
|
578
|
+
Returns
|
|
579
|
+
-------
|
|
580
|
+
bool
|
|
581
|
+
"""
|
|
582
|
+
pass
|
|
583
|
+
|
|
584
|
+
class Move(PyCommand):
|
|
585
|
+
"""
|
|
586
|
+
Command Move.
|
|
587
|
+
|
|
588
|
+
Parameters
|
|
589
|
+
----------
|
|
590
|
+
Paths : list[str]
|
|
591
|
+
|
|
592
|
+
Returns
|
|
593
|
+
-------
|
|
594
|
+
bool
|
|
595
|
+
"""
|
|
596
|
+
pass
|
|
597
|
+
|
|
598
|
+
class Rename(PyCommand):
|
|
599
|
+
"""
|
|
600
|
+
Command Rename.
|
|
601
|
+
|
|
602
|
+
Parameters
|
|
603
|
+
----------
|
|
604
|
+
NewName : str
|
|
605
|
+
|
|
606
|
+
Returns
|
|
607
|
+
-------
|
|
608
|
+
bool
|
|
609
|
+
"""
|
|
610
|
+
pass
|
|
611
|
+
|
|
612
|
+
class WildcardCopy(PyCommand):
|
|
613
|
+
"""
|
|
614
|
+
Command WildcardCopy.
|
|
615
|
+
|
|
616
|
+
Parameters
|
|
617
|
+
----------
|
|
618
|
+
Pattern : str
|
|
619
|
+
|
|
620
|
+
Returns
|
|
621
|
+
-------
|
|
622
|
+
bool
|
|
623
|
+
"""
|
|
624
|
+
pass
|
|
625
|
+
|
|
626
|
+
def __getitem__(self, key: str) -> _Node:
|
|
627
|
+
return super().__getitem__(key)
|
|
628
|
+
|
|
629
|
+
class ObjectSetting(PyNamedObjectContainer):
|
|
630
|
+
"""
|
|
631
|
+
.
|
|
632
|
+
"""
|
|
633
|
+
class _ObjectSetting(PyMenu):
|
|
634
|
+
"""
|
|
635
|
+
Singleton _ObjectSetting.
|
|
636
|
+
"""
|
|
637
|
+
def __init__(self, service, rules, path):
|
|
638
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
639
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
640
|
+
self.EdgeExtraction = self.__class__.EdgeExtraction(service, rules, path + [("EdgeExtraction", "")])
|
|
641
|
+
self.FeatureAngle = self.__class__.FeatureAngle(service, rules, path + [("FeatureAngle", "")])
|
|
642
|
+
self.MergeChildren = self.__class__.MergeChildren(service, rules, path + [("MergeChildren", "")])
|
|
643
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
644
|
+
self.OneZonePer = self.__class__.OneZonePer(service, rules, path + [("OneZonePer", "")])
|
|
645
|
+
self.PrefixObjectName = self.__class__.PrefixObjectName(service, rules, path + [("PrefixObjectName", "")])
|
|
646
|
+
self.UseDefaultSettings = self.__class__.UseDefaultSettings(service, rules, path + [("UseDefaultSettings", "")])
|
|
647
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
648
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
649
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
650
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
651
|
+
super().__init__(service, rules, path)
|
|
652
|
+
|
|
653
|
+
class Children(PyTextual):
|
|
654
|
+
"""
|
|
655
|
+
Parameter Children of value type list[str].
|
|
656
|
+
"""
|
|
657
|
+
pass
|
|
658
|
+
|
|
659
|
+
class Context(PyNumerical):
|
|
660
|
+
"""
|
|
661
|
+
Parameter Context of value type int.
|
|
662
|
+
"""
|
|
663
|
+
pass
|
|
664
|
+
|
|
665
|
+
class EdgeExtraction(PyTextual):
|
|
666
|
+
"""
|
|
667
|
+
Parameter EdgeExtraction of value type str.
|
|
668
|
+
"""
|
|
669
|
+
pass
|
|
670
|
+
|
|
671
|
+
class FeatureAngle(PyNumerical):
|
|
672
|
+
"""
|
|
673
|
+
Parameter FeatureAngle of value type float.
|
|
674
|
+
"""
|
|
675
|
+
pass
|
|
676
|
+
|
|
677
|
+
class MergeChildren(PyParameter):
|
|
678
|
+
"""
|
|
679
|
+
Parameter MergeChildren of value type bool.
|
|
680
|
+
"""
|
|
681
|
+
pass
|
|
682
|
+
|
|
683
|
+
class Name(PyTextual):
|
|
684
|
+
"""
|
|
685
|
+
Parameter Name of value type str.
|
|
686
|
+
"""
|
|
687
|
+
pass
|
|
688
|
+
|
|
689
|
+
class OneZonePer(PyTextual):
|
|
690
|
+
"""
|
|
691
|
+
Parameter OneZonePer of value type str.
|
|
692
|
+
"""
|
|
693
|
+
pass
|
|
694
|
+
|
|
695
|
+
class PrefixObjectName(PyParameter):
|
|
696
|
+
"""
|
|
697
|
+
Parameter PrefixObjectName of value type bool.
|
|
698
|
+
"""
|
|
699
|
+
pass
|
|
700
|
+
|
|
701
|
+
class UseDefaultSettings(PyParameter):
|
|
702
|
+
"""
|
|
703
|
+
Parameter UseDefaultSettings of value type bool.
|
|
704
|
+
"""
|
|
705
|
+
pass
|
|
706
|
+
|
|
707
|
+
class _name_(PyTextual):
|
|
708
|
+
"""
|
|
709
|
+
Parameter _name_ of value type str.
|
|
710
|
+
"""
|
|
711
|
+
pass
|
|
712
|
+
|
|
713
|
+
class Add(PyCommand):
|
|
714
|
+
"""
|
|
715
|
+
Command Add.
|
|
716
|
+
|
|
717
|
+
Parameters
|
|
718
|
+
----------
|
|
719
|
+
Paths : list[str]
|
|
720
|
+
|
|
721
|
+
Returns
|
|
722
|
+
-------
|
|
723
|
+
bool
|
|
724
|
+
"""
|
|
725
|
+
pass
|
|
726
|
+
|
|
727
|
+
class Remove(PyCommand):
|
|
728
|
+
"""
|
|
729
|
+
Command Remove.
|
|
730
|
+
|
|
731
|
+
Parameters
|
|
732
|
+
----------
|
|
733
|
+
Paths : list[str]
|
|
734
|
+
|
|
735
|
+
Returns
|
|
736
|
+
-------
|
|
737
|
+
bool
|
|
738
|
+
"""
|
|
739
|
+
pass
|
|
740
|
+
|
|
741
|
+
class Rename(PyCommand):
|
|
742
|
+
"""
|
|
743
|
+
Command Rename.
|
|
744
|
+
|
|
745
|
+
Parameters
|
|
746
|
+
----------
|
|
747
|
+
NewName : str
|
|
748
|
+
|
|
749
|
+
Returns
|
|
750
|
+
-------
|
|
751
|
+
bool
|
|
752
|
+
"""
|
|
753
|
+
pass
|
|
754
|
+
|
|
755
|
+
def __getitem__(self, key: str) -> _ObjectSetting:
|
|
756
|
+
return super().__getitem__(key)
|
|
757
|
+
|
|
758
|
+
class Refaceting(PyNamedObjectContainer):
|
|
759
|
+
"""
|
|
760
|
+
.
|
|
761
|
+
"""
|
|
762
|
+
class _Refaceting(PyMenu):
|
|
763
|
+
"""
|
|
764
|
+
Singleton _Refaceting.
|
|
765
|
+
"""
|
|
766
|
+
def __init__(self, service, rules, path):
|
|
767
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
768
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
769
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
770
|
+
self.Deviation = self.__class__.Deviation(service, rules, path + [("Deviation", "")])
|
|
771
|
+
self.FacetMaxEdgeLength = self.__class__.FacetMaxEdgeLength(service, rules, path + [("FacetMaxEdgeLength", "")])
|
|
772
|
+
self.MaxEdgeLengthFactor = self.__class__.MaxEdgeLengthFactor(service, rules, path + [("MaxEdgeLengthFactor", "")])
|
|
773
|
+
self.MaxSize = self.__class__.MaxSize(service, rules, path + [("MaxSize", "")])
|
|
774
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
775
|
+
self.NormalAngle = self.__class__.NormalAngle(service, rules, path + [("NormalAngle", "")])
|
|
776
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
777
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
778
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
779
|
+
self.Delete = self.__class__.Delete(service, rules, "Delete", path)
|
|
780
|
+
self.Edit = self.__class__.Edit(service, rules, "Edit", path)
|
|
781
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
782
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
783
|
+
super().__init__(service, rules, path)
|
|
784
|
+
|
|
785
|
+
class Applied(PyParameter):
|
|
786
|
+
"""
|
|
787
|
+
Parameter Applied of value type bool.
|
|
788
|
+
"""
|
|
789
|
+
pass
|
|
790
|
+
|
|
791
|
+
class Children(PyTextual):
|
|
792
|
+
"""
|
|
793
|
+
Parameter Children of value type list[str].
|
|
794
|
+
"""
|
|
795
|
+
pass
|
|
796
|
+
|
|
797
|
+
class Context(PyNumerical):
|
|
798
|
+
"""
|
|
799
|
+
Parameter Context of value type int.
|
|
800
|
+
"""
|
|
801
|
+
pass
|
|
802
|
+
|
|
803
|
+
class Deviation(PyNumerical):
|
|
804
|
+
"""
|
|
805
|
+
Parameter Deviation of value type float.
|
|
806
|
+
"""
|
|
807
|
+
pass
|
|
808
|
+
|
|
809
|
+
class FacetMaxEdgeLength(PyTextual):
|
|
810
|
+
"""
|
|
811
|
+
Parameter FacetMaxEdgeLength of value type str.
|
|
812
|
+
"""
|
|
813
|
+
pass
|
|
814
|
+
|
|
815
|
+
class MaxEdgeLengthFactor(PyNumerical):
|
|
816
|
+
"""
|
|
817
|
+
Parameter MaxEdgeLengthFactor of value type float.
|
|
818
|
+
"""
|
|
819
|
+
pass
|
|
820
|
+
|
|
821
|
+
class MaxSize(PyNumerical):
|
|
822
|
+
"""
|
|
823
|
+
Parameter MaxSize of value type float.
|
|
824
|
+
"""
|
|
825
|
+
pass
|
|
826
|
+
|
|
827
|
+
class Name(PyTextual):
|
|
828
|
+
"""
|
|
829
|
+
Parameter Name of value type str.
|
|
830
|
+
"""
|
|
831
|
+
pass
|
|
832
|
+
|
|
833
|
+
class NormalAngle(PyNumerical):
|
|
834
|
+
"""
|
|
835
|
+
Parameter NormalAngle of value type float.
|
|
836
|
+
"""
|
|
837
|
+
pass
|
|
838
|
+
|
|
839
|
+
class _name_(PyTextual):
|
|
840
|
+
"""
|
|
841
|
+
Parameter _name_ of value type str.
|
|
842
|
+
"""
|
|
843
|
+
pass
|
|
844
|
+
|
|
845
|
+
class Add(PyCommand):
|
|
846
|
+
"""
|
|
847
|
+
Command Add.
|
|
848
|
+
|
|
849
|
+
Parameters
|
|
850
|
+
----------
|
|
851
|
+
Paths : list[str]
|
|
852
|
+
|
|
853
|
+
Returns
|
|
854
|
+
-------
|
|
855
|
+
bool
|
|
856
|
+
"""
|
|
857
|
+
pass
|
|
858
|
+
|
|
859
|
+
class Apply(PyCommand):
|
|
860
|
+
"""
|
|
861
|
+
Command Apply.
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
Returns
|
|
865
|
+
-------
|
|
866
|
+
bool
|
|
867
|
+
"""
|
|
868
|
+
pass
|
|
869
|
+
|
|
870
|
+
class Delete(PyCommand):
|
|
871
|
+
"""
|
|
872
|
+
Command Delete.
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
Returns
|
|
876
|
+
-------
|
|
877
|
+
bool
|
|
878
|
+
"""
|
|
879
|
+
pass
|
|
880
|
+
|
|
881
|
+
class Edit(PyCommand):
|
|
882
|
+
"""
|
|
883
|
+
Command Edit.
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
Returns
|
|
887
|
+
-------
|
|
888
|
+
bool
|
|
889
|
+
"""
|
|
890
|
+
pass
|
|
891
|
+
|
|
892
|
+
class Remove(PyCommand):
|
|
893
|
+
"""
|
|
894
|
+
Command Remove.
|
|
895
|
+
|
|
896
|
+
Parameters
|
|
897
|
+
----------
|
|
898
|
+
Paths : list[str]
|
|
899
|
+
|
|
900
|
+
Returns
|
|
901
|
+
-------
|
|
902
|
+
bool
|
|
903
|
+
"""
|
|
904
|
+
pass
|
|
905
|
+
|
|
906
|
+
class Rename(PyCommand):
|
|
907
|
+
"""
|
|
908
|
+
Command Rename.
|
|
909
|
+
|
|
910
|
+
Parameters
|
|
911
|
+
----------
|
|
912
|
+
NewName : str
|
|
913
|
+
|
|
914
|
+
Returns
|
|
915
|
+
-------
|
|
916
|
+
bool
|
|
917
|
+
"""
|
|
918
|
+
pass
|
|
919
|
+
|
|
920
|
+
def __getitem__(self, key: str) -> _Refaceting:
|
|
921
|
+
return super().__getitem__(key)
|
|
922
|
+
|
|
923
|
+
class Rotate(PyNamedObjectContainer):
|
|
924
|
+
"""
|
|
925
|
+
.
|
|
926
|
+
"""
|
|
927
|
+
class _Rotate(PyMenu):
|
|
928
|
+
"""
|
|
929
|
+
Singleton _Rotate.
|
|
930
|
+
"""
|
|
931
|
+
def __init__(self, service, rules, path):
|
|
932
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
933
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
934
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
935
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
936
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
937
|
+
self.RotateX = self.__class__.RotateX(service, rules, path + [("RotateX", "")])
|
|
938
|
+
self.RotateY = self.__class__.RotateY(service, rules, path + [("RotateY", "")])
|
|
939
|
+
self.RotateZ = self.__class__.RotateZ(service, rules, path + [("RotateZ", "")])
|
|
940
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
941
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
942
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
943
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
944
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
945
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
946
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
947
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
948
|
+
super().__init__(service, rules, path)
|
|
949
|
+
|
|
950
|
+
class Applied(PyParameter):
|
|
951
|
+
"""
|
|
952
|
+
Parameter Applied of value type bool.
|
|
953
|
+
"""
|
|
954
|
+
pass
|
|
955
|
+
|
|
956
|
+
class Children(PyTextual):
|
|
957
|
+
"""
|
|
958
|
+
Parameter Children of value type list[str].
|
|
959
|
+
"""
|
|
960
|
+
pass
|
|
961
|
+
|
|
962
|
+
class Context(PyNumerical):
|
|
963
|
+
"""
|
|
964
|
+
Parameter Context of value type int.
|
|
965
|
+
"""
|
|
966
|
+
pass
|
|
967
|
+
|
|
968
|
+
class Global(PyTextual):
|
|
969
|
+
"""
|
|
970
|
+
Parameter Global of value type str.
|
|
971
|
+
"""
|
|
972
|
+
pass
|
|
973
|
+
|
|
974
|
+
class Name(PyTextual):
|
|
975
|
+
"""
|
|
976
|
+
Parameter Name of value type str.
|
|
977
|
+
"""
|
|
978
|
+
pass
|
|
979
|
+
|
|
980
|
+
class RotateX(PyNumerical):
|
|
981
|
+
"""
|
|
982
|
+
Parameter RotateX of value type float.
|
|
983
|
+
"""
|
|
984
|
+
pass
|
|
985
|
+
|
|
986
|
+
class RotateY(PyNumerical):
|
|
987
|
+
"""
|
|
988
|
+
Parameter RotateY of value type float.
|
|
989
|
+
"""
|
|
990
|
+
pass
|
|
991
|
+
|
|
992
|
+
class RotateZ(PyNumerical):
|
|
993
|
+
"""
|
|
994
|
+
Parameter RotateZ of value type float.
|
|
995
|
+
"""
|
|
996
|
+
pass
|
|
997
|
+
|
|
998
|
+
class Type(PyTextual):
|
|
999
|
+
"""
|
|
1000
|
+
Parameter Type of value type str.
|
|
1001
|
+
"""
|
|
1002
|
+
pass
|
|
1003
|
+
|
|
1004
|
+
class _name_(PyTextual):
|
|
1005
|
+
"""
|
|
1006
|
+
Parameter _name_ of value type str.
|
|
1007
|
+
"""
|
|
1008
|
+
pass
|
|
1009
|
+
|
|
1010
|
+
class Add(PyCommand):
|
|
1011
|
+
"""
|
|
1012
|
+
Command Add.
|
|
1013
|
+
|
|
1014
|
+
Parameters
|
|
1015
|
+
----------
|
|
1016
|
+
Paths : list[str]
|
|
1017
|
+
|
|
1018
|
+
Returns
|
|
1019
|
+
-------
|
|
1020
|
+
bool
|
|
1021
|
+
"""
|
|
1022
|
+
pass
|
|
1023
|
+
|
|
1024
|
+
class Apply(PyCommand):
|
|
1025
|
+
"""
|
|
1026
|
+
Command Apply.
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
Returns
|
|
1030
|
+
-------
|
|
1031
|
+
bool
|
|
1032
|
+
"""
|
|
1033
|
+
pass
|
|
1034
|
+
|
|
1035
|
+
class Remove(PyCommand):
|
|
1036
|
+
"""
|
|
1037
|
+
Command Remove.
|
|
1038
|
+
|
|
1039
|
+
Parameters
|
|
1040
|
+
----------
|
|
1041
|
+
Paths : list[str]
|
|
1042
|
+
|
|
1043
|
+
Returns
|
|
1044
|
+
-------
|
|
1045
|
+
bool
|
|
1046
|
+
"""
|
|
1047
|
+
pass
|
|
1048
|
+
|
|
1049
|
+
class Rename(PyCommand):
|
|
1050
|
+
"""
|
|
1051
|
+
Command Rename.
|
|
1052
|
+
|
|
1053
|
+
Parameters
|
|
1054
|
+
----------
|
|
1055
|
+
NewName : str
|
|
1056
|
+
|
|
1057
|
+
Returns
|
|
1058
|
+
-------
|
|
1059
|
+
bool
|
|
1060
|
+
"""
|
|
1061
|
+
pass
|
|
1062
|
+
|
|
1063
|
+
class Undo(PyCommand):
|
|
1064
|
+
"""
|
|
1065
|
+
Command Undo.
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
Returns
|
|
1069
|
+
-------
|
|
1070
|
+
bool
|
|
1071
|
+
"""
|
|
1072
|
+
pass
|
|
1073
|
+
|
|
1074
|
+
class Update(PyCommand):
|
|
1075
|
+
"""
|
|
1076
|
+
Command Update.
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
Returns
|
|
1080
|
+
-------
|
|
1081
|
+
bool
|
|
1082
|
+
"""
|
|
1083
|
+
pass
|
|
1084
|
+
|
|
1085
|
+
def __getitem__(self, key: str) -> _Rotate:
|
|
1086
|
+
return super().__getitem__(key)
|
|
1087
|
+
|
|
1088
|
+
class RotateAboutAxis(PyNamedObjectContainer):
|
|
1089
|
+
"""
|
|
1090
|
+
.
|
|
1091
|
+
"""
|
|
1092
|
+
class _RotateAboutAxis(PyMenu):
|
|
1093
|
+
"""
|
|
1094
|
+
Singleton _RotateAboutAxis.
|
|
1095
|
+
"""
|
|
1096
|
+
def __init__(self, service, rules, path):
|
|
1097
|
+
self.Angle = self.__class__.Angle(service, rules, path + [("Angle", "")])
|
|
1098
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
1099
|
+
self.AxisX = self.__class__.AxisX(service, rules, path + [("AxisX", "")])
|
|
1100
|
+
self.AxisY = self.__class__.AxisY(service, rules, path + [("AxisY", "")])
|
|
1101
|
+
self.AxisZ = self.__class__.AxisZ(service, rules, path + [("AxisZ", "")])
|
|
1102
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
1103
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
1104
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
1105
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
1106
|
+
self.PivotX = self.__class__.PivotX(service, rules, path + [("PivotX", "")])
|
|
1107
|
+
self.PivotY = self.__class__.PivotY(service, rules, path + [("PivotY", "")])
|
|
1108
|
+
self.PivotZ = self.__class__.PivotZ(service, rules, path + [("PivotZ", "")])
|
|
1109
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
1110
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
1111
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
1112
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
1113
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
1114
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
1115
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
1116
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
1117
|
+
super().__init__(service, rules, path)
|
|
1118
|
+
|
|
1119
|
+
class Angle(PyNumerical):
|
|
1120
|
+
"""
|
|
1121
|
+
Parameter Angle of value type float.
|
|
1122
|
+
"""
|
|
1123
|
+
pass
|
|
1124
|
+
|
|
1125
|
+
class Applied(PyParameter):
|
|
1126
|
+
"""
|
|
1127
|
+
Parameter Applied of value type bool.
|
|
1128
|
+
"""
|
|
1129
|
+
pass
|
|
1130
|
+
|
|
1131
|
+
class AxisX(PyNumerical):
|
|
1132
|
+
"""
|
|
1133
|
+
Parameter AxisX of value type float.
|
|
1134
|
+
"""
|
|
1135
|
+
pass
|
|
1136
|
+
|
|
1137
|
+
class AxisY(PyNumerical):
|
|
1138
|
+
"""
|
|
1139
|
+
Parameter AxisY of value type float.
|
|
1140
|
+
"""
|
|
1141
|
+
pass
|
|
1142
|
+
|
|
1143
|
+
class AxisZ(PyNumerical):
|
|
1144
|
+
"""
|
|
1145
|
+
Parameter AxisZ of value type float.
|
|
1146
|
+
"""
|
|
1147
|
+
pass
|
|
1148
|
+
|
|
1149
|
+
class Children(PyTextual):
|
|
1150
|
+
"""
|
|
1151
|
+
Parameter Children of value type list[str].
|
|
1152
|
+
"""
|
|
1153
|
+
pass
|
|
1154
|
+
|
|
1155
|
+
class Context(PyNumerical):
|
|
1156
|
+
"""
|
|
1157
|
+
Parameter Context of value type int.
|
|
1158
|
+
"""
|
|
1159
|
+
pass
|
|
1160
|
+
|
|
1161
|
+
class Global(PyTextual):
|
|
1162
|
+
"""
|
|
1163
|
+
Parameter Global of value type str.
|
|
1164
|
+
"""
|
|
1165
|
+
pass
|
|
1166
|
+
|
|
1167
|
+
class Name(PyTextual):
|
|
1168
|
+
"""
|
|
1169
|
+
Parameter Name of value type str.
|
|
1170
|
+
"""
|
|
1171
|
+
pass
|
|
1172
|
+
|
|
1173
|
+
class PivotX(PyNumerical):
|
|
1174
|
+
"""
|
|
1175
|
+
Parameter PivotX of value type float.
|
|
1176
|
+
"""
|
|
1177
|
+
pass
|
|
1178
|
+
|
|
1179
|
+
class PivotY(PyNumerical):
|
|
1180
|
+
"""
|
|
1181
|
+
Parameter PivotY of value type float.
|
|
1182
|
+
"""
|
|
1183
|
+
pass
|
|
1184
|
+
|
|
1185
|
+
class PivotZ(PyNumerical):
|
|
1186
|
+
"""
|
|
1187
|
+
Parameter PivotZ of value type float.
|
|
1188
|
+
"""
|
|
1189
|
+
pass
|
|
1190
|
+
|
|
1191
|
+
class Type(PyTextual):
|
|
1192
|
+
"""
|
|
1193
|
+
Parameter Type of value type str.
|
|
1194
|
+
"""
|
|
1195
|
+
pass
|
|
1196
|
+
|
|
1197
|
+
class _name_(PyTextual):
|
|
1198
|
+
"""
|
|
1199
|
+
Parameter _name_ of value type str.
|
|
1200
|
+
"""
|
|
1201
|
+
pass
|
|
1202
|
+
|
|
1203
|
+
class Add(PyCommand):
|
|
1204
|
+
"""
|
|
1205
|
+
Command Add.
|
|
1206
|
+
|
|
1207
|
+
Parameters
|
|
1208
|
+
----------
|
|
1209
|
+
Paths : list[str]
|
|
1210
|
+
|
|
1211
|
+
Returns
|
|
1212
|
+
-------
|
|
1213
|
+
bool
|
|
1214
|
+
"""
|
|
1215
|
+
pass
|
|
1216
|
+
|
|
1217
|
+
class Apply(PyCommand):
|
|
1218
|
+
"""
|
|
1219
|
+
Command Apply.
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
Returns
|
|
1223
|
+
-------
|
|
1224
|
+
bool
|
|
1225
|
+
"""
|
|
1226
|
+
pass
|
|
1227
|
+
|
|
1228
|
+
class Remove(PyCommand):
|
|
1229
|
+
"""
|
|
1230
|
+
Command Remove.
|
|
1231
|
+
|
|
1232
|
+
Parameters
|
|
1233
|
+
----------
|
|
1234
|
+
Paths : list[str]
|
|
1235
|
+
|
|
1236
|
+
Returns
|
|
1237
|
+
-------
|
|
1238
|
+
bool
|
|
1239
|
+
"""
|
|
1240
|
+
pass
|
|
1241
|
+
|
|
1242
|
+
class Rename(PyCommand):
|
|
1243
|
+
"""
|
|
1244
|
+
Command Rename.
|
|
1245
|
+
|
|
1246
|
+
Parameters
|
|
1247
|
+
----------
|
|
1248
|
+
NewName : str
|
|
1249
|
+
|
|
1250
|
+
Returns
|
|
1251
|
+
-------
|
|
1252
|
+
bool
|
|
1253
|
+
"""
|
|
1254
|
+
pass
|
|
1255
|
+
|
|
1256
|
+
class Undo(PyCommand):
|
|
1257
|
+
"""
|
|
1258
|
+
Command Undo.
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
Returns
|
|
1262
|
+
-------
|
|
1263
|
+
bool
|
|
1264
|
+
"""
|
|
1265
|
+
pass
|
|
1266
|
+
|
|
1267
|
+
class Update(PyCommand):
|
|
1268
|
+
"""
|
|
1269
|
+
Command Update.
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
Returns
|
|
1273
|
+
-------
|
|
1274
|
+
bool
|
|
1275
|
+
"""
|
|
1276
|
+
pass
|
|
1277
|
+
|
|
1278
|
+
def __getitem__(self, key: str) -> _RotateAboutAxis:
|
|
1279
|
+
return super().__getitem__(key)
|
|
1280
|
+
|
|
1281
|
+
class Scaling(PyNamedObjectContainer):
|
|
1282
|
+
"""
|
|
1283
|
+
.
|
|
1284
|
+
"""
|
|
1285
|
+
class _Scaling(PyMenu):
|
|
1286
|
+
"""
|
|
1287
|
+
Singleton _Scaling.
|
|
1288
|
+
"""
|
|
1289
|
+
def __init__(self, service, rules, path):
|
|
1290
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
1291
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
1292
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
1293
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
1294
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
1295
|
+
self.ScaleX = self.__class__.ScaleX(service, rules, path + [("ScaleX", "")])
|
|
1296
|
+
self.ScaleY = self.__class__.ScaleY(service, rules, path + [("ScaleY", "")])
|
|
1297
|
+
self.ScaleZ = self.__class__.ScaleZ(service, rules, path + [("ScaleZ", "")])
|
|
1298
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
1299
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
1300
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
1301
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
1302
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
1303
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
1304
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
1305
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
1306
|
+
super().__init__(service, rules, path)
|
|
1307
|
+
|
|
1308
|
+
class Applied(PyParameter):
|
|
1309
|
+
"""
|
|
1310
|
+
Parameter Applied of value type bool.
|
|
1311
|
+
"""
|
|
1312
|
+
pass
|
|
1313
|
+
|
|
1314
|
+
class Children(PyTextual):
|
|
1315
|
+
"""
|
|
1316
|
+
Parameter Children of value type list[str].
|
|
1317
|
+
"""
|
|
1318
|
+
pass
|
|
1319
|
+
|
|
1320
|
+
class Context(PyNumerical):
|
|
1321
|
+
"""
|
|
1322
|
+
Parameter Context of value type int.
|
|
1323
|
+
"""
|
|
1324
|
+
pass
|
|
1325
|
+
|
|
1326
|
+
class Global(PyTextual):
|
|
1327
|
+
"""
|
|
1328
|
+
Parameter Global of value type str.
|
|
1329
|
+
"""
|
|
1330
|
+
pass
|
|
1331
|
+
|
|
1332
|
+
class Name(PyTextual):
|
|
1333
|
+
"""
|
|
1334
|
+
Parameter Name of value type str.
|
|
1335
|
+
"""
|
|
1336
|
+
pass
|
|
1337
|
+
|
|
1338
|
+
class ScaleX(PyNumerical):
|
|
1339
|
+
"""
|
|
1340
|
+
Parameter ScaleX of value type float.
|
|
1341
|
+
"""
|
|
1342
|
+
pass
|
|
1343
|
+
|
|
1344
|
+
class ScaleY(PyNumerical):
|
|
1345
|
+
"""
|
|
1346
|
+
Parameter ScaleY of value type float.
|
|
1347
|
+
"""
|
|
1348
|
+
pass
|
|
1349
|
+
|
|
1350
|
+
class ScaleZ(PyNumerical):
|
|
1351
|
+
"""
|
|
1352
|
+
Parameter ScaleZ of value type float.
|
|
1353
|
+
"""
|
|
1354
|
+
pass
|
|
1355
|
+
|
|
1356
|
+
class Type(PyTextual):
|
|
1357
|
+
"""
|
|
1358
|
+
Parameter Type of value type str.
|
|
1359
|
+
"""
|
|
1360
|
+
pass
|
|
1361
|
+
|
|
1362
|
+
class _name_(PyTextual):
|
|
1363
|
+
"""
|
|
1364
|
+
Parameter _name_ of value type str.
|
|
1365
|
+
"""
|
|
1366
|
+
pass
|
|
1367
|
+
|
|
1368
|
+
class Add(PyCommand):
|
|
1369
|
+
"""
|
|
1370
|
+
Command Add.
|
|
1371
|
+
|
|
1372
|
+
Parameters
|
|
1373
|
+
----------
|
|
1374
|
+
Paths : list[str]
|
|
1375
|
+
|
|
1376
|
+
Returns
|
|
1377
|
+
-------
|
|
1378
|
+
bool
|
|
1379
|
+
"""
|
|
1380
|
+
pass
|
|
1381
|
+
|
|
1382
|
+
class Apply(PyCommand):
|
|
1383
|
+
"""
|
|
1384
|
+
Command Apply.
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
Returns
|
|
1388
|
+
-------
|
|
1389
|
+
bool
|
|
1390
|
+
"""
|
|
1391
|
+
pass
|
|
1392
|
+
|
|
1393
|
+
class Remove(PyCommand):
|
|
1394
|
+
"""
|
|
1395
|
+
Command Remove.
|
|
1396
|
+
|
|
1397
|
+
Parameters
|
|
1398
|
+
----------
|
|
1399
|
+
Paths : list[str]
|
|
1400
|
+
|
|
1401
|
+
Returns
|
|
1402
|
+
-------
|
|
1403
|
+
bool
|
|
1404
|
+
"""
|
|
1405
|
+
pass
|
|
1406
|
+
|
|
1407
|
+
class Rename(PyCommand):
|
|
1408
|
+
"""
|
|
1409
|
+
Command Rename.
|
|
1410
|
+
|
|
1411
|
+
Parameters
|
|
1412
|
+
----------
|
|
1413
|
+
NewName : str
|
|
1414
|
+
|
|
1415
|
+
Returns
|
|
1416
|
+
-------
|
|
1417
|
+
bool
|
|
1418
|
+
"""
|
|
1419
|
+
pass
|
|
1420
|
+
|
|
1421
|
+
class Undo(PyCommand):
|
|
1422
|
+
"""
|
|
1423
|
+
Command Undo.
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
Returns
|
|
1427
|
+
-------
|
|
1428
|
+
bool
|
|
1429
|
+
"""
|
|
1430
|
+
pass
|
|
1431
|
+
|
|
1432
|
+
class Update(PyCommand):
|
|
1433
|
+
"""
|
|
1434
|
+
Command Update.
|
|
1435
|
+
|
|
1436
|
+
|
|
1437
|
+
Returns
|
|
1438
|
+
-------
|
|
1439
|
+
bool
|
|
1440
|
+
"""
|
|
1441
|
+
pass
|
|
1442
|
+
|
|
1443
|
+
def __getitem__(self, key: str) -> _Scaling:
|
|
1444
|
+
return super().__getitem__(key)
|
|
1445
|
+
|
|
1446
|
+
class Transform(PyNamedObjectContainer):
|
|
1447
|
+
"""
|
|
1448
|
+
.
|
|
1449
|
+
"""
|
|
1450
|
+
class _Transform(PyMenu):
|
|
1451
|
+
"""
|
|
1452
|
+
Singleton _Transform.
|
|
1453
|
+
"""
|
|
1454
|
+
def __init__(self, service, rules, path):
|
|
1455
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
1456
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
1457
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
1458
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
1459
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
1460
|
+
self.RotateX = self.__class__.RotateX(service, rules, path + [("RotateX", "")])
|
|
1461
|
+
self.RotateY = self.__class__.RotateY(service, rules, path + [("RotateY", "")])
|
|
1462
|
+
self.RotateZ = self.__class__.RotateZ(service, rules, path + [("RotateZ", "")])
|
|
1463
|
+
self.TranslateX = self.__class__.TranslateX(service, rules, path + [("TranslateX", "")])
|
|
1464
|
+
self.TranslateY = self.__class__.TranslateY(service, rules, path + [("TranslateY", "")])
|
|
1465
|
+
self.TranslateZ = self.__class__.TranslateZ(service, rules, path + [("TranslateZ", "")])
|
|
1466
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
1467
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
1468
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
1469
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
1470
|
+
self.Delete = self.__class__.Delete(service, rules, "Delete", path)
|
|
1471
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
1472
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
1473
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
1474
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
1475
|
+
super().__init__(service, rules, path)
|
|
1476
|
+
|
|
1477
|
+
class Applied(PyParameter):
|
|
1478
|
+
"""
|
|
1479
|
+
Parameter Applied of value type bool.
|
|
1480
|
+
"""
|
|
1481
|
+
pass
|
|
1482
|
+
|
|
1483
|
+
class Children(PyTextual):
|
|
1484
|
+
"""
|
|
1485
|
+
Parameter Children of value type list[str].
|
|
1486
|
+
"""
|
|
1487
|
+
pass
|
|
1488
|
+
|
|
1489
|
+
class Context(PyNumerical):
|
|
1490
|
+
"""
|
|
1491
|
+
Parameter Context of value type int.
|
|
1492
|
+
"""
|
|
1493
|
+
pass
|
|
1494
|
+
|
|
1495
|
+
class Global(PyTextual):
|
|
1496
|
+
"""
|
|
1497
|
+
Parameter Global of value type str.
|
|
1498
|
+
"""
|
|
1499
|
+
pass
|
|
1500
|
+
|
|
1501
|
+
class Name(PyTextual):
|
|
1502
|
+
"""
|
|
1503
|
+
Parameter Name of value type str.
|
|
1504
|
+
"""
|
|
1505
|
+
pass
|
|
1506
|
+
|
|
1507
|
+
class RotateX(PyNumerical):
|
|
1508
|
+
"""
|
|
1509
|
+
Parameter RotateX of value type float.
|
|
1510
|
+
"""
|
|
1511
|
+
pass
|
|
1512
|
+
|
|
1513
|
+
class RotateY(PyNumerical):
|
|
1514
|
+
"""
|
|
1515
|
+
Parameter RotateY of value type float.
|
|
1516
|
+
"""
|
|
1517
|
+
pass
|
|
1518
|
+
|
|
1519
|
+
class RotateZ(PyNumerical):
|
|
1520
|
+
"""
|
|
1521
|
+
Parameter RotateZ of value type float.
|
|
1522
|
+
"""
|
|
1523
|
+
pass
|
|
1524
|
+
|
|
1525
|
+
class TranslateX(PyNumerical):
|
|
1526
|
+
"""
|
|
1527
|
+
Parameter TranslateX of value type float.
|
|
1528
|
+
"""
|
|
1529
|
+
pass
|
|
1530
|
+
|
|
1531
|
+
class TranslateY(PyNumerical):
|
|
1532
|
+
"""
|
|
1533
|
+
Parameter TranslateY of value type float.
|
|
1534
|
+
"""
|
|
1535
|
+
pass
|
|
1536
|
+
|
|
1537
|
+
class TranslateZ(PyNumerical):
|
|
1538
|
+
"""
|
|
1539
|
+
Parameter TranslateZ of value type float.
|
|
1540
|
+
"""
|
|
1541
|
+
pass
|
|
1542
|
+
|
|
1543
|
+
class Type(PyTextual):
|
|
1544
|
+
"""
|
|
1545
|
+
Parameter Type of value type str.
|
|
1546
|
+
"""
|
|
1547
|
+
pass
|
|
1548
|
+
|
|
1549
|
+
class _name_(PyTextual):
|
|
1550
|
+
"""
|
|
1551
|
+
Parameter _name_ of value type str.
|
|
1552
|
+
"""
|
|
1553
|
+
pass
|
|
1554
|
+
|
|
1555
|
+
class Add(PyCommand):
|
|
1556
|
+
"""
|
|
1557
|
+
Command Add.
|
|
1558
|
+
|
|
1559
|
+
Parameters
|
|
1560
|
+
----------
|
|
1561
|
+
Paths : list[str]
|
|
1562
|
+
|
|
1563
|
+
Returns
|
|
1564
|
+
-------
|
|
1565
|
+
bool
|
|
1566
|
+
"""
|
|
1567
|
+
pass
|
|
1568
|
+
|
|
1569
|
+
class Apply(PyCommand):
|
|
1570
|
+
"""
|
|
1571
|
+
Command Apply.
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
|
+
Returns
|
|
1575
|
+
-------
|
|
1576
|
+
bool
|
|
1577
|
+
"""
|
|
1578
|
+
pass
|
|
1579
|
+
|
|
1580
|
+
class Delete(PyCommand):
|
|
1581
|
+
"""
|
|
1582
|
+
Command Delete.
|
|
1583
|
+
|
|
1584
|
+
Parameters
|
|
1585
|
+
----------
|
|
1586
|
+
Path : str
|
|
1587
|
+
|
|
1588
|
+
Returns
|
|
1589
|
+
-------
|
|
1590
|
+
bool
|
|
1591
|
+
"""
|
|
1592
|
+
pass
|
|
1593
|
+
|
|
1594
|
+
class Remove(PyCommand):
|
|
1595
|
+
"""
|
|
1596
|
+
Command Remove.
|
|
1597
|
+
|
|
1598
|
+
Parameters
|
|
1599
|
+
----------
|
|
1600
|
+
Paths : list[str]
|
|
1601
|
+
|
|
1602
|
+
Returns
|
|
1603
|
+
-------
|
|
1604
|
+
bool
|
|
1605
|
+
"""
|
|
1606
|
+
pass
|
|
1607
|
+
|
|
1608
|
+
class Rename(PyCommand):
|
|
1609
|
+
"""
|
|
1610
|
+
Command Rename.
|
|
1611
|
+
|
|
1612
|
+
Parameters
|
|
1613
|
+
----------
|
|
1614
|
+
NewName : str
|
|
1615
|
+
|
|
1616
|
+
Returns
|
|
1617
|
+
-------
|
|
1618
|
+
bool
|
|
1619
|
+
"""
|
|
1620
|
+
pass
|
|
1621
|
+
|
|
1622
|
+
class Undo(PyCommand):
|
|
1623
|
+
"""
|
|
1624
|
+
Command Undo.
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
Returns
|
|
1628
|
+
-------
|
|
1629
|
+
bool
|
|
1630
|
+
"""
|
|
1631
|
+
pass
|
|
1632
|
+
|
|
1633
|
+
class Update(PyCommand):
|
|
1634
|
+
"""
|
|
1635
|
+
Command Update.
|
|
1636
|
+
|
|
1637
|
+
|
|
1638
|
+
Returns
|
|
1639
|
+
-------
|
|
1640
|
+
bool
|
|
1641
|
+
"""
|
|
1642
|
+
pass
|
|
1643
|
+
|
|
1644
|
+
def __getitem__(self, key: str) -> _Transform:
|
|
1645
|
+
return super().__getitem__(key)
|
|
1646
|
+
|
|
1647
|
+
class TransformBase(PyNamedObjectContainer):
|
|
1648
|
+
"""
|
|
1649
|
+
.
|
|
1650
|
+
"""
|
|
1651
|
+
class _TransformBase(PyMenu):
|
|
1652
|
+
"""
|
|
1653
|
+
Singleton _TransformBase.
|
|
1654
|
+
"""
|
|
1655
|
+
def __init__(self, service, rules, path):
|
|
1656
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
1657
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
1658
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
1659
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
1660
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
1661
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
1662
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
1663
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
1664
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
1665
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
1666
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
1667
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
1668
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
1669
|
+
super().__init__(service, rules, path)
|
|
1670
|
+
|
|
1671
|
+
class Applied(PyParameter):
|
|
1672
|
+
"""
|
|
1673
|
+
Parameter Applied of value type bool.
|
|
1674
|
+
"""
|
|
1675
|
+
pass
|
|
1676
|
+
|
|
1677
|
+
class Children(PyTextual):
|
|
1678
|
+
"""
|
|
1679
|
+
Parameter Children of value type list[str].
|
|
1680
|
+
"""
|
|
1681
|
+
pass
|
|
1682
|
+
|
|
1683
|
+
class Context(PyNumerical):
|
|
1684
|
+
"""
|
|
1685
|
+
Parameter Context of value type int.
|
|
1686
|
+
"""
|
|
1687
|
+
pass
|
|
1688
|
+
|
|
1689
|
+
class Global(PyTextual):
|
|
1690
|
+
"""
|
|
1691
|
+
Parameter Global of value type str.
|
|
1692
|
+
"""
|
|
1693
|
+
pass
|
|
1694
|
+
|
|
1695
|
+
class Name(PyTextual):
|
|
1696
|
+
"""
|
|
1697
|
+
Parameter Name of value type str.
|
|
1698
|
+
"""
|
|
1699
|
+
pass
|
|
1700
|
+
|
|
1701
|
+
class Type(PyTextual):
|
|
1702
|
+
"""
|
|
1703
|
+
Parameter Type of value type str.
|
|
1704
|
+
"""
|
|
1705
|
+
pass
|
|
1706
|
+
|
|
1707
|
+
class _name_(PyTextual):
|
|
1708
|
+
"""
|
|
1709
|
+
Parameter _name_ of value type str.
|
|
1710
|
+
"""
|
|
1711
|
+
pass
|
|
1712
|
+
|
|
1713
|
+
class Add(PyCommand):
|
|
1714
|
+
"""
|
|
1715
|
+
Command Add.
|
|
1716
|
+
|
|
1717
|
+
Parameters
|
|
1718
|
+
----------
|
|
1719
|
+
Paths : list[str]
|
|
1720
|
+
|
|
1721
|
+
Returns
|
|
1722
|
+
-------
|
|
1723
|
+
bool
|
|
1724
|
+
"""
|
|
1725
|
+
pass
|
|
1726
|
+
|
|
1727
|
+
class Apply(PyCommand):
|
|
1728
|
+
"""
|
|
1729
|
+
Command Apply.
|
|
1730
|
+
|
|
1731
|
+
|
|
1732
|
+
Returns
|
|
1733
|
+
-------
|
|
1734
|
+
bool
|
|
1735
|
+
"""
|
|
1736
|
+
pass
|
|
1737
|
+
|
|
1738
|
+
class Remove(PyCommand):
|
|
1739
|
+
"""
|
|
1740
|
+
Command Remove.
|
|
1741
|
+
|
|
1742
|
+
Parameters
|
|
1743
|
+
----------
|
|
1744
|
+
Paths : list[str]
|
|
1745
|
+
|
|
1746
|
+
Returns
|
|
1747
|
+
-------
|
|
1748
|
+
bool
|
|
1749
|
+
"""
|
|
1750
|
+
pass
|
|
1751
|
+
|
|
1752
|
+
class Rename(PyCommand):
|
|
1753
|
+
"""
|
|
1754
|
+
Command Rename.
|
|
1755
|
+
|
|
1756
|
+
Parameters
|
|
1757
|
+
----------
|
|
1758
|
+
NewName : str
|
|
1759
|
+
|
|
1760
|
+
Returns
|
|
1761
|
+
-------
|
|
1762
|
+
bool
|
|
1763
|
+
"""
|
|
1764
|
+
pass
|
|
1765
|
+
|
|
1766
|
+
class Undo(PyCommand):
|
|
1767
|
+
"""
|
|
1768
|
+
Command Undo.
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
Returns
|
|
1772
|
+
-------
|
|
1773
|
+
bool
|
|
1774
|
+
"""
|
|
1775
|
+
pass
|
|
1776
|
+
|
|
1777
|
+
class Update(PyCommand):
|
|
1778
|
+
"""
|
|
1779
|
+
Command Update.
|
|
1780
|
+
|
|
1781
|
+
|
|
1782
|
+
Returns
|
|
1783
|
+
-------
|
|
1784
|
+
bool
|
|
1785
|
+
"""
|
|
1786
|
+
pass
|
|
1787
|
+
|
|
1788
|
+
def __getitem__(self, key: str) -> _TransformBase:
|
|
1789
|
+
return super().__getitem__(key)
|
|
1790
|
+
|
|
1791
|
+
class Translate(PyNamedObjectContainer):
|
|
1792
|
+
"""
|
|
1793
|
+
.
|
|
1794
|
+
"""
|
|
1795
|
+
class _Translate(PyMenu):
|
|
1796
|
+
"""
|
|
1797
|
+
Singleton _Translate.
|
|
1798
|
+
"""
|
|
1799
|
+
def __init__(self, service, rules, path):
|
|
1800
|
+
self.Applied = self.__class__.Applied(service, rules, path + [("Applied", "")])
|
|
1801
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
1802
|
+
self.Context = self.__class__.Context(service, rules, path + [("Context", "")])
|
|
1803
|
+
self.Global = self.__class__.Global(service, rules, path + [("Global", "")])
|
|
1804
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
1805
|
+
self.TranslateX = self.__class__.TranslateX(service, rules, path + [("TranslateX", "")])
|
|
1806
|
+
self.TranslateY = self.__class__.TranslateY(service, rules, path + [("TranslateY", "")])
|
|
1807
|
+
self.TranslateZ = self.__class__.TranslateZ(service, rules, path + [("TranslateZ", "")])
|
|
1808
|
+
self.Type = self.__class__.Type(service, rules, path + [("Type", "")])
|
|
1809
|
+
self._name_ = self.__class__._name_(service, rules, path + [("_name_", "")])
|
|
1810
|
+
self.Add = self.__class__.Add(service, rules, "Add", path)
|
|
1811
|
+
self.Apply = self.__class__.Apply(service, rules, "Apply", path)
|
|
1812
|
+
self.Remove = self.__class__.Remove(service, rules, "Remove", path)
|
|
1813
|
+
self.Rename = self.__class__.Rename(service, rules, "Rename", path)
|
|
1814
|
+
self.Undo = self.__class__.Undo(service, rules, "Undo", path)
|
|
1815
|
+
self.Update = self.__class__.Update(service, rules, "Update", path)
|
|
1816
|
+
super().__init__(service, rules, path)
|
|
1817
|
+
|
|
1818
|
+
class Applied(PyParameter):
|
|
1819
|
+
"""
|
|
1820
|
+
Parameter Applied of value type bool.
|
|
1821
|
+
"""
|
|
1822
|
+
pass
|
|
1823
|
+
|
|
1824
|
+
class Children(PyTextual):
|
|
1825
|
+
"""
|
|
1826
|
+
Parameter Children of value type list[str].
|
|
1827
|
+
"""
|
|
1828
|
+
pass
|
|
1829
|
+
|
|
1830
|
+
class Context(PyNumerical):
|
|
1831
|
+
"""
|
|
1832
|
+
Parameter Context of value type int.
|
|
1833
|
+
"""
|
|
1834
|
+
pass
|
|
1835
|
+
|
|
1836
|
+
class Global(PyTextual):
|
|
1837
|
+
"""
|
|
1838
|
+
Parameter Global of value type str.
|
|
1839
|
+
"""
|
|
1840
|
+
pass
|
|
1841
|
+
|
|
1842
|
+
class Name(PyTextual):
|
|
1843
|
+
"""
|
|
1844
|
+
Parameter Name of value type str.
|
|
1845
|
+
"""
|
|
1846
|
+
pass
|
|
1847
|
+
|
|
1848
|
+
class TranslateX(PyNumerical):
|
|
1849
|
+
"""
|
|
1850
|
+
Parameter TranslateX of value type float.
|
|
1851
|
+
"""
|
|
1852
|
+
pass
|
|
1853
|
+
|
|
1854
|
+
class TranslateY(PyNumerical):
|
|
1855
|
+
"""
|
|
1856
|
+
Parameter TranslateY of value type float.
|
|
1857
|
+
"""
|
|
1858
|
+
pass
|
|
1859
|
+
|
|
1860
|
+
class TranslateZ(PyNumerical):
|
|
1861
|
+
"""
|
|
1862
|
+
Parameter TranslateZ of value type float.
|
|
1863
|
+
"""
|
|
1864
|
+
pass
|
|
1865
|
+
|
|
1866
|
+
class Type(PyTextual):
|
|
1867
|
+
"""
|
|
1868
|
+
Parameter Type of value type str.
|
|
1869
|
+
"""
|
|
1870
|
+
pass
|
|
1871
|
+
|
|
1872
|
+
class _name_(PyTextual):
|
|
1873
|
+
"""
|
|
1874
|
+
Parameter _name_ of value type str.
|
|
1875
|
+
"""
|
|
1876
|
+
pass
|
|
1877
|
+
|
|
1878
|
+
class Add(PyCommand):
|
|
1879
|
+
"""
|
|
1880
|
+
Command Add.
|
|
1881
|
+
|
|
1882
|
+
Parameters
|
|
1883
|
+
----------
|
|
1884
|
+
Paths : list[str]
|
|
1885
|
+
|
|
1886
|
+
Returns
|
|
1887
|
+
-------
|
|
1888
|
+
bool
|
|
1889
|
+
"""
|
|
1890
|
+
pass
|
|
1891
|
+
|
|
1892
|
+
class Apply(PyCommand):
|
|
1893
|
+
"""
|
|
1894
|
+
Command Apply.
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
Returns
|
|
1898
|
+
-------
|
|
1899
|
+
bool
|
|
1900
|
+
"""
|
|
1901
|
+
pass
|
|
1902
|
+
|
|
1903
|
+
class Remove(PyCommand):
|
|
1904
|
+
"""
|
|
1905
|
+
Command Remove.
|
|
1906
|
+
|
|
1907
|
+
Parameters
|
|
1908
|
+
----------
|
|
1909
|
+
Paths : list[str]
|
|
1910
|
+
|
|
1911
|
+
Returns
|
|
1912
|
+
-------
|
|
1913
|
+
bool
|
|
1914
|
+
"""
|
|
1915
|
+
pass
|
|
1916
|
+
|
|
1917
|
+
class Rename(PyCommand):
|
|
1918
|
+
"""
|
|
1919
|
+
Command Rename.
|
|
1920
|
+
|
|
1921
|
+
Parameters
|
|
1922
|
+
----------
|
|
1923
|
+
NewName : str
|
|
1924
|
+
|
|
1925
|
+
Returns
|
|
1926
|
+
-------
|
|
1927
|
+
bool
|
|
1928
|
+
"""
|
|
1929
|
+
pass
|
|
1930
|
+
|
|
1931
|
+
class Undo(PyCommand):
|
|
1932
|
+
"""
|
|
1933
|
+
Command Undo.
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
Returns
|
|
1937
|
+
-------
|
|
1938
|
+
bool
|
|
1939
|
+
"""
|
|
1940
|
+
pass
|
|
1941
|
+
|
|
1942
|
+
class Update(PyCommand):
|
|
1943
|
+
"""
|
|
1944
|
+
Command Update.
|
|
1945
|
+
|
|
1946
|
+
|
|
1947
|
+
Returns
|
|
1948
|
+
-------
|
|
1949
|
+
bool
|
|
1950
|
+
"""
|
|
1951
|
+
pass
|
|
1952
|
+
|
|
1953
|
+
def __getitem__(self, key: str) -> _Translate:
|
|
1954
|
+
return super().__getitem__(key)
|
|
1955
|
+
|
|
1956
|
+
class GlobalSettings(PyMenu):
|
|
1957
|
+
"""
|
|
1958
|
+
Singleton GlobalSettings.
|
|
1959
|
+
"""
|
|
1960
|
+
def __init__(self, service, rules, path):
|
|
1961
|
+
self.CurrentContext = self.__class__.CurrentContext(service, rules, path + [("CurrentContext", "")])
|
|
1962
|
+
self.CurrentNode = self.__class__.CurrentNode(service, rules, path + [("CurrentNode", "")])
|
|
1963
|
+
self.DisplayBoundingBox = self.__class__.DisplayBoundingBox(service, rules, path + [("DisplayBoundingBox", "")])
|
|
1964
|
+
self.LengthUnit = self.__class__.LengthUnit(service, rules, path + [("LengthUnit", "")])
|
|
1965
|
+
super().__init__(service, rules, path)
|
|
1966
|
+
|
|
1967
|
+
class CurrentContext(PyNumerical):
|
|
1968
|
+
"""
|
|
1969
|
+
Parameter CurrentContext of value type int.
|
|
1970
|
+
"""
|
|
1971
|
+
pass
|
|
1972
|
+
|
|
1973
|
+
class CurrentNode(PyTextual):
|
|
1974
|
+
"""
|
|
1975
|
+
Parameter CurrentNode of value type str.
|
|
1976
|
+
"""
|
|
1977
|
+
pass
|
|
1978
|
+
|
|
1979
|
+
class DisplayBoundingBox(PyParameter):
|
|
1980
|
+
"""
|
|
1981
|
+
Parameter DisplayBoundingBox of value type bool.
|
|
1982
|
+
"""
|
|
1983
|
+
pass
|
|
1984
|
+
|
|
1985
|
+
class LengthUnit(PyTextual):
|
|
1986
|
+
"""
|
|
1987
|
+
Parameter LengthUnit of value type str.
|
|
1988
|
+
"""
|
|
1989
|
+
pass
|
|
1990
|
+
|
|
1991
|
+
class MeshingOperations(PyMenu):
|
|
1992
|
+
"""
|
|
1993
|
+
Singleton MeshingOperations.
|
|
1994
|
+
"""
|
|
1995
|
+
def __init__(self, service, rules, path):
|
|
1996
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
1997
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
1998
|
+
self.DeleteAllOperations = self.__class__.DeleteAllOperations(service, rules, "DeleteAllOperations", path)
|
|
1999
|
+
self.UpdateAllOperations = self.__class__.UpdateAllOperations(service, rules, "UpdateAllOperations", path)
|
|
2000
|
+
super().__init__(service, rules, path)
|
|
2001
|
+
|
|
2002
|
+
class Children(PyTextual):
|
|
2003
|
+
"""
|
|
2004
|
+
Parameter Children of value type list[str].
|
|
2005
|
+
"""
|
|
2006
|
+
pass
|
|
2007
|
+
|
|
2008
|
+
class Name(PyTextual):
|
|
2009
|
+
"""
|
|
2010
|
+
Parameter Name of value type str.
|
|
2011
|
+
"""
|
|
2012
|
+
pass
|
|
2013
|
+
|
|
2014
|
+
class DeleteAllOperations(PyCommand):
|
|
2015
|
+
"""
|
|
2016
|
+
Command DeleteAllOperations.
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
Returns
|
|
2020
|
+
-------
|
|
2021
|
+
bool
|
|
2022
|
+
"""
|
|
2023
|
+
pass
|
|
2024
|
+
|
|
2025
|
+
class UpdateAllOperations(PyCommand):
|
|
2026
|
+
"""
|
|
2027
|
+
Command UpdateAllOperations.
|
|
2028
|
+
|
|
2029
|
+
|
|
2030
|
+
Returns
|
|
2031
|
+
-------
|
|
2032
|
+
bool
|
|
2033
|
+
"""
|
|
2034
|
+
pass
|
|
2035
|
+
|
|
2036
|
+
class ObjectSettingOperations(PyMenu):
|
|
2037
|
+
"""
|
|
2038
|
+
Singleton ObjectSettingOperations.
|
|
2039
|
+
"""
|
|
2040
|
+
def __init__(self, service, rules, path):
|
|
2041
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
2042
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
2043
|
+
self.CreateObjectSetting = self.__class__.CreateObjectSetting(service, rules, "CreateObjectSetting", path)
|
|
2044
|
+
self.DeleteAllObjectSetting = self.__class__.DeleteAllObjectSetting(service, rules, "DeleteAllObjectSetting", path)
|
|
2045
|
+
self.DeleteObjectSetting = self.__class__.DeleteObjectSetting(service, rules, "DeleteObjectSetting", path)
|
|
2046
|
+
super().__init__(service, rules, path)
|
|
2047
|
+
|
|
2048
|
+
class Children(PyTextual):
|
|
2049
|
+
"""
|
|
2050
|
+
Parameter Children of value type list[str].
|
|
2051
|
+
"""
|
|
2052
|
+
pass
|
|
2053
|
+
|
|
2054
|
+
class Name(PyTextual):
|
|
2055
|
+
"""
|
|
2056
|
+
Parameter Name of value type str.
|
|
2057
|
+
"""
|
|
2058
|
+
pass
|
|
2059
|
+
|
|
2060
|
+
class CreateObjectSetting(PyCommand):
|
|
2061
|
+
"""
|
|
2062
|
+
Command CreateObjectSetting.
|
|
2063
|
+
|
|
2064
|
+
Parameters
|
|
2065
|
+
----------
|
|
2066
|
+
Paths : list[str]
|
|
2067
|
+
|
|
2068
|
+
Returns
|
|
2069
|
+
-------
|
|
2070
|
+
bool
|
|
2071
|
+
"""
|
|
2072
|
+
pass
|
|
2073
|
+
|
|
2074
|
+
class DeleteAllObjectSetting(PyCommand):
|
|
2075
|
+
"""
|
|
2076
|
+
Command DeleteAllObjectSetting.
|
|
2077
|
+
|
|
2078
|
+
|
|
2079
|
+
Returns
|
|
2080
|
+
-------
|
|
2081
|
+
bool
|
|
2082
|
+
"""
|
|
2083
|
+
pass
|
|
2084
|
+
|
|
2085
|
+
class DeleteObjectSetting(PyCommand):
|
|
2086
|
+
"""
|
|
2087
|
+
Command DeleteObjectSetting.
|
|
2088
|
+
|
|
2089
|
+
Parameters
|
|
2090
|
+
----------
|
|
2091
|
+
Paths : list[str]
|
|
2092
|
+
|
|
2093
|
+
Returns
|
|
2094
|
+
-------
|
|
2095
|
+
bool
|
|
2096
|
+
"""
|
|
2097
|
+
pass
|
|
2098
|
+
|
|
2099
|
+
class RefacetingOperations(PyMenu):
|
|
2100
|
+
"""
|
|
2101
|
+
Singleton RefacetingOperations.
|
|
2102
|
+
"""
|
|
2103
|
+
def __init__(self, service, rules, path):
|
|
2104
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
2105
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
2106
|
+
self.CreateRefacet = self.__class__.CreateRefacet(service, rules, "CreateRefacet", path)
|
|
2107
|
+
self.DeleteAllRefacets = self.__class__.DeleteAllRefacets(service, rules, "DeleteAllRefacets", path)
|
|
2108
|
+
self.DeleteRefacet = self.__class__.DeleteRefacet(service, rules, "DeleteRefacet", path)
|
|
2109
|
+
self.UpdateAllRefacets = self.__class__.UpdateAllRefacets(service, rules, "UpdateAllRefacets", path)
|
|
2110
|
+
super().__init__(service, rules, path)
|
|
2111
|
+
|
|
2112
|
+
class Children(PyTextual):
|
|
2113
|
+
"""
|
|
2114
|
+
Parameter Children of value type list[str].
|
|
2115
|
+
"""
|
|
2116
|
+
pass
|
|
2117
|
+
|
|
2118
|
+
class Name(PyTextual):
|
|
2119
|
+
"""
|
|
2120
|
+
Parameter Name of value type str.
|
|
2121
|
+
"""
|
|
2122
|
+
pass
|
|
2123
|
+
|
|
2124
|
+
class CreateRefacet(PyCommand):
|
|
2125
|
+
"""
|
|
2126
|
+
Command CreateRefacet.
|
|
2127
|
+
|
|
2128
|
+
Parameters
|
|
2129
|
+
----------
|
|
2130
|
+
Paths : list[str]
|
|
2131
|
+
|
|
2132
|
+
Returns
|
|
2133
|
+
-------
|
|
2134
|
+
bool
|
|
2135
|
+
"""
|
|
2136
|
+
pass
|
|
2137
|
+
|
|
2138
|
+
class DeleteAllRefacets(PyCommand):
|
|
2139
|
+
"""
|
|
2140
|
+
Command DeleteAllRefacets.
|
|
2141
|
+
|
|
2142
|
+
|
|
2143
|
+
Returns
|
|
2144
|
+
-------
|
|
2145
|
+
bool
|
|
2146
|
+
"""
|
|
2147
|
+
pass
|
|
2148
|
+
|
|
2149
|
+
class DeleteRefacet(PyCommand):
|
|
2150
|
+
"""
|
|
2151
|
+
Command DeleteRefacet.
|
|
2152
|
+
|
|
2153
|
+
Parameters
|
|
2154
|
+
----------
|
|
2155
|
+
Paths : list[str]
|
|
2156
|
+
|
|
2157
|
+
Returns
|
|
2158
|
+
-------
|
|
2159
|
+
bool
|
|
2160
|
+
"""
|
|
2161
|
+
pass
|
|
2162
|
+
|
|
2163
|
+
class UpdateAllRefacets(PyCommand):
|
|
2164
|
+
"""
|
|
2165
|
+
Command UpdateAllRefacets.
|
|
2166
|
+
|
|
2167
|
+
|
|
2168
|
+
Returns
|
|
2169
|
+
-------
|
|
2170
|
+
bool
|
|
2171
|
+
"""
|
|
2172
|
+
pass
|
|
2173
|
+
|
|
2174
|
+
class TransformOperations(PyMenu):
|
|
2175
|
+
"""
|
|
2176
|
+
Singleton TransformOperations.
|
|
2177
|
+
"""
|
|
2178
|
+
def __init__(self, service, rules, path):
|
|
2179
|
+
self.Children = self.__class__.Children(service, rules, path + [("Children", "")])
|
|
2180
|
+
self.Name = self.__class__.Name(service, rules, path + [("Name", "")])
|
|
2181
|
+
self.CreateTransform = self.__class__.CreateTransform(service, rules, "CreateTransform", path)
|
|
2182
|
+
self.CreateTransformType = self.__class__.CreateTransformType(service, rules, "CreateTransformType", path)
|
|
2183
|
+
self.DeleteAllTransforms = self.__class__.DeleteAllTransforms(service, rules, "DeleteAllTransforms", path)
|
|
2184
|
+
self.DeleteTransform = self.__class__.DeleteTransform(service, rules, "DeleteTransform", path)
|
|
2185
|
+
self.UpdateAllTransforms = self.__class__.UpdateAllTransforms(service, rules, "UpdateAllTransforms", path)
|
|
2186
|
+
super().__init__(service, rules, path)
|
|
2187
|
+
|
|
2188
|
+
class Children(PyTextual):
|
|
2189
|
+
"""
|
|
2190
|
+
Parameter Children of value type list[str].
|
|
2191
|
+
"""
|
|
2192
|
+
pass
|
|
2193
|
+
|
|
2194
|
+
class Name(PyTextual):
|
|
2195
|
+
"""
|
|
2196
|
+
Parameter Name of value type str.
|
|
2197
|
+
"""
|
|
2198
|
+
pass
|
|
2199
|
+
|
|
2200
|
+
class CreateTransform(PyCommand):
|
|
2201
|
+
"""
|
|
2202
|
+
Command CreateTransform.
|
|
2203
|
+
|
|
2204
|
+
Parameters
|
|
2205
|
+
----------
|
|
2206
|
+
Paths : list[str]
|
|
2207
|
+
|
|
2208
|
+
Returns
|
|
2209
|
+
-------
|
|
2210
|
+
bool
|
|
2211
|
+
"""
|
|
2212
|
+
pass
|
|
2213
|
+
|
|
2214
|
+
class CreateTransformType(PyCommand):
|
|
2215
|
+
"""
|
|
2216
|
+
Command CreateTransformType.
|
|
2217
|
+
|
|
2218
|
+
Parameters
|
|
2219
|
+
----------
|
|
2220
|
+
Type : str
|
|
2221
|
+
Paths : list[str]
|
|
2222
|
+
|
|
2223
|
+
Returns
|
|
2224
|
+
-------
|
|
2225
|
+
bool
|
|
2226
|
+
"""
|
|
2227
|
+
pass
|
|
2228
|
+
|
|
2229
|
+
class DeleteAllTransforms(PyCommand):
|
|
2230
|
+
"""
|
|
2231
|
+
Command DeleteAllTransforms.
|
|
2232
|
+
|
|
2233
|
+
|
|
2234
|
+
Returns
|
|
2235
|
+
-------
|
|
2236
|
+
bool
|
|
2237
|
+
"""
|
|
2238
|
+
pass
|
|
2239
|
+
|
|
2240
|
+
class DeleteTransform(PyCommand):
|
|
2241
|
+
"""
|
|
2242
|
+
Command DeleteTransform.
|
|
2243
|
+
|
|
2244
|
+
Parameters
|
|
2245
|
+
----------
|
|
2246
|
+
Paths : list[str]
|
|
2247
|
+
|
|
2248
|
+
Returns
|
|
2249
|
+
-------
|
|
2250
|
+
bool
|
|
2251
|
+
"""
|
|
2252
|
+
pass
|
|
2253
|
+
|
|
2254
|
+
class UpdateAllTransforms(PyCommand):
|
|
2255
|
+
"""
|
|
2256
|
+
Command UpdateAllTransforms.
|
|
2257
|
+
|
|
2258
|
+
|
|
2259
|
+
Returns
|
|
2260
|
+
-------
|
|
2261
|
+
bool
|
|
2262
|
+
"""
|
|
2263
|
+
pass
|
|
2264
|
+
|
|
2265
|
+
class AppendFmdFiles(PyCommand):
|
|
2266
|
+
"""
|
|
2267
|
+
Command AppendFmdFiles.
|
|
2268
|
+
|
|
2269
|
+
Parameters
|
|
2270
|
+
----------
|
|
2271
|
+
FilePath : list[str]
|
|
2272
|
+
AssemblyParentNode : int
|
|
2273
|
+
FileUnit : str
|
|
2274
|
+
Route : str
|
|
2275
|
+
JtLOD : str
|
|
2276
|
+
PartPerBody : bool
|
|
2277
|
+
PrefixParentName : bool
|
|
2278
|
+
RemoveEmptyParts : bool
|
|
2279
|
+
IgnoreSolidNamesAppend : bool
|
|
2280
|
+
Options : dict[str, Any]
|
|
2281
|
+
RefacetOptions : dict[str, Any]
|
|
2282
|
+
|
|
2283
|
+
Returns
|
|
2284
|
+
-------
|
|
2285
|
+
bool
|
|
2286
|
+
"""
|
|
2287
|
+
pass
|
|
2288
|
+
|
|
2289
|
+
class ChangeFileLengthUnit(PyCommand):
|
|
2290
|
+
"""
|
|
2291
|
+
Command ChangeFileLengthUnit.
|
|
2292
|
+
|
|
2293
|
+
Parameters
|
|
2294
|
+
----------
|
|
2295
|
+
LengthUnit : str
|
|
2296
|
+
|
|
2297
|
+
Returns
|
|
2298
|
+
-------
|
|
2299
|
+
bool
|
|
2300
|
+
"""
|
|
2301
|
+
pass
|
|
2302
|
+
|
|
2303
|
+
class ChangeLengthUnit(PyCommand):
|
|
2304
|
+
"""
|
|
2305
|
+
Command ChangeLengthUnit.
|
|
2306
|
+
|
|
2307
|
+
Parameters
|
|
2308
|
+
----------
|
|
2309
|
+
LengthUnit : str
|
|
2310
|
+
|
|
2311
|
+
Returns
|
|
2312
|
+
-------
|
|
2313
|
+
bool
|
|
2314
|
+
"""
|
|
2315
|
+
pass
|
|
2316
|
+
|
|
2317
|
+
class CreateObjForEachPart(PyCommand):
|
|
2318
|
+
"""
|
|
2319
|
+
Command CreateObjForEachPart.
|
|
2320
|
+
|
|
2321
|
+
Parameters
|
|
2322
|
+
----------
|
|
2323
|
+
Paths : list[str]
|
|
2324
|
+
|
|
2325
|
+
Returns
|
|
2326
|
+
-------
|
|
2327
|
+
bool
|
|
2328
|
+
"""
|
|
2329
|
+
pass
|
|
2330
|
+
|
|
2331
|
+
class CreateObjects(PyCommand):
|
|
2332
|
+
"""
|
|
2333
|
+
Command CreateObjects.
|
|
2334
|
+
|
|
2335
|
+
|
|
2336
|
+
Returns
|
|
2337
|
+
-------
|
|
2338
|
+
bool
|
|
2339
|
+
"""
|
|
2340
|
+
pass
|
|
2341
|
+
|
|
2342
|
+
class Delete(PyCommand):
|
|
2343
|
+
"""
|
|
2344
|
+
Command Delete.
|
|
2345
|
+
|
|
2346
|
+
Parameters
|
|
2347
|
+
----------
|
|
2348
|
+
Path : str
|
|
2349
|
+
|
|
2350
|
+
Returns
|
|
2351
|
+
-------
|
|
2352
|
+
bool
|
|
2353
|
+
"""
|
|
2354
|
+
pass
|
|
2355
|
+
|
|
2356
|
+
class DeletePaths(PyCommand):
|
|
2357
|
+
"""
|
|
2358
|
+
Command DeletePaths.
|
|
2359
|
+
|
|
2360
|
+
Parameters
|
|
2361
|
+
----------
|
|
2362
|
+
Paths : list[str]
|
|
2363
|
+
|
|
2364
|
+
Returns
|
|
2365
|
+
-------
|
|
2366
|
+
bool
|
|
2367
|
+
"""
|
|
2368
|
+
pass
|
|
2369
|
+
|
|
2370
|
+
class InitializeTemplate(PyCommand):
|
|
2371
|
+
"""
|
|
2372
|
+
Command InitializeTemplate.
|
|
2373
|
+
|
|
2374
|
+
Parameters
|
|
2375
|
+
----------
|
|
2376
|
+
templateType : str
|
|
2377
|
+
|
|
2378
|
+
Returns
|
|
2379
|
+
-------
|
|
2380
|
+
bool
|
|
2381
|
+
"""
|
|
2382
|
+
pass
|
|
2383
|
+
|
|
2384
|
+
class InputFileChanged(PyCommand):
|
|
2385
|
+
"""
|
|
2386
|
+
Command InputFileChanged.
|
|
2387
|
+
|
|
2388
|
+
Parameters
|
|
2389
|
+
----------
|
|
2390
|
+
FilePath : str
|
|
2391
|
+
PartPerBody : bool
|
|
2392
|
+
PrefixParentName : bool
|
|
2393
|
+
RemoveEmptyParts : bool
|
|
2394
|
+
IgnoreSolidNames : bool
|
|
2395
|
+
FileLengthUnit : str
|
|
2396
|
+
JtLOD : str
|
|
2397
|
+
Options : dict[str, Any]
|
|
2398
|
+
RefacetOptions : dict[str, Any]
|
|
2399
|
+
|
|
2400
|
+
Returns
|
|
2401
|
+
-------
|
|
2402
|
+
bool
|
|
2403
|
+
"""
|
|
2404
|
+
pass
|
|
2405
|
+
|
|
2406
|
+
class ListMeshingOperations(PyCommand):
|
|
2407
|
+
"""
|
|
2408
|
+
Command ListMeshingOperations.
|
|
2409
|
+
|
|
2410
|
+
Parameters
|
|
2411
|
+
----------
|
|
2412
|
+
Path : str
|
|
2413
|
+
|
|
2414
|
+
Returns
|
|
2415
|
+
-------
|
|
2416
|
+
bool
|
|
2417
|
+
"""
|
|
2418
|
+
pass
|
|
2419
|
+
|
|
2420
|
+
class LoadFmdFile(PyCommand):
|
|
2421
|
+
"""
|
|
2422
|
+
Command LoadFmdFile.
|
|
2423
|
+
|
|
2424
|
+
Parameters
|
|
2425
|
+
----------
|
|
2426
|
+
FilePath : str
|
|
2427
|
+
FileUnit : str
|
|
2428
|
+
Route : str
|
|
2429
|
+
JtLOD : str
|
|
2430
|
+
PartPerBody : bool
|
|
2431
|
+
PrefixParentName : bool
|
|
2432
|
+
RemoveEmptyParts : bool
|
|
2433
|
+
IgnoreSolidNames : bool
|
|
2434
|
+
Options : dict[str, Any]
|
|
2435
|
+
RefacetOptions : dict[str, Any]
|
|
2436
|
+
|
|
2437
|
+
Returns
|
|
2438
|
+
-------
|
|
2439
|
+
bool
|
|
2440
|
+
"""
|
|
2441
|
+
pass
|
|
2442
|
+
|
|
2443
|
+
class LoadTemplate(PyCommand):
|
|
2444
|
+
"""
|
|
2445
|
+
Command LoadTemplate.
|
|
2446
|
+
|
|
2447
|
+
Parameters
|
|
2448
|
+
----------
|
|
2449
|
+
FilePath : str
|
|
2450
|
+
|
|
2451
|
+
Returns
|
|
2452
|
+
-------
|
|
2453
|
+
bool
|
|
2454
|
+
"""
|
|
2455
|
+
pass
|
|
2456
|
+
|
|
2457
|
+
class MarkObjectsOutofDate(PyCommand):
|
|
2458
|
+
"""
|
|
2459
|
+
Command MarkObjectsOutofDate.
|
|
2460
|
+
|
|
2461
|
+
Parameters
|
|
2462
|
+
----------
|
|
2463
|
+
Paths : list[str]
|
|
2464
|
+
|
|
2465
|
+
Returns
|
|
2466
|
+
-------
|
|
2467
|
+
bool
|
|
2468
|
+
"""
|
|
2469
|
+
pass
|
|
2470
|
+
|
|
2471
|
+
class MoveCADComponentsToNewObject(PyCommand):
|
|
2472
|
+
"""
|
|
2473
|
+
Command MoveCADComponentsToNewObject.
|
|
2474
|
+
|
|
2475
|
+
Parameters
|
|
2476
|
+
----------
|
|
2477
|
+
Paths : list[str]
|
|
2478
|
+
|
|
2479
|
+
Returns
|
|
2480
|
+
-------
|
|
2481
|
+
bool
|
|
2482
|
+
"""
|
|
2483
|
+
pass
|
|
2484
|
+
|
|
2485
|
+
class MoveToNewSubobject(PyCommand):
|
|
2486
|
+
"""
|
|
2487
|
+
Command MoveToNewSubobject.
|
|
2488
|
+
|
|
2489
|
+
Parameters
|
|
2490
|
+
----------
|
|
2491
|
+
Paths : list[str]
|
|
2492
|
+
|
|
2493
|
+
Returns
|
|
2494
|
+
-------
|
|
2495
|
+
bool
|
|
2496
|
+
"""
|
|
2497
|
+
pass
|
|
2498
|
+
|
|
2499
|
+
class MoveToObject(PyCommand):
|
|
2500
|
+
"""
|
|
2501
|
+
Command MoveToObject.
|
|
2502
|
+
|
|
2503
|
+
Parameters
|
|
2504
|
+
----------
|
|
2505
|
+
Paths : list[str]
|
|
2506
|
+
|
|
2507
|
+
Returns
|
|
2508
|
+
-------
|
|
2509
|
+
bool
|
|
2510
|
+
"""
|
|
2511
|
+
pass
|
|
2512
|
+
|
|
2513
|
+
class RedoAllTransforms(PyCommand):
|
|
2514
|
+
"""
|
|
2515
|
+
Command RedoAllTransforms.
|
|
2516
|
+
|
|
2517
|
+
|
|
2518
|
+
Returns
|
|
2519
|
+
-------
|
|
2520
|
+
bool
|
|
2521
|
+
"""
|
|
2522
|
+
pass
|
|
2523
|
+
|
|
2524
|
+
class ResetTemplate(PyCommand):
|
|
2525
|
+
"""
|
|
2526
|
+
Command ResetTemplate.
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
Returns
|
|
2530
|
+
-------
|
|
2531
|
+
bool
|
|
2532
|
+
"""
|
|
2533
|
+
pass
|
|
2534
|
+
|
|
2535
|
+
class SaveFmdFile(PyCommand):
|
|
2536
|
+
"""
|
|
2537
|
+
Command SaveFmdFile.
|
|
2538
|
+
|
|
2539
|
+
Parameters
|
|
2540
|
+
----------
|
|
2541
|
+
FilePath : str
|
|
2542
|
+
|
|
2543
|
+
Returns
|
|
2544
|
+
-------
|
|
2545
|
+
bool
|
|
2546
|
+
"""
|
|
2547
|
+
pass
|
|
2548
|
+
|
|
2549
|
+
class SaveTemplate(PyCommand):
|
|
2550
|
+
"""
|
|
2551
|
+
Command SaveTemplate.
|
|
2552
|
+
|
|
2553
|
+
Parameters
|
|
2554
|
+
----------
|
|
2555
|
+
FilePath : str
|
|
2556
|
+
|
|
2557
|
+
Returns
|
|
2558
|
+
-------
|
|
2559
|
+
bool
|
|
2560
|
+
"""
|
|
2561
|
+
pass
|
|
2562
|
+
|
|
2563
|
+
class SuppressNodeObjects(PyCommand):
|
|
2564
|
+
"""
|
|
2565
|
+
Command SuppressNodeObjects.
|
|
2566
|
+
|
|
2567
|
+
Parameters
|
|
2568
|
+
----------
|
|
2569
|
+
Paths : list[str]
|
|
2570
|
+
Suppress : bool
|
|
2571
|
+
|
|
2572
|
+
Returns
|
|
2573
|
+
-------
|
|
2574
|
+
bool
|
|
2575
|
+
"""
|
|
2576
|
+
pass
|
|
2577
|
+
|
|
2578
|
+
class UndoAllTransforms(PyCommand):
|
|
2579
|
+
"""
|
|
2580
|
+
Command UndoAllTransforms.
|
|
2581
|
+
|
|
2582
|
+
|
|
2583
|
+
Returns
|
|
2584
|
+
-------
|
|
2585
|
+
bool
|
|
2586
|
+
"""
|
|
2587
|
+
pass
|
|
2588
|
+
|