dlubal.api 0.1.293714a1__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 dlubal.api might be problematic. Click here for more details.
- dlubal/__init__.py +0 -0
- dlubal/api/__init__.py +0 -0
- dlubal/api/common/__init__.py +3 -0
- dlubal/api/common/common_pb2.py +42 -0
- dlubal/api/common/common_pb2.pyi +41 -0
- dlubal/api/common/connection.py +251 -0
- dlubal/api/common/exceptions.py +12 -0
- dlubal/api/common/model_id_pb2.py +38 -0
- dlubal/api/common/model_id_pb2.pyi +17 -0
- dlubal/api/common/table.py +35 -0
- dlubal/api/common/table_data_pb2.py +39 -0
- dlubal/api/common/table_data_pb2.pyi +21 -0
- dlubal/api/rfem/__init__.py +32 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/application.py +290 -0
- dlubal/api/rfem/application_pb2.py +67 -0
- dlubal/api/rfem/application_pb2.pyi +135 -0
- dlubal/api/rfem/application_pb2_grpc.py +973 -0
- dlubal/api/rfem/base_data/__init__.py +1 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
- dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
- dlubal/api/rfem/building_model/__init__.py +4 -0
- dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
- dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
- dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/construction_stages/__init__.py +1 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
- dlubal/api/rfem/guide_objects/__init__.py +10 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
- dlubal/api/rfem/imperfections/__init__.py +5 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/load_wizards/__init__.py +2 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
- dlubal/api/rfem/loading/__init__.py +15 -0
- dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
- dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
- dlubal/api/rfem/loading/action_pb2.py +42 -0
- dlubal/api/rfem/loading/action_pb2.pyi +80 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
- dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
- dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
- dlubal/api/rfem/loading/load_case_pb2.py +77 -0
- dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
- dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
- dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
- dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
- dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
- dlubal/api/rfem/loads/__init__.py +17 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rfem/loads/line_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/member_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
- dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
- dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
- dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
- dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
- dlubal/api/rfem/packing.py +45 -0
- dlubal/api/rfem/result_objects/__init__.py +1 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
- dlubal/api/rfem/results/__init__.py +2 -0
- dlubal/api/rfem/results/results_id_pb2.py +36 -0
- dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
- dlubal/api/rfem/results/results_query_pb2.py +40 -0
- dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/structure_advanced/__init__.py +9 -0
- dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
- dlubal/api/rfem/structure_core/__init__.py +15 -0
- dlubal/api/rfem/structure_core/line_pb2.py +53 -0
- dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
- dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
- dlubal/api/rfem/structure_core/material_pb2.py +100 -0
- dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
- dlubal/api/rfem/structure_core/member_pb2.py +79 -0
- dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
- dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
- dlubal/api/rfem/structure_core/node_pb2.py +43 -0
- dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
- dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
- dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
- dlubal/api/rfem/structure_core/section_pb2.py +66 -0
- dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
- dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
- dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
- dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
- dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
- dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
- dlubal/api/rfem/types_for_lines/__init__.py +4 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
- dlubal/api/rfem/types_for_members/__init__.py +13 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
- dlubal/api/rfem/types_for_solids/__init__.py +3 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
- dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
- dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
- dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
- dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
- dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from typing import ClassVar as _ClassVar
|
|
4
|
+
|
|
5
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
+
|
|
7
|
+
class ResultsId(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
8
|
+
__slots__ = ()
|
|
9
|
+
RESULTS_ID_INVALID: _ClassVar[ResultsId]
|
|
10
|
+
RESULTS_ID_STATIC_ANALYSIS_MEMBER_INTERNAL_FORCES: _ClassVar[ResultsId]
|
|
11
|
+
RESULTS_ID_TEST: _ClassVar[ResultsId]
|
|
12
|
+
RESULTS_ID_INVALID: ResultsId
|
|
13
|
+
RESULTS_ID_STATIC_ANALYSIS_MEMBER_INTERNAL_FORCES: ResultsId
|
|
14
|
+
RESULTS_ID_TEST: ResultsId
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/results/results_query.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/results/results_query.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import model_id_pb2 as dlubal_dot_api_dot_common_dot_model__id__pb2
|
|
26
|
+
from dlubal.api.rfem.results import results_id_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_results__id__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+dlubal/api/rfem/results/results_query.proto\x12\x17\x64lubal.api.rfem.results\x1a dlubal/api/common/model_id.proto\x1a(dlubal/api/rfem/results/results_id.proto\"\xbf\x01\n\x0cResultsQuery\x12\x31\n\x08model_id\x18\x01 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x12\x36\n\nresults_id\x18\x02 \x01(\x0e\x32\".dlubal.api.rfem.results.ResultsId\x12\x37\n\x07\x66ilters\x18\x03 \x03(\x0b\x32&.dlubal.api.rfem.results.ResultsFilterB\x0b\n\t_model_id\"=\n\rResultsFilter\x12\x11\n\tcolumn_id\x18\x01 \x01(\t\x12\x19\n\x11\x66ilter_expression\x18\x02 \x01(\tb\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.results.results_query_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
DESCRIPTOR._loaded_options = None
|
|
36
|
+
_globals['_RESULTSQUERY']._serialized_start=149
|
|
37
|
+
_globals['_RESULTSQUERY']._serialized_end=340
|
|
38
|
+
_globals['_RESULTSFILTER']._serialized_start=342
|
|
39
|
+
_globals['_RESULTSFILTER']._serialized_end=403
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from dlubal.api.common import model_id_pb2 as _model_id_pb2
|
|
2
|
+
from dlubal.api.rfem.results import results_id_pb2 as _results_id_pb2
|
|
3
|
+
from google.protobuf.internal import containers as _containers
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class ResultsQuery(_message.Message):
|
|
11
|
+
__slots__ = ("model_id", "results_id", "filters")
|
|
12
|
+
MODEL_ID_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
RESULTS_ID_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
FILTERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
model_id: _model_id_pb2.ModelId
|
|
16
|
+
results_id: _results_id_pb2.ResultsId
|
|
17
|
+
filters: _containers.RepeatedCompositeFieldContainer[ResultsFilter]
|
|
18
|
+
def __init__(self, model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ..., results_id: _Optional[_Union[_results_id_pb2.ResultsId, str]] = ..., filters: _Optional[_Iterable[_Union[ResultsFilter, _Mapping]]] = ...) -> None: ...
|
|
19
|
+
|
|
20
|
+
class ResultsFilter(_message.Message):
|
|
21
|
+
__slots__ = ("column_id", "filter_expression")
|
|
22
|
+
COLUMN_ID_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
FILTER_EXPRESSION_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
column_id: str
|
|
25
|
+
filter_expression: str
|
|
26
|
+
def __init__(self, column_id: _Optional[str] = ..., filter_expression: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nHdlubal/api/rfem/steel_design_objects/steel_design_fr_configuration.proto\x12$dlubal.api.rfem.steel_design_objects\"\xfa\x03\n\x1aSteelDesignFrConfiguration\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.steel_design_objects.steel_design_fr_configuration_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STEELDESIGNFRCONFIGURATION']._serialized_start=115
|
|
35
|
+
_globals['_STEELDESIGNFRCONFIGURATION']._serialized_end=621
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class SteelDesignFrConfiguration(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
no: int
|
|
21
|
+
user_defined_name_enabled: bool
|
|
22
|
+
name: str
|
|
23
|
+
assigned_to_all_members: bool
|
|
24
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
assigned_to_all_member_sets: bool
|
|
26
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
comment: str
|
|
28
|
+
id_for_export_import: str
|
|
29
|
+
metadata_for_export_import: str
|
|
30
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nMdlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration.proto\x12$dlubal.api.rfem.steel_design_objects\"\xff\x03\n\x1fSteelDesignSeismicConfiguration\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.steel_design_objects.steel_design_seismic_configuration_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STEELDESIGNSEISMICCONFIGURATION']._serialized_start=120
|
|
35
|
+
_globals['_STEELDESIGNSEISMICCONFIGURATION']._serialized_end=631
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class SteelDesignSeismicConfiguration(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
no: int
|
|
21
|
+
user_defined_name_enabled: bool
|
|
22
|
+
name: str
|
|
23
|
+
assigned_to_all_members: bool
|
|
24
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
assigned_to_all_member_sets: bool
|
|
26
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
comment: str
|
|
28
|
+
id_for_export_import: str
|
|
29
|
+
metadata_for_export_import: str
|
|
30
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nIdlubal/api/rfem/steel_design_objects/steel_design_sls_configuration.proto\x12$dlubal.api.rfem.steel_design_objects\"\xfb\x03\n\x1bSteelDesignSlsConfiguration\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.steel_design_objects.steel_design_sls_configuration_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STEELDESIGNSLSCONFIGURATION']._serialized_start=116
|
|
35
|
+
_globals['_STEELDESIGNSLSCONFIGURATION']._serialized_end=623
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class SteelDesignSlsConfiguration(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
no: int
|
|
21
|
+
user_defined_name_enabled: bool
|
|
22
|
+
name: str
|
|
23
|
+
assigned_to_all_members: bool
|
|
24
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
assigned_to_all_member_sets: bool
|
|
26
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
comment: str
|
|
28
|
+
id_for_export_import: str
|
|
29
|
+
metadata_for_export_import: str
|
|
30
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nIdlubal/api/rfem/steel_design_objects/steel_design_uls_configuration.proto\x12$dlubal.api.rfem.steel_design_objects\"\xfb\x03\n\x1bSteelDesignUlsConfiguration\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.steel_design_objects.steel_design_uls_configuration_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STEELDESIGNULSCONFIGURATION']._serialized_start=116
|
|
35
|
+
_globals['_STEELDESIGNULSCONFIGURATION']._serialized_end=623
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class SteelDesignUlsConfiguration(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
no: int
|
|
21
|
+
user_defined_name_enabled: bool
|
|
22
|
+
name: str
|
|
23
|
+
assigned_to_all_members: bool
|
|
24
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
assigned_to_all_member_sets: bool
|
|
26
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
comment: str
|
|
28
|
+
id_for_export_import: str
|
|
29
|
+
metadata_for_export_import: str
|
|
30
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
from .block_pb2 import *
|
|
2
|
+
from .intersection_pb2 import *
|
|
3
|
+
from .line_release_pb2 import *
|
|
4
|
+
from .nodal_release_pb2 import *
|
|
5
|
+
from .rigid_link_pb2 import *
|
|
6
|
+
from .structure_modification_pb2 import *
|
|
7
|
+
from .surfaces_contact_pb2 import *
|
|
8
|
+
from .surface_release_pb2 import *
|
|
9
|
+
from .surface_results_adjustment_pb2 import *
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/structure_advanced/block.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_advanced/block.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.dlubal/api/rfem/structure_advanced/block.proto\x12\"dlubal.api.rfem.structure_advanced\x1a\x1e\x64lubal/api/common/common.proto\"\xc9\x1b\n\x05\x42lock\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12\x1b\n\x0einsert_node_id\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x82\x01\n(is_insert_point_position_defined_by_node\x18\x06 \x01(\x0e\x32K.dlubal.api.rfem.structure_advanced.BlockIsInsertPointPositionDefinedByNodeH\x04\x88\x01\x01\x12\'\n\x1ainsert_point_position_node\x18\x07 \x01(\x05H\x05\x88\x01\x01\x12K\n!insert_point_position_coordinates\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12/\n\"insert_point_position_coordinate_x\x18\t \x01(\x01H\x07\x88\x01\x01\x12/\n\"insert_point_position_coordinate_y\x18\n \x01(\x01H\x08\x88\x01\x01\x12/\n\"insert_point_position_coordinate_z\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\'\n\x1arotation_coordinate_system\x18\x0c \x01(\x05H\n\x88\x01\x01\x12\x64\n\x17specific_direction_type\x18\r \x01(\x0e\x32>.dlubal.api.rfem.structure_advanced.BlockSpecificDirectionTypeH\x0b\x88\x01\x01\x12\"\n\x15rotated_about_angle_x\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\"\n\x15rotated_about_angle_y\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\"\n\x15rotated_about_angle_z\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\"\n\x15rotated_about_angle_1\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12\"\n\x15rotated_about_angle_2\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\"\n\x15rotated_about_angle_3\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12Q\n\raxes_sequence\x18\x14 \x01(\x0e\x32\x35.dlubal.api.rfem.structure_advanced.BlockAxesSequenceH\x12\x88\x01\x01\x12,\n\x1f\x64irected_to_node_direction_node\x18\x15 \x01(\x05H\x13\x88\x01\x01\x12(\n\x1b\x64irected_to_node_plane_node\x18\x16 \x01(\x05H\x14\x88\x01\x01\x12j\n\x1b\x64irected_to_node_first_axis\x18\x17 \x01(\x0e\x32@.dlubal.api.rfem.structure_advanced.BlockDirectedToNodeFirstAxisH\x15\x88\x01\x01\x12l\n\x1c\x64irected_to_node_second_axis\x18\x18 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_advanced.BlockDirectedToNodeSecondAxisH\x16\x88\x01\x01\x12-\n parallel_to_two_nodes_first_node\x18\x19 \x01(\x05H\x17\x88\x01\x01\x12.\n!parallel_to_two_nodes_second_node\x18\x1a \x01(\x05H\x18\x88\x01\x01\x12-\n parallel_to_two_nodes_plane_node\x18\x1b \x01(\x05H\x19\x88\x01\x01\x12s\n parallel_to_two_nodes_first_axis\x18\x1c \x01(\x0e\x32\x44.dlubal.api.rfem.structure_advanced.BlockParallelToTwoNodesFirstAxisH\x1a\x88\x01\x01\x12u\n!parallel_to_two_nodes_second_axis\x18\x1d \x01(\x0e\x32\x45.dlubal.api.rfem.structure_advanced.BlockParallelToTwoNodesSecondAxisH\x1b\x88\x01\x01\x12\x1d\n\x10parallel_to_line\x18\x1e \x01(\x05H\x1c\x88\x01\x01\x12\x1f\n\x12parallel_to_member\x18\x1f \x01(\x05H\x1d\x88\x01\x01\x12\x1a\n\rloads_enabled\x18 \x01(\x08H\x1e\x88\x01\x01\x12\x1e\n\x11numbering_enabled\x18! \x01(\x08H\x1f\x88\x01\x01\x12\x1b\n\x0ehas_javascript\x18\" \x01(\x08H \x88\x01\x01\x12\x15\n\x08\x62lock_id\x18# \x01(\tH!\x88\x01\x01\x12\x17\n\nblock_name\x18$ \x01(\tH\"\x88\x01\x01\x12\x17\n\nmodel_type\x18% \x01(\tH#\x88\x01\x01\x12\x1e\n\x11\x62lock_object_type\x18& \x01(\tH$\x88\x01\x01\x12\x1c\n\x0fmodel_category1\x18\' \x01(\tH%\x88\x01\x01\x12\x1f\n\x12model_subcategory1\x18( \x01(\tH&\x88\x01\x01\x12\x1c\n\x0fmodel_category2\x18) \x01(\tH\'\x88\x01\x01\x12\x1f\n\x12model_subcategory2\x18* \x01(\tH(\x88\x01\x01\x12$\n\x17reference_block_enabled\x18+ \x01(\x08H)\x88\x01\x01\x12\x1c\n\x0freference_block\x18, \x01(\x05H*\x88\x01\x01\x12\x14\n\x07\x63omment\x18- \x01(\tH+\x88\x01\x01\x12\x13\n\x06script\x18. \x01(\tH,\x88\x01\x01\x12\x1c\n\x0f\x65xplode_enabled\x18/ \x01(\x08H-\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x30 \x01(\tH.\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x31 \x01(\tH/\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x14\n\x12_coordinate_systemB\x11\n\x0f_insert_node_idB+\n)_is_insert_point_position_defined_by_nodeB\x1d\n\x1b_insert_point_position_nodeB$\n\"_insert_point_position_coordinatesB%\n#_insert_point_position_coordinate_xB%\n#_insert_point_position_coordinate_yB%\n#_insert_point_position_coordinate_zB\x1d\n\x1b_rotation_coordinate_systemB\x1a\n\x18_specific_direction_typeB\x18\n\x16_rotated_about_angle_xB\x18\n\x16_rotated_about_angle_yB\x18\n\x16_rotated_about_angle_zB\x18\n\x16_rotated_about_angle_1B\x18\n\x16_rotated_about_angle_2B\x18\n\x16_rotated_about_angle_3B\x10\n\x0e_axes_sequenceB\"\n _directed_to_node_direction_nodeB\x1e\n\x1c_directed_to_node_plane_nodeB\x1e\n\x1c_directed_to_node_first_axisB\x1f\n\x1d_directed_to_node_second_axisB#\n!_parallel_to_two_nodes_first_nodeB$\n\"_parallel_to_two_nodes_second_nodeB#\n!_parallel_to_two_nodes_plane_nodeB#\n!_parallel_to_two_nodes_first_axisB$\n\"_parallel_to_two_nodes_second_axisB\x13\n\x11_parallel_to_lineB\x15\n\x13_parallel_to_memberB\x10\n\x0e_loads_enabledB\x14\n\x12_numbering_enabledB\x11\n\x0f_has_javascriptB\x0b\n\t_block_idB\r\n\x0b_block_nameB\r\n\x0b_model_typeB\x14\n\x12_block_object_typeB\x12\n\x10_model_category1B\x15\n\x13_model_subcategory1B\x12\n\x10_model_category2B\x15\n\x13_model_subcategory2B\x1a\n\x18_reference_block_enabledB\x12\n\x10_reference_blockB\n\n\x08_commentB\t\n\x07_scriptB\x12\n\x10_explode_enabledB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xe2\x01\n\'BlockIsInsertPointPositionDefinedByNode\x12W\nSBLOCK_IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_INSERT_POINT_SPECIFICATION_TYPE_NODE\x10\x00\x12^\nZBLOCK_IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_INSERT_POINT_SPECIFICATION_TYPE_COORDINATES\x10\x01*\xb7\x02\n\x1a\x42lockSpecificDirectionType\x12\x36\n2BLOCK_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES\x10\x00\x12\x32\n.BLOCK_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE\x10\x01\x12\x38\n4BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE\x10\x03\x12:\n6BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER\x10\x04\x12\x37\n3BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES\x10\x02*\xc1\x01\n\x11\x42lockAxesSequence\x12\x1b\n\x17\x42LOCK_AXES_SEQUENCE_XYZ\x10\x00\x12\x1b\n\x17\x42LOCK_AXES_SEQUENCE_XZY\x10\x01\x12\x1b\n\x17\x42LOCK_AXES_SEQUENCE_YXZ\x10\x02\x12\x1b\n\x17\x42LOCK_AXES_SEQUENCE_YZX\x10\x03\x12\x1b\n\x17\x42LOCK_AXES_SEQUENCE_ZXY\x10\x04\x12\x1b\n\x17\x42LOCK_AXES_SEQUENCE_ZYX\x10\x05*\x99\x01\n\x1c\x42lockDirectedToNodeFirstAxis\x12\'\n#BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_X\x10\x00\x12\'\n#BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_Y\x10\x01\x12\'\n#BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_Z\x10\x02*\x9d\x01\n\x1d\x42lockDirectedToNodeSecondAxis\x12(\n$BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_X\x10\x00\x12(\n$BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_Y\x10\x01\x12(\n$BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_Z\x10\x02*\xac\x01\n BlockParallelToTwoNodesFirstAxis\x12,\n(BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X\x10\x00\x12,\n(BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y\x10\x01\x12,\n(BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z\x10\x02*\xb0\x01\n!BlockParallelToTwoNodesSecondAxis\x12-\n)BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X\x10\x00\x12-\n)BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y\x10\x01\x12-\n)BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z\x10\x02\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.block_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_BLOCKISINSERTPOINTPOSITIONDEFINEDBYNODE']._serialized_start=3651
|
|
36
|
+
_globals['_BLOCKISINSERTPOINTPOSITIONDEFINEDBYNODE']._serialized_end=3877
|
|
37
|
+
_globals['_BLOCKSPECIFICDIRECTIONTYPE']._serialized_start=3880
|
|
38
|
+
_globals['_BLOCKSPECIFICDIRECTIONTYPE']._serialized_end=4191
|
|
39
|
+
_globals['_BLOCKAXESSEQUENCE']._serialized_start=4194
|
|
40
|
+
_globals['_BLOCKAXESSEQUENCE']._serialized_end=4387
|
|
41
|
+
_globals['_BLOCKDIRECTEDTONODEFIRSTAXIS']._serialized_start=4390
|
|
42
|
+
_globals['_BLOCKDIRECTEDTONODEFIRSTAXIS']._serialized_end=4543
|
|
43
|
+
_globals['_BLOCKDIRECTEDTONODESECONDAXIS']._serialized_start=4546
|
|
44
|
+
_globals['_BLOCKDIRECTEDTONODESECONDAXIS']._serialized_end=4703
|
|
45
|
+
_globals['_BLOCKPARALLELTOTWONODESFIRSTAXIS']._serialized_start=4706
|
|
46
|
+
_globals['_BLOCKPARALLELTOTWONODESFIRSTAXIS']._serialized_end=4878
|
|
47
|
+
_globals['_BLOCKPARALLELTOTWONODESSECONDAXIS']._serialized_start=4881
|
|
48
|
+
_globals['_BLOCKPARALLELTOTWONODESSECONDAXIS']._serialized_end=5057
|
|
49
|
+
_globals['_BLOCK']._serialized_start=119
|
|
50
|
+
_globals['_BLOCK']._serialized_end=3648
|
|
51
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class BlockIsInsertPointPositionDefinedByNode(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
BLOCK_IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_INSERT_POINT_SPECIFICATION_TYPE_NODE: _ClassVar[BlockIsInsertPointPositionDefinedByNode]
|
|
12
|
+
BLOCK_IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_INSERT_POINT_SPECIFICATION_TYPE_COORDINATES: _ClassVar[BlockIsInsertPointPositionDefinedByNode]
|
|
13
|
+
|
|
14
|
+
class BlockSpecificDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
15
|
+
__slots__ = ()
|
|
16
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: _ClassVar[BlockSpecificDirectionType]
|
|
17
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: _ClassVar[BlockSpecificDirectionType]
|
|
18
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: _ClassVar[BlockSpecificDirectionType]
|
|
19
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: _ClassVar[BlockSpecificDirectionType]
|
|
20
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: _ClassVar[BlockSpecificDirectionType]
|
|
21
|
+
|
|
22
|
+
class BlockAxesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
23
|
+
__slots__ = ()
|
|
24
|
+
BLOCK_AXES_SEQUENCE_XYZ: _ClassVar[BlockAxesSequence]
|
|
25
|
+
BLOCK_AXES_SEQUENCE_XZY: _ClassVar[BlockAxesSequence]
|
|
26
|
+
BLOCK_AXES_SEQUENCE_YXZ: _ClassVar[BlockAxesSequence]
|
|
27
|
+
BLOCK_AXES_SEQUENCE_YZX: _ClassVar[BlockAxesSequence]
|
|
28
|
+
BLOCK_AXES_SEQUENCE_ZXY: _ClassVar[BlockAxesSequence]
|
|
29
|
+
BLOCK_AXES_SEQUENCE_ZYX: _ClassVar[BlockAxesSequence]
|
|
30
|
+
|
|
31
|
+
class BlockDirectedToNodeFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
32
|
+
__slots__ = ()
|
|
33
|
+
BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_X: _ClassVar[BlockDirectedToNodeFirstAxis]
|
|
34
|
+
BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_Y: _ClassVar[BlockDirectedToNodeFirstAxis]
|
|
35
|
+
BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_Z: _ClassVar[BlockDirectedToNodeFirstAxis]
|
|
36
|
+
|
|
37
|
+
class BlockDirectedToNodeSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
38
|
+
__slots__ = ()
|
|
39
|
+
BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_X: _ClassVar[BlockDirectedToNodeSecondAxis]
|
|
40
|
+
BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_Y: _ClassVar[BlockDirectedToNodeSecondAxis]
|
|
41
|
+
BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_Z: _ClassVar[BlockDirectedToNodeSecondAxis]
|
|
42
|
+
|
|
43
|
+
class BlockParallelToTwoNodesFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
44
|
+
__slots__ = ()
|
|
45
|
+
BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: _ClassVar[BlockParallelToTwoNodesFirstAxis]
|
|
46
|
+
BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: _ClassVar[BlockParallelToTwoNodesFirstAxis]
|
|
47
|
+
BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: _ClassVar[BlockParallelToTwoNodesFirstAxis]
|
|
48
|
+
|
|
49
|
+
class BlockParallelToTwoNodesSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
50
|
+
__slots__ = ()
|
|
51
|
+
BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: _ClassVar[BlockParallelToTwoNodesSecondAxis]
|
|
52
|
+
BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: _ClassVar[BlockParallelToTwoNodesSecondAxis]
|
|
53
|
+
BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: _ClassVar[BlockParallelToTwoNodesSecondAxis]
|
|
54
|
+
BLOCK_IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_INSERT_POINT_SPECIFICATION_TYPE_NODE: BlockIsInsertPointPositionDefinedByNode
|
|
55
|
+
BLOCK_IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_INSERT_POINT_SPECIFICATION_TYPE_COORDINATES: BlockIsInsertPointPositionDefinedByNode
|
|
56
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: BlockSpecificDirectionType
|
|
57
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: BlockSpecificDirectionType
|
|
58
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: BlockSpecificDirectionType
|
|
59
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: BlockSpecificDirectionType
|
|
60
|
+
BLOCK_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: BlockSpecificDirectionType
|
|
61
|
+
BLOCK_AXES_SEQUENCE_XYZ: BlockAxesSequence
|
|
62
|
+
BLOCK_AXES_SEQUENCE_XZY: BlockAxesSequence
|
|
63
|
+
BLOCK_AXES_SEQUENCE_YXZ: BlockAxesSequence
|
|
64
|
+
BLOCK_AXES_SEQUENCE_YZX: BlockAxesSequence
|
|
65
|
+
BLOCK_AXES_SEQUENCE_ZXY: BlockAxesSequence
|
|
66
|
+
BLOCK_AXES_SEQUENCE_ZYX: BlockAxesSequence
|
|
67
|
+
BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_X: BlockDirectedToNodeFirstAxis
|
|
68
|
+
BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_Y: BlockDirectedToNodeFirstAxis
|
|
69
|
+
BLOCK_DIRECTED_TO_NODE_FIRST_AXIS_Z: BlockDirectedToNodeFirstAxis
|
|
70
|
+
BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_X: BlockDirectedToNodeSecondAxis
|
|
71
|
+
BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_Y: BlockDirectedToNodeSecondAxis
|
|
72
|
+
BLOCK_DIRECTED_TO_NODE_SECOND_AXIS_Z: BlockDirectedToNodeSecondAxis
|
|
73
|
+
BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: BlockParallelToTwoNodesFirstAxis
|
|
74
|
+
BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: BlockParallelToTwoNodesFirstAxis
|
|
75
|
+
BLOCK_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: BlockParallelToTwoNodesFirstAxis
|
|
76
|
+
BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: BlockParallelToTwoNodesSecondAxis
|
|
77
|
+
BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: BlockParallelToTwoNodesSecondAxis
|
|
78
|
+
BLOCK_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: BlockParallelToTwoNodesSecondAxis
|
|
79
|
+
|
|
80
|
+
class Block(_message.Message):
|
|
81
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "coordinate_system", "insert_node_id", "is_insert_point_position_defined_by_node", "insert_point_position_node", "insert_point_position_coordinates", "insert_point_position_coordinate_x", "insert_point_position_coordinate_y", "insert_point_position_coordinate_z", "rotation_coordinate_system", "specific_direction_type", "rotated_about_angle_x", "rotated_about_angle_y", "rotated_about_angle_z", "rotated_about_angle_1", "rotated_about_angle_2", "rotated_about_angle_3", "axes_sequence", "directed_to_node_direction_node", "directed_to_node_plane_node", "directed_to_node_first_axis", "directed_to_node_second_axis", "parallel_to_two_nodes_first_node", "parallel_to_two_nodes_second_node", "parallel_to_two_nodes_plane_node", "parallel_to_two_nodes_first_axis", "parallel_to_two_nodes_second_axis", "parallel_to_line", "parallel_to_member", "loads_enabled", "numbering_enabled", "has_javascript", "block_id", "block_name", "model_type", "block_object_type", "model_category1", "model_subcategory1", "model_category2", "model_subcategory2", "reference_block_enabled", "reference_block", "comment", "script", "explode_enabled", "id_for_export_import", "metadata_for_export_import")
|
|
82
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
INSERT_NODE_ID_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
IS_INSERT_POINT_POSITION_DEFINED_BY_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
INSERT_POINT_POSITION_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
INSERT_POINT_POSITION_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
INSERT_POINT_POSITION_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
INSERT_POINT_POSITION_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
INSERT_POINT_POSITION_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
ROTATION_COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
SPECIFIC_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
ROTATED_ABOUT_ANGLE_X_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
ROTATED_ABOUT_ANGLE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
ROTATED_ABOUT_ANGLE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
ROTATED_ABOUT_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
ROTATED_ABOUT_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
ROTATED_ABOUT_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
AXES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
DIRECTED_TO_NODE_DIRECTION_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
DIRECTED_TO_NODE_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
DIRECTED_TO_NODE_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
DIRECTED_TO_NODE_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
PARALLEL_TO_TWO_NODES_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
PARALLEL_TO_TWO_NODES_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
PARALLEL_TO_TWO_NODES_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
PARALLEL_TO_TWO_NODES_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
PARALLEL_TO_TWO_NODES_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
PARALLEL_TO_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
PARALLEL_TO_MEMBER_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
LOADS_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
NUMBERING_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
HAS_JAVASCRIPT_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
BLOCK_ID_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
BLOCK_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
MODEL_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
BLOCK_OBJECT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
MODEL_CATEGORY1_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
MODEL_SUBCATEGORY1_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
MODEL_CATEGORY2_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
MODEL_SUBCATEGORY2_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
REFERENCE_BLOCK_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
REFERENCE_BLOCK_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
SCRIPT_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
EXPLODE_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
no: int
|
|
132
|
+
user_defined_name_enabled: bool
|
|
133
|
+
name: str
|
|
134
|
+
coordinate_system: int
|
|
135
|
+
insert_node_id: int
|
|
136
|
+
is_insert_point_position_defined_by_node: BlockIsInsertPointPositionDefinedByNode
|
|
137
|
+
insert_point_position_node: int
|
|
138
|
+
insert_point_position_coordinates: _common_pb2.Vector3d
|
|
139
|
+
insert_point_position_coordinate_x: float
|
|
140
|
+
insert_point_position_coordinate_y: float
|
|
141
|
+
insert_point_position_coordinate_z: float
|
|
142
|
+
rotation_coordinate_system: int
|
|
143
|
+
specific_direction_type: BlockSpecificDirectionType
|
|
144
|
+
rotated_about_angle_x: float
|
|
145
|
+
rotated_about_angle_y: float
|
|
146
|
+
rotated_about_angle_z: float
|
|
147
|
+
rotated_about_angle_1: float
|
|
148
|
+
rotated_about_angle_2: float
|
|
149
|
+
rotated_about_angle_3: float
|
|
150
|
+
axes_sequence: BlockAxesSequence
|
|
151
|
+
directed_to_node_direction_node: int
|
|
152
|
+
directed_to_node_plane_node: int
|
|
153
|
+
directed_to_node_first_axis: BlockDirectedToNodeFirstAxis
|
|
154
|
+
directed_to_node_second_axis: BlockDirectedToNodeSecondAxis
|
|
155
|
+
parallel_to_two_nodes_first_node: int
|
|
156
|
+
parallel_to_two_nodes_second_node: int
|
|
157
|
+
parallel_to_two_nodes_plane_node: int
|
|
158
|
+
parallel_to_two_nodes_first_axis: BlockParallelToTwoNodesFirstAxis
|
|
159
|
+
parallel_to_two_nodes_second_axis: BlockParallelToTwoNodesSecondAxis
|
|
160
|
+
parallel_to_line: int
|
|
161
|
+
parallel_to_member: int
|
|
162
|
+
loads_enabled: bool
|
|
163
|
+
numbering_enabled: bool
|
|
164
|
+
has_javascript: bool
|
|
165
|
+
block_id: str
|
|
166
|
+
block_name: str
|
|
167
|
+
model_type: str
|
|
168
|
+
block_object_type: str
|
|
169
|
+
model_category1: str
|
|
170
|
+
model_subcategory1: str
|
|
171
|
+
model_category2: str
|
|
172
|
+
model_subcategory2: str
|
|
173
|
+
reference_block_enabled: bool
|
|
174
|
+
reference_block: int
|
|
175
|
+
comment: str
|
|
176
|
+
script: str
|
|
177
|
+
explode_enabled: bool
|
|
178
|
+
id_for_export_import: str
|
|
179
|
+
metadata_for_export_import: str
|
|
180
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., insert_node_id: _Optional[int] = ..., is_insert_point_position_defined_by_node: _Optional[_Union[BlockIsInsertPointPositionDefinedByNode, str]] = ..., insert_point_position_node: _Optional[int] = ..., insert_point_position_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., insert_point_position_coordinate_x: _Optional[float] = ..., insert_point_position_coordinate_y: _Optional[float] = ..., insert_point_position_coordinate_z: _Optional[float] = ..., rotation_coordinate_system: _Optional[int] = ..., specific_direction_type: _Optional[_Union[BlockSpecificDirectionType, str]] = ..., rotated_about_angle_x: _Optional[float] = ..., rotated_about_angle_y: _Optional[float] = ..., rotated_about_angle_z: _Optional[float] = ..., rotated_about_angle_1: _Optional[float] = ..., rotated_about_angle_2: _Optional[float] = ..., rotated_about_angle_3: _Optional[float] = ..., axes_sequence: _Optional[_Union[BlockAxesSequence, str]] = ..., directed_to_node_direction_node: _Optional[int] = ..., directed_to_node_plane_node: _Optional[int] = ..., directed_to_node_first_axis: _Optional[_Union[BlockDirectedToNodeFirstAxis, str]] = ..., directed_to_node_second_axis: _Optional[_Union[BlockDirectedToNodeSecondAxis, str]] = ..., parallel_to_two_nodes_first_node: _Optional[int] = ..., parallel_to_two_nodes_second_node: _Optional[int] = ..., parallel_to_two_nodes_plane_node: _Optional[int] = ..., parallel_to_two_nodes_first_axis: _Optional[_Union[BlockParallelToTwoNodesFirstAxis, str]] = ..., parallel_to_two_nodes_second_axis: _Optional[_Union[BlockParallelToTwoNodesSecondAxis, str]] = ..., parallel_to_line: _Optional[int] = ..., parallel_to_member: _Optional[int] = ..., loads_enabled: bool = ..., numbering_enabled: bool = ..., has_javascript: bool = ..., block_id: _Optional[str] = ..., block_name: _Optional[str] = ..., model_type: _Optional[str] = ..., block_object_type: _Optional[str] = ..., model_category1: _Optional[str] = ..., model_subcategory1: _Optional[str] = ..., model_category2: _Optional[str] = ..., model_subcategory2: _Optional[str] = ..., reference_block_enabled: bool = ..., reference_block: _Optional[int] = ..., comment: _Optional[str] = ..., script: _Optional[str] = ..., explode_enabled: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|