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,245 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
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 DimensionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
DIMENSION_TYPE_UNKNOWN: _ClassVar[DimensionType]
|
|
13
|
+
DIMENSION_TYPE_DIMENSION_TYPE_ANGULAR: _ClassVar[DimensionType]
|
|
14
|
+
DIMENSION_TYPE_DIMENSION_TYPE_ARC_LENGTH: _ClassVar[DimensionType]
|
|
15
|
+
DIMENSION_TYPE_DIMENSION_TYPE_DIAMETER: _ClassVar[DimensionType]
|
|
16
|
+
DIMENSION_TYPE_DIMENSION_TYPE_ELEVATION: _ClassVar[DimensionType]
|
|
17
|
+
DIMENSION_TYPE_DIMENSION_TYPE_LINEAR: _ClassVar[DimensionType]
|
|
18
|
+
DIMENSION_TYPE_DIMENSION_TYPE_RADIUS: _ClassVar[DimensionType]
|
|
19
|
+
DIMENSION_TYPE_DIMENSION_TYPE_SLOPE: _ClassVar[DimensionType]
|
|
20
|
+
|
|
21
|
+
class DimensionCustomVerticalPosition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
22
|
+
__slots__ = ()
|
|
23
|
+
DIMENSION_CUSTOM_VERTICAL_POSITION_CENTER: _ClassVar[DimensionCustomVerticalPosition]
|
|
24
|
+
DIMENSION_CUSTOM_VERTICAL_POSITION_ABOVE: _ClassVar[DimensionCustomVerticalPosition]
|
|
25
|
+
DIMENSION_CUSTOM_VERTICAL_POSITION_UNDER: _ClassVar[DimensionCustomVerticalPosition]
|
|
26
|
+
|
|
27
|
+
class DimensionCustomHorizontalPosition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
28
|
+
__slots__ = ()
|
|
29
|
+
DIMENSION_CUSTOM_HORIZONTAL_POSITION_CENTER: _ClassVar[DimensionCustomHorizontalPosition]
|
|
30
|
+
DIMENSION_CUSTOM_HORIZONTAL_POSITION_LEFT: _ClassVar[DimensionCustomHorizontalPosition]
|
|
31
|
+
DIMENSION_CUSTOM_HORIZONTAL_POSITION_RIGHT: _ClassVar[DimensionCustomHorizontalPosition]
|
|
32
|
+
|
|
33
|
+
class DimensionLinearReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
34
|
+
__slots__ = ()
|
|
35
|
+
DIMENSION_LINEAR_REFERENCE_LENGTH: _ClassVar[DimensionLinearReference]
|
|
36
|
+
DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_X: _ClassVar[DimensionLinearReference]
|
|
37
|
+
DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_Y: _ClassVar[DimensionLinearReference]
|
|
38
|
+
DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_Z: _ClassVar[DimensionLinearReference]
|
|
39
|
+
|
|
40
|
+
class DimensionLinearPlane(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
41
|
+
__slots__ = ()
|
|
42
|
+
DIMENSION_LINEAR_PLANE_FIRST: _ClassVar[DimensionLinearPlane]
|
|
43
|
+
DIMENSION_LINEAR_PLANE_SECOND: _ClassVar[DimensionLinearPlane]
|
|
44
|
+
|
|
45
|
+
class DimensionAngularQuadrant(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
46
|
+
__slots__ = ()
|
|
47
|
+
DIMENSION_ANGULAR_QUADRANT_POSITIVE: _ClassVar[DimensionAngularQuadrant]
|
|
48
|
+
DIMENSION_ANGULAR_QUADRANT_LEFT: _ClassVar[DimensionAngularQuadrant]
|
|
49
|
+
DIMENSION_ANGULAR_QUADRANT_NEGATIVE: _ClassVar[DimensionAngularQuadrant]
|
|
50
|
+
DIMENSION_ANGULAR_QUADRANT_RIGHT: _ClassVar[DimensionAngularQuadrant]
|
|
51
|
+
|
|
52
|
+
class DimensionSlopePlane(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
53
|
+
__slots__ = ()
|
|
54
|
+
DIMENSION_SLOPE_PLANE_XY: _ClassVar[DimensionSlopePlane]
|
|
55
|
+
DIMENSION_SLOPE_PLANE_XZ: _ClassVar[DimensionSlopePlane]
|
|
56
|
+
DIMENSION_SLOPE_PLANE_YZ: _ClassVar[DimensionSlopePlane]
|
|
57
|
+
|
|
58
|
+
class DimensionSlopeDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
59
|
+
__slots__ = ()
|
|
60
|
+
DIMENSION_SLOPE_DIRECTION_UPWARD: _ClassVar[DimensionSlopeDirection]
|
|
61
|
+
DIMENSION_SLOPE_DIRECTION_DOWNWARD: _ClassVar[DimensionSlopeDirection]
|
|
62
|
+
|
|
63
|
+
class DimensionElevationReferenceObjectType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
64
|
+
__slots__ = ()
|
|
65
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_SURFACE: _ClassVar[DimensionElevationReferenceObjectType]
|
|
66
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_CONTROL_POINT: _ClassVar[DimensionElevationReferenceObjectType]
|
|
67
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_NODE: _ClassVar[DimensionElevationReferenceObjectType]
|
|
68
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_POINT: _ClassVar[DimensionElevationReferenceObjectType]
|
|
69
|
+
DIMENSION_TYPE_UNKNOWN: DimensionType
|
|
70
|
+
DIMENSION_TYPE_DIMENSION_TYPE_ANGULAR: DimensionType
|
|
71
|
+
DIMENSION_TYPE_DIMENSION_TYPE_ARC_LENGTH: DimensionType
|
|
72
|
+
DIMENSION_TYPE_DIMENSION_TYPE_DIAMETER: DimensionType
|
|
73
|
+
DIMENSION_TYPE_DIMENSION_TYPE_ELEVATION: DimensionType
|
|
74
|
+
DIMENSION_TYPE_DIMENSION_TYPE_LINEAR: DimensionType
|
|
75
|
+
DIMENSION_TYPE_DIMENSION_TYPE_RADIUS: DimensionType
|
|
76
|
+
DIMENSION_TYPE_DIMENSION_TYPE_SLOPE: DimensionType
|
|
77
|
+
DIMENSION_CUSTOM_VERTICAL_POSITION_CENTER: DimensionCustomVerticalPosition
|
|
78
|
+
DIMENSION_CUSTOM_VERTICAL_POSITION_ABOVE: DimensionCustomVerticalPosition
|
|
79
|
+
DIMENSION_CUSTOM_VERTICAL_POSITION_UNDER: DimensionCustomVerticalPosition
|
|
80
|
+
DIMENSION_CUSTOM_HORIZONTAL_POSITION_CENTER: DimensionCustomHorizontalPosition
|
|
81
|
+
DIMENSION_CUSTOM_HORIZONTAL_POSITION_LEFT: DimensionCustomHorizontalPosition
|
|
82
|
+
DIMENSION_CUSTOM_HORIZONTAL_POSITION_RIGHT: DimensionCustomHorizontalPosition
|
|
83
|
+
DIMENSION_LINEAR_REFERENCE_LENGTH: DimensionLinearReference
|
|
84
|
+
DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_X: DimensionLinearReference
|
|
85
|
+
DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_Y: DimensionLinearReference
|
|
86
|
+
DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_Z: DimensionLinearReference
|
|
87
|
+
DIMENSION_LINEAR_PLANE_FIRST: DimensionLinearPlane
|
|
88
|
+
DIMENSION_LINEAR_PLANE_SECOND: DimensionLinearPlane
|
|
89
|
+
DIMENSION_ANGULAR_QUADRANT_POSITIVE: DimensionAngularQuadrant
|
|
90
|
+
DIMENSION_ANGULAR_QUADRANT_LEFT: DimensionAngularQuadrant
|
|
91
|
+
DIMENSION_ANGULAR_QUADRANT_NEGATIVE: DimensionAngularQuadrant
|
|
92
|
+
DIMENSION_ANGULAR_QUADRANT_RIGHT: DimensionAngularQuadrant
|
|
93
|
+
DIMENSION_SLOPE_PLANE_XY: DimensionSlopePlane
|
|
94
|
+
DIMENSION_SLOPE_PLANE_XZ: DimensionSlopePlane
|
|
95
|
+
DIMENSION_SLOPE_PLANE_YZ: DimensionSlopePlane
|
|
96
|
+
DIMENSION_SLOPE_DIRECTION_UPWARD: DimensionSlopeDirection
|
|
97
|
+
DIMENSION_SLOPE_DIRECTION_DOWNWARD: DimensionSlopeDirection
|
|
98
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_SURFACE: DimensionElevationReferenceObjectType
|
|
99
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_CONTROL_POINT: DimensionElevationReferenceObjectType
|
|
100
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_NODE: DimensionElevationReferenceObjectType
|
|
101
|
+
DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_POINT: DimensionElevationReferenceObjectType
|
|
102
|
+
|
|
103
|
+
class Dimension(_message.Message):
|
|
104
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "display_properties_index", "dimension_line_offset", "is_custom_vertical_position", "custom_vertical_position", "is_custom_horizontal_position", "custom_horizontal_position", "symbol", "comment", "measured_length", "measured_lengths", "measured_angle", "measured_angles", "measured_slope", "is_global_dimension_line_offset", "linear_coordinate_system", "linear_reference", "linear_plane", "linear_global_dimension_line_offset", "linear_global_dimension_line_offset_x", "linear_global_dimension_line_offset_y", "linear_global_dimension_line_offset_z", "linear_reference_table", "arc_length_reference_line", "arc_length_reference_table", "arc_length_angle_greater_than_180", "angular_reference_table", "angular_quadrant", "angular_angle_greater_than_180", "radius_diameter_reference_line", "radius_diameter_is_target_point", "radius_diameter_target_point_coordinates", "radius_diameter_target_point_coordinate_x", "radius_diameter_target_point_coordinate_y", "radius_diameter_target_point_coordinate_z", "radius_diameter_position_on_line", "slope_coordinate_system", "slope_plane", "slope_reference_line", "slope_direction", "slope_refer_distance_from_line_end", "slope_position_is_relative", "slope_position_absolute", "slope_position_relative", "elevation_reference_object_type", "elevation_reference_surface", "elevation_reference_node", "elevation_reference_control_point", "elevation_reference_point_coordinates", "elevation_reference_point_coordinate_x", "elevation_reference_point_coordinate_y", "elevation_reference_point_coordinate_z", "elevation_distance_from_picked_position", "elevation_rotation_around_z", "elevation_reference_level_height", "elevation_is_altitude", "elevation_altitude", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
105
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
DISPLAY_PROPERTIES_INDEX_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
DIMENSION_LINE_OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
IS_CUSTOM_VERTICAL_POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
CUSTOM_VERTICAL_POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
IS_CUSTOM_HORIZONTAL_POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
CUSTOM_HORIZONTAL_POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
MEASURED_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
MEASURED_LENGTHS_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
MEASURED_ANGLE_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
MEASURED_ANGLES_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
MEASURED_SLOPE_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
IS_GLOBAL_DIMENSION_LINE_OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
LINEAR_COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
LINEAR_REFERENCE_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
LINEAR_PLANE_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
LINEAR_GLOBAL_DIMENSION_LINE_OFFSET_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
LINEAR_GLOBAL_DIMENSION_LINE_OFFSET_X_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
LINEAR_GLOBAL_DIMENSION_LINE_OFFSET_Y_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
LINEAR_GLOBAL_DIMENSION_LINE_OFFSET_Z_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
LINEAR_REFERENCE_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
ARC_LENGTH_REFERENCE_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
ARC_LENGTH_REFERENCE_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
ARC_LENGTH_ANGLE_GREATER_THAN_180_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
ANGULAR_REFERENCE_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
135
|
+
ANGULAR_QUADRANT_FIELD_NUMBER: _ClassVar[int]
|
|
136
|
+
ANGULAR_ANGLE_GREATER_THAN_180_FIELD_NUMBER: _ClassVar[int]
|
|
137
|
+
RADIUS_DIAMETER_REFERENCE_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
138
|
+
RADIUS_DIAMETER_IS_TARGET_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
RADIUS_DIAMETER_TARGET_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
140
|
+
RADIUS_DIAMETER_TARGET_POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
141
|
+
RADIUS_DIAMETER_TARGET_POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
142
|
+
RADIUS_DIAMETER_TARGET_POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
143
|
+
RADIUS_DIAMETER_POSITION_ON_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
SLOPE_COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
SLOPE_PLANE_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
SLOPE_REFERENCE_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
SLOPE_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
SLOPE_REFER_DISTANCE_FROM_LINE_END_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
SLOPE_POSITION_IS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
SLOPE_POSITION_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
SLOPE_POSITION_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
ELEVATION_REFERENCE_OBJECT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
ELEVATION_REFERENCE_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
ELEVATION_REFERENCE_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
ELEVATION_REFERENCE_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
ELEVATION_REFERENCE_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
ELEVATION_REFERENCE_POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
ELEVATION_REFERENCE_POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
ELEVATION_REFERENCE_POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
ELEVATION_DISTANCE_FROM_PICKED_POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
ELEVATION_ROTATION_AROUND_Z_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
ELEVATION_REFERENCE_LEVEL_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
ELEVATION_IS_ALTITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
ELEVATION_ALTITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
no: int
|
|
170
|
+
type: DimensionType
|
|
171
|
+
user_defined_name_enabled: bool
|
|
172
|
+
name: str
|
|
173
|
+
display_properties_index: int
|
|
174
|
+
dimension_line_offset: float
|
|
175
|
+
is_custom_vertical_position: bool
|
|
176
|
+
custom_vertical_position: DimensionCustomVerticalPosition
|
|
177
|
+
is_custom_horizontal_position: bool
|
|
178
|
+
custom_horizontal_position: DimensionCustomHorizontalPosition
|
|
179
|
+
symbol: str
|
|
180
|
+
comment: str
|
|
181
|
+
measured_length: float
|
|
182
|
+
measured_lengths: _containers.RepeatedScalarFieldContainer[int]
|
|
183
|
+
measured_angle: float
|
|
184
|
+
measured_angles: _containers.RepeatedScalarFieldContainer[int]
|
|
185
|
+
measured_slope: float
|
|
186
|
+
is_global_dimension_line_offset: bool
|
|
187
|
+
linear_coordinate_system: int
|
|
188
|
+
linear_reference: DimensionLinearReference
|
|
189
|
+
linear_plane: DimensionLinearPlane
|
|
190
|
+
linear_global_dimension_line_offset: _common_pb2.Vector3d
|
|
191
|
+
linear_global_dimension_line_offset_x: float
|
|
192
|
+
linear_global_dimension_line_offset_y: float
|
|
193
|
+
linear_global_dimension_line_offset_z: float
|
|
194
|
+
linear_reference_table: ArrayOfDimensionLinearReferenceTable
|
|
195
|
+
arc_length_reference_line: int
|
|
196
|
+
arc_length_reference_table: ArrayOfDimensionArcLengthReferenceTable
|
|
197
|
+
arc_length_angle_greater_than_180: bool
|
|
198
|
+
angular_reference_table: ArrayOfDimensionAngularReferenceTable
|
|
199
|
+
angular_quadrant: DimensionAngularQuadrant
|
|
200
|
+
angular_angle_greater_than_180: bool
|
|
201
|
+
radius_diameter_reference_line: int
|
|
202
|
+
radius_diameter_is_target_point: bool
|
|
203
|
+
radius_diameter_target_point_coordinates: _common_pb2.Vector3d
|
|
204
|
+
radius_diameter_target_point_coordinate_x: float
|
|
205
|
+
radius_diameter_target_point_coordinate_y: float
|
|
206
|
+
radius_diameter_target_point_coordinate_z: float
|
|
207
|
+
radius_diameter_position_on_line: float
|
|
208
|
+
slope_coordinate_system: int
|
|
209
|
+
slope_plane: DimensionSlopePlane
|
|
210
|
+
slope_reference_line: int
|
|
211
|
+
slope_direction: DimensionSlopeDirection
|
|
212
|
+
slope_refer_distance_from_line_end: bool
|
|
213
|
+
slope_position_is_relative: bool
|
|
214
|
+
slope_position_absolute: float
|
|
215
|
+
slope_position_relative: float
|
|
216
|
+
elevation_reference_object_type: DimensionElevationReferenceObjectType
|
|
217
|
+
elevation_reference_surface: int
|
|
218
|
+
elevation_reference_node: int
|
|
219
|
+
elevation_reference_control_point: int
|
|
220
|
+
elevation_reference_point_coordinates: _common_pb2.Vector3d
|
|
221
|
+
elevation_reference_point_coordinate_x: float
|
|
222
|
+
elevation_reference_point_coordinate_y: float
|
|
223
|
+
elevation_reference_point_coordinate_z: float
|
|
224
|
+
elevation_distance_from_picked_position: float
|
|
225
|
+
elevation_rotation_around_z: float
|
|
226
|
+
elevation_reference_level_height: float
|
|
227
|
+
elevation_is_altitude: bool
|
|
228
|
+
elevation_altitude: float
|
|
229
|
+
is_generated: bool
|
|
230
|
+
generating_object_info: str
|
|
231
|
+
id_for_export_import: str
|
|
232
|
+
metadata_for_export_import: str
|
|
233
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[DimensionType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., display_properties_index: _Optional[int] = ..., dimension_line_offset: _Optional[float] = ..., is_custom_vertical_position: bool = ..., custom_vertical_position: _Optional[_Union[DimensionCustomVerticalPosition, str]] = ..., is_custom_horizontal_position: bool = ..., custom_horizontal_position: _Optional[_Union[DimensionCustomHorizontalPosition, str]] = ..., symbol: _Optional[str] = ..., comment: _Optional[str] = ..., measured_length: _Optional[float] = ..., measured_lengths: _Optional[_Iterable[int]] = ..., measured_angle: _Optional[float] = ..., measured_angles: _Optional[_Iterable[int]] = ..., measured_slope: _Optional[float] = ..., is_global_dimension_line_offset: bool = ..., linear_coordinate_system: _Optional[int] = ..., linear_reference: _Optional[_Union[DimensionLinearReference, str]] = ..., linear_plane: _Optional[_Union[DimensionLinearPlane, str]] = ..., linear_global_dimension_line_offset: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., linear_global_dimension_line_offset_x: _Optional[float] = ..., linear_global_dimension_line_offset_y: _Optional[float] = ..., linear_global_dimension_line_offset_z: _Optional[float] = ..., linear_reference_table: _Optional[_Union[ArrayOfDimensionLinearReferenceTable, _Mapping]] = ..., arc_length_reference_line: _Optional[int] = ..., arc_length_reference_table: _Optional[_Union[ArrayOfDimensionArcLengthReferenceTable, _Mapping]] = ..., arc_length_angle_greater_than_180: bool = ..., angular_reference_table: _Optional[_Union[ArrayOfDimensionAngularReferenceTable, _Mapping]] = ..., angular_quadrant: _Optional[_Union[DimensionAngularQuadrant, str]] = ..., angular_angle_greater_than_180: bool = ..., radius_diameter_reference_line: _Optional[int] = ..., radius_diameter_is_target_point: bool = ..., radius_diameter_target_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., radius_diameter_target_point_coordinate_x: _Optional[float] = ..., radius_diameter_target_point_coordinate_y: _Optional[float] = ..., radius_diameter_target_point_coordinate_z: _Optional[float] = ..., radius_diameter_position_on_line: _Optional[float] = ..., slope_coordinate_system: _Optional[int] = ..., slope_plane: _Optional[_Union[DimensionSlopePlane, str]] = ..., slope_reference_line: _Optional[int] = ..., slope_direction: _Optional[_Union[DimensionSlopeDirection, str]] = ..., slope_refer_distance_from_line_end: bool = ..., slope_position_is_relative: bool = ..., slope_position_absolute: _Optional[float] = ..., slope_position_relative: _Optional[float] = ..., elevation_reference_object_type: _Optional[_Union[DimensionElevationReferenceObjectType, str]] = ..., elevation_reference_surface: _Optional[int] = ..., elevation_reference_node: _Optional[int] = ..., elevation_reference_control_point: _Optional[int] = ..., elevation_reference_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elevation_reference_point_coordinate_x: _Optional[float] = ..., elevation_reference_point_coordinate_y: _Optional[float] = ..., elevation_reference_point_coordinate_z: _Optional[float] = ..., elevation_distance_from_picked_position: _Optional[float] = ..., elevation_rotation_around_z: _Optional[float] = ..., elevation_reference_level_height: _Optional[float] = ..., elevation_is_altitude: bool = ..., elevation_altitude: _Optional[float] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
234
|
+
|
|
235
|
+
class ArrayOfDimensionLinearReferenceTable(_message.Message):
|
|
236
|
+
__slots__ = ()
|
|
237
|
+
def __init__(self) -> None: ...
|
|
238
|
+
|
|
239
|
+
class ArrayOfDimensionArcLengthReferenceTable(_message.Message):
|
|
240
|
+
__slots__ = ()
|
|
241
|
+
def __init__(self) -> None: ...
|
|
242
|
+
|
|
243
|
+
class ArrayOfDimensionAngularReferenceTable(_message.Message):
|
|
244
|
+
__slots__ = ()
|
|
245
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,41 @@
|
|
|
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/dxf_file_model_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/dxf_file_model_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'\n9dlubal/api/rfem/guide_objects/dxf_file_model_object.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xca\r\n\x12\x44xfFileModelObject\x12\n\n\x02no\x18\x01 \x01(\x05\x12<\n\x12origin_coordinates\x18\x02 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x00\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x03 \x01(\x01H\x01\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12n\n\x18rotation_angles_sequence\x18\x06 \x01(\x0e\x32G.dlubal.api.rfem.guide_objects.DxfFileModelObjectRotationAnglesSequenceH\x04\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x1d\n\x10rotation_angle_3\x18\t \x01(\x01H\x07\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\n \x01(\x08H\x08\x88\x01\x01\x12\x11\n\x04name\x18\x0b \x01(\tH\t\x88\x01\x01\x12\x16\n\tfile_path\x18\x0c \x01(\tH\n\x88\x01\x01\x12\x16\n\tfile_name\x18\r \x01(\tH\x0b\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x0e \x01(\x05H\x0c\x88\x01\x01\x12W\n\x0cinsert_point\x18\x0f \x01(\x0e\x32<.dlubal.api.rfem.guide_objects.DxfFileModelObjectInsertPointH\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_relative\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x1b\n\x0escale_absolute\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x1d\n\x10scale_relative_x\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x1d\n\x10scale_relative_y\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x1d\n\x10scale_relative_z\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x1d\n\x10scale_absolute_x\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x1d\n\x10scale_absolute_y\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12\x1d\n\x10scale_absolute_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\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\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\x16\n\x14_scale_is_nonuniformB\x1f\n\x1d_scale_is_defined_as_relativeB\x11\n\x0f_scale_relativeB\x11\n\x0f_scale_absoluteB\x13\n\x11_scale_relative_xB\x13\n\x11_scale_relative_yB\x13\n\x11_scale_relative_zB\x13\n\x11_scale_absolute_xB\x13\n\x11_scale_absolute_yB\x13\n\x11_scale_absolute_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*\xfa\x02\n(DxfFileModelObjectRotationAnglesSequence\x12\x36\n2DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_XYZ\x10\x00\x12\x36\n2DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12\x36\n2DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12\x36\n2DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12\x36\n2DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12\x36\n2DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZYX\x10\x05*\xc8\x05\n\x1d\x44xfFileModelObjectInsertPoint\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_CENTER\x10\x00\x12)\n%DXF_FILE_MODEL_OBJECT_INSERT_POINT_MX\x10\x02\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXMYMZ\x10\x0e\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXMYPZ\x10\n\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXPYMZ\x10\x0c\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXPYPZ\x10\x08\x12)\n%DXF_FILE_MODEL_OBJECT_INSERT_POINT_MY\x10\x04\x12)\n%DXF_FILE_MODEL_OBJECT_INSERT_POINT_MZ\x10\x06\x12)\n%DXF_FILE_MODEL_OBJECT_INSERT_POINT_PX\x10\x01\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXMYMZ\x10\r\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXMYPZ\x10\t\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXPYMZ\x10\x0b\x12-\n)DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXPYPZ\x10\x07\x12)\n%DXF_FILE_MODEL_OBJECT_INSERT_POINT_PY\x10\x03\x12)\n%DXF_FILE_MODEL_OBJECT_INSERT_POINT_PZ\x10\x05\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.dxf_file_model_object_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_DXFFILEMODELOBJECTROTATIONANGLESSEQUENCE']._serialized_start=1866
|
|
36
|
+
_globals['_DXFFILEMODELOBJECTROTATIONANGLESSEQUENCE']._serialized_end=2244
|
|
37
|
+
_globals['_DXFFILEMODELOBJECTINSERTPOINT']._serialized_start=2247
|
|
38
|
+
_globals['_DXFFILEMODELOBJECTINSERTPOINT']._serialized_end=2959
|
|
39
|
+
_globals['_DXFFILEMODELOBJECT']._serialized_start=125
|
|
40
|
+
_globals['_DXFFILEMODELOBJECT']._serialized_end=1863
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,119 @@
|
|
|
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 DxfFileModelObjectRotationAnglesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_XYZ: _ClassVar[DxfFileModelObjectRotationAnglesSequence]
|
|
12
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_XZY: _ClassVar[DxfFileModelObjectRotationAnglesSequence]
|
|
13
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_YXZ: _ClassVar[DxfFileModelObjectRotationAnglesSequence]
|
|
14
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_YZX: _ClassVar[DxfFileModelObjectRotationAnglesSequence]
|
|
15
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZXY: _ClassVar[DxfFileModelObjectRotationAnglesSequence]
|
|
16
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZYX: _ClassVar[DxfFileModelObjectRotationAnglesSequence]
|
|
17
|
+
|
|
18
|
+
class DxfFileModelObjectInsertPoint(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
19
|
+
__slots__ = ()
|
|
20
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_CENTER: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
21
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MX: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
22
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXMYMZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
23
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXMYPZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
24
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXPYMZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
25
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXPYPZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
26
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MY: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
27
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
28
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PX: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
29
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXMYMZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
30
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXMYPZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
31
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXPYMZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
32
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXPYPZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
33
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PY: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
34
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PZ: _ClassVar[DxfFileModelObjectInsertPoint]
|
|
35
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_XYZ: DxfFileModelObjectRotationAnglesSequence
|
|
36
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_XZY: DxfFileModelObjectRotationAnglesSequence
|
|
37
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_YXZ: DxfFileModelObjectRotationAnglesSequence
|
|
38
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_YZX: DxfFileModelObjectRotationAnglesSequence
|
|
39
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZXY: DxfFileModelObjectRotationAnglesSequence
|
|
40
|
+
DXF_FILE_MODEL_OBJECT_ROTATION_ANGLES_SEQUENCE_ZYX: DxfFileModelObjectRotationAnglesSequence
|
|
41
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_CENTER: DxfFileModelObjectInsertPoint
|
|
42
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MX: DxfFileModelObjectInsertPoint
|
|
43
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXMYMZ: DxfFileModelObjectInsertPoint
|
|
44
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXMYPZ: DxfFileModelObjectInsertPoint
|
|
45
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXPYMZ: DxfFileModelObjectInsertPoint
|
|
46
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MXPYPZ: DxfFileModelObjectInsertPoint
|
|
47
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MY: DxfFileModelObjectInsertPoint
|
|
48
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_MZ: DxfFileModelObjectInsertPoint
|
|
49
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PX: DxfFileModelObjectInsertPoint
|
|
50
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXMYMZ: DxfFileModelObjectInsertPoint
|
|
51
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXMYPZ: DxfFileModelObjectInsertPoint
|
|
52
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXPYMZ: DxfFileModelObjectInsertPoint
|
|
53
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PXPYPZ: DxfFileModelObjectInsertPoint
|
|
54
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PY: DxfFileModelObjectInsertPoint
|
|
55
|
+
DXF_FILE_MODEL_OBJECT_INSERT_POINT_PZ: DxfFileModelObjectInsertPoint
|
|
56
|
+
|
|
57
|
+
class DxfFileModelObject(_message.Message):
|
|
58
|
+
__slots__ = ("no", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "rotation_angles_sequence", "rotation_angle_1", "rotation_angle_2", "rotation_angle_3", "user_defined_name_enabled", "name", "file_path", "file_name", "coordinate_system", "insert_point", "scale_is_nonuniform", "scale_is_defined_as_relative", "scale_relative", "scale_absolute", "scale_relative_x", "scale_relative_y", "scale_relative_z", "scale_absolute_x", "scale_absolute_y", "scale_absolute_z", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
59
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
ORIGIN_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
ORIGIN_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
ORIGIN_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
ORIGIN_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
ROTATION_ANGLES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
ROTATION_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
ROTATION_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
ROTATION_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
FILE_PATH_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
FILE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
INSERT_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
SCALE_IS_NONUNIFORM_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
SCALE_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
SCALE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
SCALE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
SCALE_RELATIVE_X_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
SCALE_RELATIVE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
SCALE_RELATIVE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
SCALE_ABSOLUTE_X_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
SCALE_ABSOLUTE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
SCALE_ABSOLUTE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
no: int
|
|
90
|
+
origin_coordinates: _common_pb2.Vector3d
|
|
91
|
+
origin_coordinate_x: float
|
|
92
|
+
origin_coordinate_y: float
|
|
93
|
+
origin_coordinate_z: float
|
|
94
|
+
rotation_angles_sequence: DxfFileModelObjectRotationAnglesSequence
|
|
95
|
+
rotation_angle_1: float
|
|
96
|
+
rotation_angle_2: float
|
|
97
|
+
rotation_angle_3: float
|
|
98
|
+
user_defined_name_enabled: bool
|
|
99
|
+
name: str
|
|
100
|
+
file_path: str
|
|
101
|
+
file_name: str
|
|
102
|
+
coordinate_system: int
|
|
103
|
+
insert_point: DxfFileModelObjectInsertPoint
|
|
104
|
+
scale_is_nonuniform: bool
|
|
105
|
+
scale_is_defined_as_relative: bool
|
|
106
|
+
scale_relative: float
|
|
107
|
+
scale_absolute: float
|
|
108
|
+
scale_relative_x: float
|
|
109
|
+
scale_relative_y: float
|
|
110
|
+
scale_relative_z: float
|
|
111
|
+
scale_absolute_x: float
|
|
112
|
+
scale_absolute_y: float
|
|
113
|
+
scale_absolute_z: float
|
|
114
|
+
comment: str
|
|
115
|
+
is_generated: bool
|
|
116
|
+
generating_object_info: str
|
|
117
|
+
id_for_export_import: str
|
|
118
|
+
metadata_for_export_import: str
|
|
119
|
+
def __init__(self, no: _Optional[int] = ..., 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[DxfFileModelObjectRotationAnglesSequence, str]] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., rotation_angle_3: _Optional[float] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., file_path: _Optional[str] = ..., file_name: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., insert_point: _Optional[_Union[DxfFileModelObjectInsertPoint, str]] = ..., scale_is_nonuniform: bool = ..., scale_is_defined_as_relative: bool = ..., scale_relative: _Optional[float] = ..., scale_absolute: _Optional[float] = ..., scale_relative_x: _Optional[float] = ..., scale_relative_y: _Optional[float] = ..., scale_relative_z: _Optional[float] = ..., scale_absolute_x: _Optional[float] = ..., scale_absolute_y: _Optional[float] = ..., scale_absolute_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,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/guide_objects/dxf_model_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/dxf_model_object.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'\n4dlubal/api/rfem/guide_objects/dxf_model_object.proto\x12\x1d\x64lubal.api.rfem.guide_objects\"\xa0\x01\n\x0e\x44xfModelObject\x12\n\n\x02no\x18\x01 \x01(\x05\x12!\n\x14id_for_export_import\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\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.guide_objects.dxf_model_object_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_DXFMODELOBJECT']._serialized_start=88
|
|
35
|
+
_globals['_DXFMODELOBJECT']._serialized_end=248
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from google.protobuf import descriptor as _descriptor
|
|
2
|
+
from google.protobuf import message as _message
|
|
3
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
4
|
+
|
|
5
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
+
|
|
7
|
+
class DxfModelObject(_message.Message):
|
|
8
|
+
__slots__ = ("no", "id_for_export_import", "metadata_for_export_import")
|
|
9
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
10
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
no: int
|
|
13
|
+
id_for_export_import: str
|
|
14
|
+
metadata_for_export_import: str
|
|
15
|
+
def __init__(self, no: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,45 @@
|
|
|
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/note.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/note.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/guide_objects/note.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xb7\x0f\n\x04Note\x12\n\n\x02no\x18\x01 \x01(\x05\x12:\n\x04type\x18\x02 \x01(\x0e\x32\'.dlubal.api.rfem.guide_objects.NoteTypeH\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\x11\n\x04text\x18\x05 \x01(\tH\x03\x88\x01\x01\x12;\n\x11point_coordinates\x18\x06 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12\x1f\n\x12point_coordinate_x\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x1f\n\x12point_coordinate_y\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x1f\n\x12point_coordinate_z\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x11\n\x04node\x18\n \x01(\x05H\x08\x88\x01\x01\x12\x13\n\x06member\x18\x0b \x01(\x05H\t\x88\x01\x01\x12Z\n\x15member_reference_type\x18\x0c \x01(\x0e\x32\x36.dlubal.api.rfem.guide_objects.NoteMemberReferenceTypeH\n\x88\x01\x01\x12\x1a\n\rmember_length\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x33\n&member_distance_is_defined_as_relative\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12%\n\x18member_distance_relative\x18\x0f \x01(\x01H\r\x88\x01\x01\x12%\n\x18member_distance_absolute\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x11\n\x04line\x18\x11 \x01(\x05H\x0f\x88\x01\x01\x12\x18\n\x0bline_length\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x14\n\x07surface\x18\x13 \x01(\x05H\x11\x88\x01\x01\x12\\\n\x16surface_reference_type\x18\x14 \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.NoteSurfaceReferenceTypeH\x12\x88\x01\x01\x12%\n\x18surface_first_coordinate\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12&\n\x19surface_second_coordinate\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x13\n\x06offset\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12G\n\x0boffset_type\x18\x18 \x01(\x0e\x32-.dlubal.api.rfem.guide_objects.NoteOffsetTypeH\x16\x88\x01\x01\x12;\n\x11offset_coordinate\x18\x19 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x17\x88\x01\x01\x12 \n\x13offset_coordinate_x\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12 \n\x13offset_coordinate_y\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12 \n\x13offset_coordinate_z\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\x15\n\x08rotation\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\x19\n\x0cshow_comment\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12%\n\x18\x64isplay_properties_index\x18\x1f \x01(\x05H\x1d\x88\x01\x01\x12\x14\n\x07\x63omment\x18 \x01(\tH\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\x07\n\x05_textB\x14\n\x12_point_coordinatesB\x15\n\x13_point_coordinate_xB\x15\n\x13_point_coordinate_yB\x15\n\x13_point_coordinate_zB\x07\n\x05_nodeB\t\n\x07_memberB\x18\n\x16_member_reference_typeB\x10\n\x0e_member_lengthB)\n\'_member_distance_is_defined_as_relativeB\x1b\n\x19_member_distance_relativeB\x1b\n\x19_member_distance_absoluteB\x07\n\x05_lineB\x0e\n\x0c_line_lengthB\n\n\x08_surfaceB\x19\n\x17_surface_reference_typeB\x1b\n\x19_surface_first_coordinateB\x1c\n\x1a_surface_second_coordinateB\t\n\x07_offsetB\x0e\n\x0c_offset_typeB\x14\n\x12_offset_coordinateB\x16\n\x14_offset_coordinate_xB\x16\n\x14_offset_coordinate_yB\x16\n\x14_offset_coordinate_zB\x0b\n\t_rotationB\x0f\n\r_show_commentB\x1b\n\x19_display_properties_indexB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xdc\x01\n\x08NoteType\x12\x15\n\x11NOTE_TYPE_UNKNOWN\x10\x00\x12\x1c\n\x18NOTE_TYPE_NOTE_TYPE_LINE\x10\x03\x12\x1e\n\x1aNOTE_TYPE_NOTE_TYPE_MEMBER\x10\x04\x12\x1c\n\x18NOTE_TYPE_NOTE_TYPE_NODE\x10\x02\x12\x1d\n\x19NOTE_TYPE_NOTE_TYPE_POINT\x10\x01\x12\x1d\n\x19NOTE_TYPE_NOTE_TYPE_SOLID\x10\x06\x12\x1f\n\x1bNOTE_TYPE_NOTE_TYPE_SURFACE\x10\x05*\xa4\x01\n\x17NoteMemberReferenceType\x12 \n\x1cNOTE_MEMBER_REFERENCE_TYPE_L\x10\x00\x12!\n\x1dNOTE_MEMBER_REFERENCE_TYPE_XY\x10\x01\x12!\n\x1dNOTE_MEMBER_REFERENCE_TYPE_XZ\x10\x02\x12!\n\x1dNOTE_MEMBER_REFERENCE_TYPE_YZ\x10\x03*\xaf\x01\n\x18NoteSurfaceReferenceType\x12\'\n#NOTE_SURFACE_REFERENCE_TYPE_UNKNOWN\x10\x00\x12\"\n\x1eNOTE_SURFACE_REFERENCE_TYPE_XY\x10\x01\x12\"\n\x1eNOTE_SURFACE_REFERENCE_TYPE_XZ\x10\x02\x12\"\n\x1eNOTE_SURFACE_REFERENCE_TYPE_YZ\x10\x03*u\n\x0eNoteOffsetType\x12\x18\n\x14NOTE_OFFSET_TYPE_XYZ\x10\x00\x12\x17\n\x13NOTE_OFFSET_TYPE_XY\x10\x01\x12\x17\n\x13NOTE_OFFSET_TYPE_XZ\x10\x02\x12\x17\n\x13NOTE_OFFSET_TYPE_YZ\x10\x03\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.note_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_NOTETYPE']._serialized_start=2086
|
|
36
|
+
_globals['_NOTETYPE']._serialized_end=2306
|
|
37
|
+
_globals['_NOTEMEMBERREFERENCETYPE']._serialized_start=2309
|
|
38
|
+
_globals['_NOTEMEMBERREFERENCETYPE']._serialized_end=2473
|
|
39
|
+
_globals['_NOTESURFACEREFERENCETYPE']._serialized_start=2476
|
|
40
|
+
_globals['_NOTESURFACEREFERENCETYPE']._serialized_end=2651
|
|
41
|
+
_globals['_NOTEOFFSETTYPE']._serialized_start=2653
|
|
42
|
+
_globals['_NOTEOFFSETTYPE']._serialized_end=2770
|
|
43
|
+
_globals['_NOTE']._serialized_start=108
|
|
44
|
+
_globals['_NOTE']._serialized_end=2083
|
|
45
|
+
# @@protoc_insertion_point(module_scope)
|