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,129 @@
|
|
|
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 NoteType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
NOTE_TYPE_UNKNOWN: _ClassVar[NoteType]
|
|
12
|
+
NOTE_TYPE_NOTE_TYPE_LINE: _ClassVar[NoteType]
|
|
13
|
+
NOTE_TYPE_NOTE_TYPE_MEMBER: _ClassVar[NoteType]
|
|
14
|
+
NOTE_TYPE_NOTE_TYPE_NODE: _ClassVar[NoteType]
|
|
15
|
+
NOTE_TYPE_NOTE_TYPE_POINT: _ClassVar[NoteType]
|
|
16
|
+
NOTE_TYPE_NOTE_TYPE_SOLID: _ClassVar[NoteType]
|
|
17
|
+
NOTE_TYPE_NOTE_TYPE_SURFACE: _ClassVar[NoteType]
|
|
18
|
+
|
|
19
|
+
class NoteMemberReferenceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
20
|
+
__slots__ = ()
|
|
21
|
+
NOTE_MEMBER_REFERENCE_TYPE_L: _ClassVar[NoteMemberReferenceType]
|
|
22
|
+
NOTE_MEMBER_REFERENCE_TYPE_XY: _ClassVar[NoteMemberReferenceType]
|
|
23
|
+
NOTE_MEMBER_REFERENCE_TYPE_XZ: _ClassVar[NoteMemberReferenceType]
|
|
24
|
+
NOTE_MEMBER_REFERENCE_TYPE_YZ: _ClassVar[NoteMemberReferenceType]
|
|
25
|
+
|
|
26
|
+
class NoteSurfaceReferenceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
27
|
+
__slots__ = ()
|
|
28
|
+
NOTE_SURFACE_REFERENCE_TYPE_UNKNOWN: _ClassVar[NoteSurfaceReferenceType]
|
|
29
|
+
NOTE_SURFACE_REFERENCE_TYPE_XY: _ClassVar[NoteSurfaceReferenceType]
|
|
30
|
+
NOTE_SURFACE_REFERENCE_TYPE_XZ: _ClassVar[NoteSurfaceReferenceType]
|
|
31
|
+
NOTE_SURFACE_REFERENCE_TYPE_YZ: _ClassVar[NoteSurfaceReferenceType]
|
|
32
|
+
|
|
33
|
+
class NoteOffsetType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
34
|
+
__slots__ = ()
|
|
35
|
+
NOTE_OFFSET_TYPE_XYZ: _ClassVar[NoteOffsetType]
|
|
36
|
+
NOTE_OFFSET_TYPE_XY: _ClassVar[NoteOffsetType]
|
|
37
|
+
NOTE_OFFSET_TYPE_XZ: _ClassVar[NoteOffsetType]
|
|
38
|
+
NOTE_OFFSET_TYPE_YZ: _ClassVar[NoteOffsetType]
|
|
39
|
+
NOTE_TYPE_UNKNOWN: NoteType
|
|
40
|
+
NOTE_TYPE_NOTE_TYPE_LINE: NoteType
|
|
41
|
+
NOTE_TYPE_NOTE_TYPE_MEMBER: NoteType
|
|
42
|
+
NOTE_TYPE_NOTE_TYPE_NODE: NoteType
|
|
43
|
+
NOTE_TYPE_NOTE_TYPE_POINT: NoteType
|
|
44
|
+
NOTE_TYPE_NOTE_TYPE_SOLID: NoteType
|
|
45
|
+
NOTE_TYPE_NOTE_TYPE_SURFACE: NoteType
|
|
46
|
+
NOTE_MEMBER_REFERENCE_TYPE_L: NoteMemberReferenceType
|
|
47
|
+
NOTE_MEMBER_REFERENCE_TYPE_XY: NoteMemberReferenceType
|
|
48
|
+
NOTE_MEMBER_REFERENCE_TYPE_XZ: NoteMemberReferenceType
|
|
49
|
+
NOTE_MEMBER_REFERENCE_TYPE_YZ: NoteMemberReferenceType
|
|
50
|
+
NOTE_SURFACE_REFERENCE_TYPE_UNKNOWN: NoteSurfaceReferenceType
|
|
51
|
+
NOTE_SURFACE_REFERENCE_TYPE_XY: NoteSurfaceReferenceType
|
|
52
|
+
NOTE_SURFACE_REFERENCE_TYPE_XZ: NoteSurfaceReferenceType
|
|
53
|
+
NOTE_SURFACE_REFERENCE_TYPE_YZ: NoteSurfaceReferenceType
|
|
54
|
+
NOTE_OFFSET_TYPE_XYZ: NoteOffsetType
|
|
55
|
+
NOTE_OFFSET_TYPE_XY: NoteOffsetType
|
|
56
|
+
NOTE_OFFSET_TYPE_XZ: NoteOffsetType
|
|
57
|
+
NOTE_OFFSET_TYPE_YZ: NoteOffsetType
|
|
58
|
+
|
|
59
|
+
class Note(_message.Message):
|
|
60
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "text", "point_coordinates", "point_coordinate_x", "point_coordinate_y", "point_coordinate_z", "node", "member", "member_reference_type", "member_length", "member_distance_is_defined_as_relative", "member_distance_relative", "member_distance_absolute", "line", "line_length", "surface", "surface_reference_type", "surface_first_coordinate", "surface_second_coordinate", "offset", "offset_type", "offset_coordinate", "offset_coordinate_x", "offset_coordinate_y", "offset_coordinate_z", "rotation", "show_comment", "display_properties_index", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
61
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
TEXT_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
NODE_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
MEMBER_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
MEMBER_REFERENCE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
MEMBER_DISTANCE_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
MEMBER_DISTANCE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
MEMBER_DISTANCE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
LINE_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
LINE_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
SURFACE_REFERENCE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
SURFACE_FIRST_COORDINATE_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
SURFACE_SECOND_COORDINATE_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
OFFSET_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
OFFSET_COORDINATE_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
OFFSET_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
OFFSET_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
OFFSET_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
SHOW_COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
DISPLAY_PROPERTIES_INDEX_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
no: int
|
|
96
|
+
type: NoteType
|
|
97
|
+
user_defined_name_enabled: bool
|
|
98
|
+
name: str
|
|
99
|
+
text: str
|
|
100
|
+
point_coordinates: _common_pb2.Vector3d
|
|
101
|
+
point_coordinate_x: float
|
|
102
|
+
point_coordinate_y: float
|
|
103
|
+
point_coordinate_z: float
|
|
104
|
+
node: int
|
|
105
|
+
member: int
|
|
106
|
+
member_reference_type: NoteMemberReferenceType
|
|
107
|
+
member_length: float
|
|
108
|
+
member_distance_is_defined_as_relative: bool
|
|
109
|
+
member_distance_relative: float
|
|
110
|
+
member_distance_absolute: float
|
|
111
|
+
line: int
|
|
112
|
+
line_length: float
|
|
113
|
+
surface: int
|
|
114
|
+
surface_reference_type: NoteSurfaceReferenceType
|
|
115
|
+
surface_first_coordinate: float
|
|
116
|
+
surface_second_coordinate: float
|
|
117
|
+
offset: bool
|
|
118
|
+
offset_type: NoteOffsetType
|
|
119
|
+
offset_coordinate: _common_pb2.Vector3d
|
|
120
|
+
offset_coordinate_x: float
|
|
121
|
+
offset_coordinate_y: float
|
|
122
|
+
offset_coordinate_z: float
|
|
123
|
+
rotation: float
|
|
124
|
+
show_comment: bool
|
|
125
|
+
display_properties_index: int
|
|
126
|
+
comment: str
|
|
127
|
+
id_for_export_import: str
|
|
128
|
+
metadata_for_export_import: str
|
|
129
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[NoteType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., text: _Optional[str] = ..., point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., point_coordinate_x: _Optional[float] = ..., point_coordinate_y: _Optional[float] = ..., point_coordinate_z: _Optional[float] = ..., node: _Optional[int] = ..., member: _Optional[int] = ..., member_reference_type: _Optional[_Union[NoteMemberReferenceType, str]] = ..., member_length: _Optional[float] = ..., member_distance_is_defined_as_relative: bool = ..., member_distance_relative: _Optional[float] = ..., member_distance_absolute: _Optional[float] = ..., line: _Optional[int] = ..., line_length: _Optional[float] = ..., surface: _Optional[int] = ..., surface_reference_type: _Optional[_Union[NoteSurfaceReferenceType, str]] = ..., surface_first_coordinate: _Optional[float] = ..., surface_second_coordinate: _Optional[float] = ..., offset: bool = ..., offset_type: _Optional[_Union[NoteOffsetType, str]] = ..., offset_coordinate: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., offset_coordinate_x: _Optional[float] = ..., offset_coordinate_y: _Optional[float] = ..., offset_coordinate_z: _Optional[float] = ..., rotation: _Optional[float] = ..., show_comment: bool = ..., display_properties_index: _Optional[int] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,38 @@
|
|
|
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/guide_objects/object_snap.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/guide_objects/object_snap.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'\n/dlubal/api/rfem/guide_objects/object_snap.proto\x12\x1d\x64lubal.api.rfem.guide_objects\"\xd9\x0f\n\nObjectSnap\x12\n\n\x02no\x18\x01 \x01(\x05\x12@\n\x04type\x18\x02 \x01(\x0e\x32-.dlubal.api.rfem.guide_objects.ObjectSnapTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x17\n\nsnap_nodes\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12%\n\x18snap_centers_and_focuses\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x1f\n\x12snap_intersections\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12\x1f\n\x12snap_perpendicular\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x18\n\x0bsnap_extend\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x1a\n\rsnap_parallel\x18\n \x01(\x08H\x08\x88\x01\x01\x12\x19\n\x0csnap_tangent\x18\x0b \x01(\x08H\t\x88\x01\x01\x12\x1b\n\x0esnap_quadrants\x18\x0c \x01(\x08H\n\x88\x01\x01\x12\x17\n\nsnap_parts\x18\r \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16snap_absolute_distance\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12#\n\x16snap_relative_distance\x18\x0f \x01(\x08H\r\x88\x01\x01\x12\'\n\x1asnap_snappable_points_only\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12\x1c\n\x0fsnap_guidelines\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12#\n\x16snap_background_layers\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12 \n\x13snap_building_grids\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x14 \x01(\tH\x12\x88\x01\x01\x12\x18\n\x0bparts_count\x18\x15 \x01(\x05H\x13\x88\x01\x01\x12\x1e\n\x11\x61\x62solute_distance\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x1e\n\x11relative_distance\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12.\n!absolute_distance_on_section_edge\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12(\n\x1bparts_of_section_edge_count\x18\x19 \x01(\x05H\x17\x88\x01\x01\x12.\n!relative_distance_on_section_edge\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x33\n&snap_absolute_distance_on_section_edge\x18\x1b \x01(\x08H\x19\x88\x01\x01\x12\x19\n\x0csnap_corners\x18\x1c \x01(\x08H\x1a\x88\x01\x01\x12\x1d\n\x10snap_middle_edge\x18\x1d \x01(\x08H\x1b\x88\x01\x01\x12\'\n\x1asnap_parts_of_section_edge\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12\x33\n&snap_relative_distance_on_section_edge\x18\x1f \x01(\x08H\x1d\x88\x01\x01\x12*\n\x1dsnap_surface_thickness_points\x18 \x01(\x08H\x1e\x88\x01\x01\x12!\n\x14id_for_export_import\x18! \x01(\tH\x1f\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\" \x01(\tH \x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_snap_nodesB\x1b\n\x19_snap_centers_and_focusesB\x15\n\x13_snap_intersectionsB\x15\n\x13_snap_perpendicularB\x0e\n\x0c_snap_extendB\x10\n\x0e_snap_parallelB\x0f\n\r_snap_tangentB\x11\n\x0f_snap_quadrantsB\r\n\x0b_snap_partsB\x19\n\x17_snap_absolute_distanceB\x19\n\x17_snap_relative_distanceB\x1d\n\x1b_snap_snappable_points_onlyB\x12\n\x10_snap_guidelinesB\x19\n\x17_snap_background_layersB\x16\n\x14_snap_building_gridsB\n\n\x08_commentB\x0e\n\x0c_parts_countB\x14\n\x12_absolute_distanceB\x14\n\x12_relative_distanceB$\n\"_absolute_distance_on_section_edgeB\x1e\n\x1c_parts_of_section_edge_countB$\n\"_relative_distance_on_section_edgeB)\n\'_snap_absolute_distance_on_section_edgeB\x0f\n\r_snap_cornersB\x13\n\x11_snap_middle_edgeB\x1d\n\x1b_snap_parts_of_section_edgeB)\n\'_snap_relative_distance_on_section_edgeB \n\x1e_snap_surface_thickness_pointsB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*M\n\x0eObjectSnapType\x12\x1c\n\x18OBJECT_SNAP_TYPE_UNKNOWN\x10\x00\x12\x1d\n\x19OBJECT_SNAP_TYPE_STANDARD\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.object_snap_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_OBJECTSNAPTYPE']._serialized_start=2094
|
|
35
|
+
_globals['_OBJECTSNAPTYPE']._serialized_end=2171
|
|
36
|
+
_globals['_OBJECTSNAP']._serialized_start=83
|
|
37
|
+
_globals['_OBJECTSNAP']._serialized_end=2092
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class ObjectSnapType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
+
__slots__ = ()
|
|
10
|
+
OBJECT_SNAP_TYPE_UNKNOWN: _ClassVar[ObjectSnapType]
|
|
11
|
+
OBJECT_SNAP_TYPE_STANDARD: _ClassVar[ObjectSnapType]
|
|
12
|
+
OBJECT_SNAP_TYPE_UNKNOWN: ObjectSnapType
|
|
13
|
+
OBJECT_SNAP_TYPE_STANDARD: ObjectSnapType
|
|
14
|
+
|
|
15
|
+
class ObjectSnap(_message.Message):
|
|
16
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "snap_nodes", "snap_centers_and_focuses", "snap_intersections", "snap_perpendicular", "snap_extend", "snap_parallel", "snap_tangent", "snap_quadrants", "snap_parts", "snap_absolute_distance", "snap_relative_distance", "snap_snappable_points_only", "snap_guidelines", "snap_background_layers", "snap_building_grids", "comment", "parts_count", "absolute_distance", "relative_distance", "absolute_distance_on_section_edge", "parts_of_section_edge_count", "relative_distance_on_section_edge", "snap_absolute_distance_on_section_edge", "snap_corners", "snap_middle_edge", "snap_parts_of_section_edge", "snap_relative_distance_on_section_edge", "snap_surface_thickness_points", "id_for_export_import", "metadata_for_export_import")
|
|
17
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
SNAP_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
SNAP_CENTERS_AND_FOCUSES_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
SNAP_INTERSECTIONS_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
SNAP_PERPENDICULAR_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
SNAP_EXTEND_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
SNAP_PARALLEL_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
SNAP_TANGENT_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
SNAP_QUADRANTS_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
SNAP_PARTS_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
SNAP_ABSOLUTE_DISTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
SNAP_RELATIVE_DISTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
SNAP_SNAPPABLE_POINTS_ONLY_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
SNAP_GUIDELINES_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
SNAP_BACKGROUND_LAYERS_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
SNAP_BUILDING_GRIDS_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
PARTS_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
ABSOLUTE_DISTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
RELATIVE_DISTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
ABSOLUTE_DISTANCE_ON_SECTION_EDGE_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
PARTS_OF_SECTION_EDGE_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
RELATIVE_DISTANCE_ON_SECTION_EDGE_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
SNAP_ABSOLUTE_DISTANCE_ON_SECTION_EDGE_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
SNAP_CORNERS_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
SNAP_MIDDLE_EDGE_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
SNAP_PARTS_OF_SECTION_EDGE_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
SNAP_RELATIVE_DISTANCE_ON_SECTION_EDGE_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
SNAP_SURFACE_THICKNESS_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
no: int
|
|
52
|
+
type: ObjectSnapType
|
|
53
|
+
user_defined_name_enabled: bool
|
|
54
|
+
name: str
|
|
55
|
+
snap_nodes: bool
|
|
56
|
+
snap_centers_and_focuses: bool
|
|
57
|
+
snap_intersections: bool
|
|
58
|
+
snap_perpendicular: bool
|
|
59
|
+
snap_extend: bool
|
|
60
|
+
snap_parallel: bool
|
|
61
|
+
snap_tangent: bool
|
|
62
|
+
snap_quadrants: bool
|
|
63
|
+
snap_parts: bool
|
|
64
|
+
snap_absolute_distance: bool
|
|
65
|
+
snap_relative_distance: bool
|
|
66
|
+
snap_snappable_points_only: bool
|
|
67
|
+
snap_guidelines: bool
|
|
68
|
+
snap_background_layers: bool
|
|
69
|
+
snap_building_grids: bool
|
|
70
|
+
comment: str
|
|
71
|
+
parts_count: int
|
|
72
|
+
absolute_distance: float
|
|
73
|
+
relative_distance: float
|
|
74
|
+
absolute_distance_on_section_edge: float
|
|
75
|
+
parts_of_section_edge_count: int
|
|
76
|
+
relative_distance_on_section_edge: float
|
|
77
|
+
snap_absolute_distance_on_section_edge: bool
|
|
78
|
+
snap_corners: bool
|
|
79
|
+
snap_middle_edge: bool
|
|
80
|
+
snap_parts_of_section_edge: bool
|
|
81
|
+
snap_relative_distance_on_section_edge: bool
|
|
82
|
+
snap_surface_thickness_points: bool
|
|
83
|
+
id_for_export_import: str
|
|
84
|
+
metadata_for_export_import: str
|
|
85
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[ObjectSnapType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., snap_nodes: bool = ..., snap_centers_and_focuses: bool = ..., snap_intersections: bool = ..., snap_perpendicular: bool = ..., snap_extend: bool = ..., snap_parallel: bool = ..., snap_tangent: bool = ..., snap_quadrants: bool = ..., snap_parts: bool = ..., snap_absolute_distance: bool = ..., snap_relative_distance: bool = ..., snap_snappable_points_only: bool = ..., snap_guidelines: bool = ..., snap_background_layers: bool = ..., snap_building_grids: bool = ..., comment: _Optional[str] = ..., parts_count: _Optional[int] = ..., absolute_distance: _Optional[float] = ..., relative_distance: _Optional[float] = ..., absolute_distance_on_section_edge: _Optional[float] = ..., parts_of_section_edge_count: _Optional[int] = ..., relative_distance_on_section_edge: _Optional[float] = ..., snap_absolute_distance_on_section_edge: bool = ..., snap_corners: bool = ..., snap_middle_edge: bool = ..., snap_parts_of_section_edge: bool = ..., snap_relative_distance_on_section_edge: bool = ..., snap_surface_thickness_points: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,43 @@
|
|
|
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/guide_objects/visual_object.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/guide_objects/visual_object.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'\n1dlubal/api/rfem/guide_objects/visual_object.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xb8\r\n\x0cVisualObject\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\x16\n\tfile_path\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x16\n\tfile_name\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12Q\n\x0cinsert_point\x18\x07 \x01(\x0e\x32\x36.dlubal.api.rfem.guide_objects.VisualObjectInsertPointH\x05\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\t \x01(\x01H\x07\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\n \x01(\x01H\x08\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x0b \x01(\x01H\t\x88\x01\x01\x12h\n\x18rotation_angles_sequence\x18\x0c \x01(\x0e\x32\x41.dlubal.api.rfem.guide_objects.VisualObjectRotationAnglesSequenceH\n\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x1d\n\x10rotation_angle_3\x18\x0f \x01(\x01H\r\x88\x01\x01\x12 \n\x13scale_is_nonuniform\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12)\n\x1cscale_is_defined_as_relative\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12\x1b\n\x0escale_absolute\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x1b\n\x0escale_relative\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x1d\n\x10scale_absolute_x\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x1d\n\x10scale_absolute_y\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x1d\n\x10scale_absolute_z\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x1d\n\x10scale_relative_x\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x1d\n\x10scale_relative_y\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12\x1d\n\x10scale_relative_z\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1a \x01(\tH\x18\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1b \x01(\x08H\x19\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1c \x01(\tH\x1a\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1d \x01(\tH\x1b\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1e \x01(\tH\x1c\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_file_pathB\x0c\n\n_file_nameB\x14\n\x12_coordinate_systemB\x0f\n\r_insert_pointB\x15\n\x13_origin_coordinatesB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x13\n\x11_rotation_angle_3B\x16\n\x14_scale_is_nonuniformB\x1f\n\x1d_scale_is_defined_as_relativeB\x11\n\x0f_scale_absoluteB\x11\n\x0f_scale_relativeB\x13\n\x11_scale_absolute_xB\x13\n\x11_scale_absolute_yB\x13\n\x11_scale_absolute_zB\x13\n\x11_scale_relative_xB\x13\n\x11_scale_relative_yB\x13\n\x11_scale_relative_zB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xca\x04\n\x17VisualObjectInsertPoint\x12%\n!VISUAL_OBJECT_INSERT_POINT_CENTER\x10\x00\x12!\n\x1dVISUAL_OBJECT_INSERT_POINT_MX\x10\x02\x12%\n!VISUAL_OBJECT_INSERT_POINT_MXMYMZ\x10\x0e\x12%\n!VISUAL_OBJECT_INSERT_POINT_MXMYPZ\x10\n\x12%\n!VISUAL_OBJECT_INSERT_POINT_MXPYMZ\x10\x0c\x12%\n!VISUAL_OBJECT_INSERT_POINT_MXPYPZ\x10\x08\x12!\n\x1dVISUAL_OBJECT_INSERT_POINT_MY\x10\x04\x12!\n\x1dVISUAL_OBJECT_INSERT_POINT_MZ\x10\x06\x12!\n\x1dVISUAL_OBJECT_INSERT_POINT_PX\x10\x01\x12%\n!VISUAL_OBJECT_INSERT_POINT_PXMYMZ\x10\r\x12%\n!VISUAL_OBJECT_INSERT_POINT_PXMYPZ\x10\t\x12%\n!VISUAL_OBJECT_INSERT_POINT_PXPYMZ\x10\x0b\x12%\n!VISUAL_OBJECT_INSERT_POINT_PXPYPZ\x10\x07\x12!\n\x1dVISUAL_OBJECT_INSERT_POINT_PY\x10\x03\x12!\n\x1dVISUAL_OBJECT_INSERT_POINT_PZ\x10\x05*\xb8\x04\n\"VisualObjectRotationAnglesSequence\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_UVW\x10\x00\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_UWV\x10\x01\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_VUW\x10\x02\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_VWU\x10\x03\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_WUV\x10\x04\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_WVU\x10\x05\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12.\n*VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\x1a\x02\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.visual_object_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_VISUALOBJECTROTATIONANGLESSEQUENCE']._loaded_options = None
|
|
36
|
+
_globals['_VISUALOBJECTROTATIONANGLESSEQUENCE']._serialized_options = b'\020\001'
|
|
37
|
+
_globals['_VISUALOBJECTINSERTPOINT']._serialized_start=1840
|
|
38
|
+
_globals['_VISUALOBJECTINSERTPOINT']._serialized_end=2426
|
|
39
|
+
_globals['_VISUALOBJECTROTATIONANGLESSEQUENCE']._serialized_start=2429
|
|
40
|
+
_globals['_VISUALOBJECTROTATIONANGLESSEQUENCE']._serialized_end=2997
|
|
41
|
+
_globals['_VISUALOBJECT']._serialized_start=117
|
|
42
|
+
_globals['_VISUALOBJECT']._serialized_end=1837
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,129 @@
|
|
|
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 VisualObjectInsertPoint(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
VISUAL_OBJECT_INSERT_POINT_CENTER: _ClassVar[VisualObjectInsertPoint]
|
|
12
|
+
VISUAL_OBJECT_INSERT_POINT_MX: _ClassVar[VisualObjectInsertPoint]
|
|
13
|
+
VISUAL_OBJECT_INSERT_POINT_MXMYMZ: _ClassVar[VisualObjectInsertPoint]
|
|
14
|
+
VISUAL_OBJECT_INSERT_POINT_MXMYPZ: _ClassVar[VisualObjectInsertPoint]
|
|
15
|
+
VISUAL_OBJECT_INSERT_POINT_MXPYMZ: _ClassVar[VisualObjectInsertPoint]
|
|
16
|
+
VISUAL_OBJECT_INSERT_POINT_MXPYPZ: _ClassVar[VisualObjectInsertPoint]
|
|
17
|
+
VISUAL_OBJECT_INSERT_POINT_MY: _ClassVar[VisualObjectInsertPoint]
|
|
18
|
+
VISUAL_OBJECT_INSERT_POINT_MZ: _ClassVar[VisualObjectInsertPoint]
|
|
19
|
+
VISUAL_OBJECT_INSERT_POINT_PX: _ClassVar[VisualObjectInsertPoint]
|
|
20
|
+
VISUAL_OBJECT_INSERT_POINT_PXMYMZ: _ClassVar[VisualObjectInsertPoint]
|
|
21
|
+
VISUAL_OBJECT_INSERT_POINT_PXMYPZ: _ClassVar[VisualObjectInsertPoint]
|
|
22
|
+
VISUAL_OBJECT_INSERT_POINT_PXPYMZ: _ClassVar[VisualObjectInsertPoint]
|
|
23
|
+
VISUAL_OBJECT_INSERT_POINT_PXPYPZ: _ClassVar[VisualObjectInsertPoint]
|
|
24
|
+
VISUAL_OBJECT_INSERT_POINT_PY: _ClassVar[VisualObjectInsertPoint]
|
|
25
|
+
VISUAL_OBJECT_INSERT_POINT_PZ: _ClassVar[VisualObjectInsertPoint]
|
|
26
|
+
|
|
27
|
+
class VisualObjectRotationAnglesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
28
|
+
__slots__ = ()
|
|
29
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_UVW: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
30
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_UWV: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
31
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_VUW: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
32
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_VWU: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
33
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_WUV: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
34
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_WVU: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
35
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_XZY: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
36
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_YXZ: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
37
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_YZX: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
38
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZXY: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
39
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZYX: _ClassVar[VisualObjectRotationAnglesSequence]
|
|
40
|
+
VISUAL_OBJECT_INSERT_POINT_CENTER: VisualObjectInsertPoint
|
|
41
|
+
VISUAL_OBJECT_INSERT_POINT_MX: VisualObjectInsertPoint
|
|
42
|
+
VISUAL_OBJECT_INSERT_POINT_MXMYMZ: VisualObjectInsertPoint
|
|
43
|
+
VISUAL_OBJECT_INSERT_POINT_MXMYPZ: VisualObjectInsertPoint
|
|
44
|
+
VISUAL_OBJECT_INSERT_POINT_MXPYMZ: VisualObjectInsertPoint
|
|
45
|
+
VISUAL_OBJECT_INSERT_POINT_MXPYPZ: VisualObjectInsertPoint
|
|
46
|
+
VISUAL_OBJECT_INSERT_POINT_MY: VisualObjectInsertPoint
|
|
47
|
+
VISUAL_OBJECT_INSERT_POINT_MZ: VisualObjectInsertPoint
|
|
48
|
+
VISUAL_OBJECT_INSERT_POINT_PX: VisualObjectInsertPoint
|
|
49
|
+
VISUAL_OBJECT_INSERT_POINT_PXMYMZ: VisualObjectInsertPoint
|
|
50
|
+
VISUAL_OBJECT_INSERT_POINT_PXMYPZ: VisualObjectInsertPoint
|
|
51
|
+
VISUAL_OBJECT_INSERT_POINT_PXPYMZ: VisualObjectInsertPoint
|
|
52
|
+
VISUAL_OBJECT_INSERT_POINT_PXPYPZ: VisualObjectInsertPoint
|
|
53
|
+
VISUAL_OBJECT_INSERT_POINT_PY: VisualObjectInsertPoint
|
|
54
|
+
VISUAL_OBJECT_INSERT_POINT_PZ: VisualObjectInsertPoint
|
|
55
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_UVW: VisualObjectRotationAnglesSequence
|
|
56
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_UWV: VisualObjectRotationAnglesSequence
|
|
57
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_VUW: VisualObjectRotationAnglesSequence
|
|
58
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_VWU: VisualObjectRotationAnglesSequence
|
|
59
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_WUV: VisualObjectRotationAnglesSequence
|
|
60
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_WVU: VisualObjectRotationAnglesSequence
|
|
61
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_XZY: VisualObjectRotationAnglesSequence
|
|
62
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_YXZ: VisualObjectRotationAnglesSequence
|
|
63
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_YZX: VisualObjectRotationAnglesSequence
|
|
64
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZXY: VisualObjectRotationAnglesSequence
|
|
65
|
+
VISUAL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZYX: VisualObjectRotationAnglesSequence
|
|
66
|
+
|
|
67
|
+
class VisualObject(_message.Message):
|
|
68
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "file_path", "file_name", "coordinate_system", "insert_point", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "rotation_angles_sequence", "rotation_angle_1", "rotation_angle_2", "rotation_angle_3", "scale_is_nonuniform", "scale_is_defined_as_relative", "scale_absolute", "scale_relative", "scale_absolute_x", "scale_absolute_y", "scale_absolute_z", "scale_relative_x", "scale_relative_y", "scale_relative_z", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
69
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
FILE_PATH_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
FILE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
INSERT_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
ORIGIN_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
ORIGIN_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
ORIGIN_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
ORIGIN_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
ROTATION_ANGLES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
ROTATION_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
ROTATION_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
ROTATION_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
SCALE_IS_NONUNIFORM_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
SCALE_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
SCALE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
SCALE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
SCALE_ABSOLUTE_X_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
SCALE_ABSOLUTE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
SCALE_ABSOLUTE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
SCALE_RELATIVE_X_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
SCALE_RELATIVE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
SCALE_RELATIVE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
no: int
|
|
100
|
+
user_defined_name_enabled: bool
|
|
101
|
+
name: str
|
|
102
|
+
file_path: str
|
|
103
|
+
file_name: str
|
|
104
|
+
coordinate_system: int
|
|
105
|
+
insert_point: VisualObjectInsertPoint
|
|
106
|
+
origin_coordinates: _common_pb2.Vector3d
|
|
107
|
+
origin_coordinate_x: float
|
|
108
|
+
origin_coordinate_y: float
|
|
109
|
+
origin_coordinate_z: float
|
|
110
|
+
rotation_angles_sequence: VisualObjectRotationAnglesSequence
|
|
111
|
+
rotation_angle_1: float
|
|
112
|
+
rotation_angle_2: float
|
|
113
|
+
rotation_angle_3: float
|
|
114
|
+
scale_is_nonuniform: bool
|
|
115
|
+
scale_is_defined_as_relative: bool
|
|
116
|
+
scale_absolute: float
|
|
117
|
+
scale_relative: float
|
|
118
|
+
scale_absolute_x: float
|
|
119
|
+
scale_absolute_y: float
|
|
120
|
+
scale_absolute_z: float
|
|
121
|
+
scale_relative_x: float
|
|
122
|
+
scale_relative_y: float
|
|
123
|
+
scale_relative_z: float
|
|
124
|
+
comment: str
|
|
125
|
+
is_generated: bool
|
|
126
|
+
generating_object_info: str
|
|
127
|
+
id_for_export_import: str
|
|
128
|
+
metadata_for_export_import: str
|
|
129
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., file_path: _Optional[str] = ..., file_name: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., insert_point: _Optional[_Union[VisualObjectInsertPoint, str]] = ..., origin_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[VisualObjectRotationAnglesSequence, str]] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., rotation_angle_3: _Optional[float] = ..., scale_is_nonuniform: bool = ..., scale_is_defined_as_relative: bool = ..., scale_absolute: _Optional[float] = ..., scale_relative: _Optional[float] = ..., scale_absolute_x: _Optional[float] = ..., scale_absolute_y: _Optional[float] = ..., scale_absolute_z: _Optional[float] = ..., scale_relative_x: _Optional[float] = ..., scale_relative_y: _Optional[float] = ..., scale_relative_z: _Optional[float] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,50 @@
|
|
|
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/imperfections/imperfection_case.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/imperfections/imperfection_case.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'\n5dlubal/api/rfem/imperfections/imperfection_case.proto\x12\x1d\x64lubal.api.rfem.imperfections\"\xb8\x10\n\x10ImperfectionCase\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x46\n\x04type\x18\x02 \x01(\x0e\x32\x33.dlubal.api.rfem.imperfections.ImperfectionCaseTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x1e\n\x16\x61ssigned_to_load_cases\x18\x05 \x03(\x05\x12%\n\x1d\x61ssigned_to_load_combinations\x18\x06 \x03(\x05\x12\x16\n\tis_active\x18\x07 \x01(\x08H\x03\x88\x01\x01\x12\x46\n9assign_to_combinations_without_assigned_imperfection_case\x18\x08 \x01(\x08H\x04\x88\x01\x01\x12P\n\tdirection\x18\t \x01(\x0e\x32\x38.dlubal.api.rfem.imperfections.ImperfectionCaseDirectionH\x05\x88\x01\x01\x12u\n\x1d\x64irection_for_level_direction\x18\n \x01(\x0e\x32I.dlubal.api.rfem.imperfections.ImperfectionCaseDirectionForLevelDirectionH\x06\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x0b \x01(\x05H\x07\x88\x01\x01\x12)\n\x1cload_case_for_notional_loads\x18\x0c \x01(\x05H\x08\x88\x01\x01\x12)\n\x1csway_coefficients_reciprocal\x18\r \x01(\x08H\t\x88\x01\x01\x12j\n\x13level_imperfections\x18\x0e \x01(\x0b\x32H.dlubal.api.rfem.imperfections.ArrayOfImperfectionCaseLevelImperfectionsH\n\x88\x01\x01\x12J\n\x06source\x18\x0f \x01(\x0e\x32\x35.dlubal.api.rfem.imperfections.ImperfectionCaseSourceH\x0b\x88\x01\x01\x12!\n\x14shape_from_load_case\x18\x10 \x01(\x05H\x0c\x88\x01\x01\x12(\n\x1bshape_from_load_combination\x18\x11 \x01(\x05H\r\x88\x01\x01\x12\x1b\n\x0e\x62uckling_shape\x18\x12 \x01(\x05H\x0e\x88\x01\x01\x12\x17\n\ndelta_zero\x18\x13 \x01(\x01H\x0f\x88\x01\x01\x12n\n\x19magnitude_assignment_type\x18\x14 \x01(\x0e\x32\x46.dlubal.api.rfem.imperfections.ImperfectionCaseMagnitudeAssignmentTypeH\x10\x88\x01\x01\x12\x1b\n\x0ereference_node\x18\x15 \x01(\x05H\x11\x88\x01\x01\x12+\n\x1e\x61mount_of_modes_to_investigate\x18\x16 \x01(\x05H\x12\x88\x01\x01\x12$\n\x17\x65igenmode_automatically\x18\x17 \x01(\x08H\x13\x88\x01\x01\x12s\n\x18imperfection_cases_items\x18\x18 \x01(\x0b\x32L.dlubal.api.rfem.imperfections.ArrayOfImperfectionCaseImperfectionCasesItemsH\x14\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x19 \x01(\tH\x15\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1a \x01(\x08H\x16\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1b \x01(\tH\x17\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1c \x01(\tH\x18\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1d \x01(\tH\x19\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_is_activeB<\n:_assign_to_combinations_without_assigned_imperfection_caseB\x0c\n\n_directionB \n\x1e_direction_for_level_directionB\x14\n\x12_coordinate_systemB\x1f\n\x1d_load_case_for_notional_loadsB\x1f\n\x1d_sway_coefficients_reciprocalB\x16\n\x14_level_imperfectionsB\t\n\x07_sourceB\x17\n\x15_shape_from_load_caseB\x1e\n\x1c_shape_from_load_combinationB\x11\n\x0f_buckling_shapeB\r\n\x0b_delta_zeroB\x1c\n\x1a_magnitude_assignment_typeB\x11\n\x0f_reference_nodeB!\n\x1f_amount_of_modes_to_investigateB\x1a\n\x18_eigenmode_automaticallyB\x1b\n\x19_imperfection_cases_itemsB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"+\n)ArrayOfImperfectionCaseLevelImperfections\"/\n-ArrayOfImperfectionCaseImperfectionCasesItems*\x91\x04\n\x14ImperfectionCaseType\x12\"\n\x1eIMPERFECTION_CASE_TYPE_UNKNOWN\x10\x00\x12:\n6IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_BUCKLING_MODE\x10\x05\x12>\n:IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_DYNAMIC_EIGENMODE\x10\x06\x12\x45\nAIMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_IMPERFECTION_CASES_GROUP\x10\x07\x12\x43\n?IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_INITIAL_SWAY_VIA_TABLE\x10\x03\x12@\n<IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_LOCAL_IMPERFECTIONS\x10\x01\x12J\nFIMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_NOTIONAL_LOADS_FROM_LOAD_CASE\x10\x02\x12?\n;IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_STATIC_DEFORMATION\x10\x04*\xd3\x08\n\x19ImperfectionCaseDirection\x12\x43\n?IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_X\x10\x00\x12_\n[IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE\x10\x15\x12[\nWIMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12_\n[IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE\x10\x16\x12[\nWIMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12_\n[IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE\x10\x17\x12[\nWIMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12\x43\n?IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Y\x10\x01\x12L\nHIMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Y_NEGATIVE\x10\x11\x12\x43\n?IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Z\x10\x02\x12L\nHIMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Z_NEGATIVE\x10\x12\x12\x43\n?IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_SPATIAL\x10\x18\x12L\nHIMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_SPATIAL_NEGATIVE\x10\x19*\x9d\x03\n*ImperfectionCaseDirectionForLevelDirection\x12;\n7IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_X\x10\x00\x12<\n8IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_XY\x10\x03\x12<\n8IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_XZ\x10\x04\x12;\n7IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_Y\x10\x01\x12<\n8IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_YZ\x10\x05\x12;\n7IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_Z\x10\x02*\xd6\x01\n\x16ImperfectionCaseSource\x12\x39\n5IMPERFECTION_CASE_SOURCE_OWN_LOAD_CASE_OR_COMBINATION\x10\x00\x12*\n&IMPERFECTION_CASE_SOURCE_AUTOMATICALLY\x10\x03\x12&\n\"IMPERFECTION_CASE_SOURCE_LOAD_CASE\x10\x01\x12-\n)IMPERFECTION_CASE_SOURCE_LOAD_COMBINATION\x10\x02*\xbc\x01\n\'ImperfectionCaseMagnitudeAssignmentType\x12R\nNIMPERFECTION_CASE_MAGNITUDE_ASSIGNMENT_TYPE_LOCATION_WITH_LARGEST_DISPLACEMENT\x10\x00\x12=\n9IMPERFECTION_CASE_MAGNITUDE_ASSIGNMENT_TYPE_SPECIFIC_NODE\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.imperfections.imperfection_case_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_IMPERFECTIONCASETYPE']._serialized_start=2290
|
|
35
|
+
_globals['_IMPERFECTIONCASETYPE']._serialized_end=2819
|
|
36
|
+
_globals['_IMPERFECTIONCASEDIRECTION']._serialized_start=2822
|
|
37
|
+
_globals['_IMPERFECTIONCASEDIRECTION']._serialized_end=3929
|
|
38
|
+
_globals['_IMPERFECTIONCASEDIRECTIONFORLEVELDIRECTION']._serialized_start=3932
|
|
39
|
+
_globals['_IMPERFECTIONCASEDIRECTIONFORLEVELDIRECTION']._serialized_end=4345
|
|
40
|
+
_globals['_IMPERFECTIONCASESOURCE']._serialized_start=4348
|
|
41
|
+
_globals['_IMPERFECTIONCASESOURCE']._serialized_end=4562
|
|
42
|
+
_globals['_IMPERFECTIONCASEMAGNITUDEASSIGNMENTTYPE']._serialized_start=4565
|
|
43
|
+
_globals['_IMPERFECTIONCASEMAGNITUDEASSIGNMENTTYPE']._serialized_end=4753
|
|
44
|
+
_globals['_IMPERFECTIONCASE']._serialized_start=89
|
|
45
|
+
_globals['_IMPERFECTIONCASE']._serialized_end=2193
|
|
46
|
+
_globals['_ARRAYOFIMPERFECTIONCASELEVELIMPERFECTIONS']._serialized_start=2195
|
|
47
|
+
_globals['_ARRAYOFIMPERFECTIONCASELEVELIMPERFECTIONS']._serialized_end=2238
|
|
48
|
+
_globals['_ARRAYOFIMPERFECTIONCASEIMPERFECTIONCASESITEMS']._serialized_start=2240
|
|
49
|
+
_globals['_ARRAYOFIMPERFECTIONCASEIMPERFECTIONCASESITEMS']._serialized_end=2287
|
|
50
|
+
# @@protoc_insertion_point(module_scope)
|