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.

Files changed (342) hide show
  1. dlubal/__init__.py +0 -0
  2. dlubal/api/__init__.py +0 -0
  3. dlubal/api/common/__init__.py +3 -0
  4. dlubal/api/common/common_pb2.py +42 -0
  5. dlubal/api/common/common_pb2.pyi +41 -0
  6. dlubal/api/common/connection.py +251 -0
  7. dlubal/api/common/exceptions.py +12 -0
  8. dlubal/api/common/model_id_pb2.py +38 -0
  9. dlubal/api/common/model_id_pb2.pyi +17 -0
  10. dlubal/api/common/table.py +35 -0
  11. dlubal/api/common/table_data_pb2.py +39 -0
  12. dlubal/api/common/table_data_pb2.pyi +21 -0
  13. dlubal/api/rfem/__init__.py +32 -0
  14. dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  15. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  16. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  17. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  18. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  19. dlubal/api/rfem/application.py +290 -0
  20. dlubal/api/rfem/application_pb2.py +67 -0
  21. dlubal/api/rfem/application_pb2.pyi +135 -0
  22. dlubal/api/rfem/application_pb2_grpc.py +973 -0
  23. dlubal/api/rfem/base_data/__init__.py +1 -0
  24. dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
  25. dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
  26. dlubal/api/rfem/building_model/__init__.py +4 -0
  27. dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  28. dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
  29. dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
  30. dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
  31. dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  32. dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
  33. dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
  34. dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
  35. dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  36. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
  37. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
  38. dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
  39. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  40. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  41. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  42. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  43. dlubal/api/rfem/construction_stages/__init__.py +1 -0
  44. dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
  45. dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
  46. dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
  47. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
  48. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
  49. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
  50. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
  51. dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  52. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
  53. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
  54. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  55. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
  56. dlubal/api/rfem/global_parameters/__init__.py +1 -0
  57. dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  58. dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
  59. dlubal/api/rfem/guide_objects/__init__.py +10 -0
  60. dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  61. dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
  62. dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
  63. dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
  64. dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  65. dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
  66. dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  67. dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
  68. dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
  69. dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
  70. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  71. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  72. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  73. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  74. dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  75. dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
  76. dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  77. dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
  78. dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  79. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
  80. dlubal/api/rfem/imperfections/__init__.py +5 -0
  81. dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
  82. dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
  83. dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
  84. dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
  85. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
  86. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
  87. dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  88. dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
  89. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  90. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
  91. dlubal/api/rfem/load_wizards/__init__.py +2 -0
  92. dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
  93. dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
  94. dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
  95. dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
  96. dlubal/api/rfem/loading/__init__.py +15 -0
  97. dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
  98. dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
  99. dlubal/api/rfem/loading/action_pb2.py +42 -0
  100. dlubal/api/rfem/loading/action_pb2.pyi +80 -0
  101. dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
  102. dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
  103. dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
  104. dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
  105. dlubal/api/rfem/loading/load_case_pb2.py +77 -0
  106. dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
  107. dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
  108. dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
  109. dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
  110. dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
  111. dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
  112. dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
  113. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  114. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
  115. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
  116. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
  117. dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
  118. dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
  119. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  120. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
  121. dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  122. dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
  123. dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  124. dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
  125. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  126. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  127. dlubal/api/rfem/loads/__init__.py +17 -0
  128. dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  129. dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
  130. dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  131. dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
  132. dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  133. dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
  134. dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
  135. dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
  136. dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
  137. dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
  138. dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  139. dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  140. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  141. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  142. dlubal/api/rfem/loads/line_load_pb2.py +46 -0
  143. dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
  144. dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
  145. dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
  146. dlubal/api/rfem/loads/member_load_pb2.py +67 -0
  147. dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
  148. dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
  149. dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
  150. dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  151. dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
  152. dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
  153. dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
  154. dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  155. dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
  156. dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  157. dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
  158. dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
  159. dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
  160. dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
  161. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
  162. dlubal/api/rfem/packing.py +45 -0
  163. dlubal/api/rfem/result_objects/__init__.py +1 -0
  164. dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  165. dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
  166. dlubal/api/rfem/results/__init__.py +2 -0
  167. dlubal/api/rfem/results/results_id_pb2.py +36 -0
  168. dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
  169. dlubal/api/rfem/results/results_query_pb2.py +40 -0
  170. dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  171. dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  172. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  173. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  174. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  175. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  176. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  177. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  178. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  179. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  180. dlubal/api/rfem/structure_advanced/__init__.py +9 -0
  181. dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  182. dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
  183. dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  184. dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  185. dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
  186. dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
  187. dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  188. dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
  189. dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  190. dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
  191. dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
  192. dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
  193. dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  194. dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
  195. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
  196. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
  197. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  198. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  199. dlubal/api/rfem/structure_core/__init__.py +15 -0
  200. dlubal/api/rfem/structure_core/line_pb2.py +53 -0
  201. dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
  202. dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  203. dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
  204. dlubal/api/rfem/structure_core/material_pb2.py +100 -0
  205. dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
  206. dlubal/api/rfem/structure_core/member_pb2.py +79 -0
  207. dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
  208. dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
  209. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
  210. dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
  211. dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
  212. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
  213. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
  214. dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  215. dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
  216. dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  217. dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  218. dlubal/api/rfem/structure_core/section_pb2.py +66 -0
  219. dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
  220. dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  221. dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
  222. dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  223. dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
  224. dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
  225. dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
  226. dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
  227. dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
  228. dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  229. dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
  230. dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  231. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  232. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  233. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  234. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  235. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  236. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  237. dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
  238. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
  239. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
  240. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
  241. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
  242. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
  243. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
  244. dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  245. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  246. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
  247. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
  248. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
  249. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  250. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
  251. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  252. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
  253. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
  254. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
  255. dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  256. dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
  257. dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
  258. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  259. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
  260. dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
  261. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
  262. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  263. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
  264. dlubal/api/rfem/types_for_members/__init__.py +13 -0
  265. dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  266. dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
  267. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  268. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  269. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  270. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
  271. dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
  272. dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
  273. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  274. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
  275. dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
  276. dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
  277. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
  278. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
  279. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
  280. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
  281. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  282. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
  283. dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
  284. dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
  285. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  286. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
  287. dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  288. dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
  289. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
  290. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
  291. dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
  292. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  293. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
  294. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
  295. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
  296. dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  297. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  298. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
  299. dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  300. dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  301. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  302. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  303. dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  304. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
  305. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
  306. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
  307. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
  308. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
  309. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
  310. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  311. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
  312. dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
  313. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
  314. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
  315. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
  316. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
  317. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
  318. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
  319. dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  320. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  321. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
  322. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  323. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  324. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  325. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
  326. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  327. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
  328. dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
  329. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
  330. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
  331. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
  332. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
  333. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  334. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
  335. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  336. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
  337. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  338. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
  339. dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
  340. dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
  341. dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
  342. dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,40 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class ClippingBox(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "coordinate_system", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "dimensions", "dimension_x", "dimension_y", "dimension_z", "comment", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
12
+ NAME_FIELD_NUMBER: _ClassVar[int]
13
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
14
+ ORIGIN_COORDINATES_FIELD_NUMBER: _ClassVar[int]
15
+ ORIGIN_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
16
+ ORIGIN_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
17
+ ORIGIN_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
18
+ DIMENSIONS_FIELD_NUMBER: _ClassVar[int]
19
+ DIMENSION_X_FIELD_NUMBER: _ClassVar[int]
20
+ DIMENSION_Y_FIELD_NUMBER: _ClassVar[int]
21
+ DIMENSION_Z_FIELD_NUMBER: _ClassVar[int]
22
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
23
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
24
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
25
+ no: int
26
+ user_defined_name_enabled: bool
27
+ name: str
28
+ coordinate_system: int
29
+ origin_coordinates: _common_pb2.Vector3d
30
+ origin_coordinate_x: float
31
+ origin_coordinate_y: float
32
+ origin_coordinate_z: float
33
+ dimensions: _common_pb2.Vector3d
34
+ dimension_x: float
35
+ dimension_y: float
36
+ dimension_z: float
37
+ comment: str
38
+ id_for_export_import: str
39
+ metadata_for_export_import: str
40
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., coordinate_system: _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] = ..., dimensions: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., dimension_x: _Optional[float] = ..., dimension_y: _Optional[float] = ..., dimension_z: _Optional[float] = ..., comment: _Optional[str] = ..., 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/clipping_plane.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/clipping_plane.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'\n2dlubal/api/rfem/guide_objects/clipping_plane.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xbb\x0f\n\rClippingPlane\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x43\n\x04type\x18\x02 \x01(\x0e\x32\x30.dlubal.api.rfem.guide_objects.ClippingPlaneTypeH\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\x11\x63oordinate_system\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12!\n\x14invert_clipping_side\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x07 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\t \x01(\x01H\x07\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\n \x01(\x01H\x08\x88\x01\x01\x12\x42\n\x18u_axis_point_coordinates\x18\x0b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12&\n\x19u_axis_point_coordinate_x\x18\x0c \x01(\x01H\n\x88\x01\x01\x12&\n\x19u_axis_point_coordinate_y\x18\r \x01(\x01H\x0b\x88\x01\x01\x12&\n\x19u_axis_point_coordinate_z\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12J\n clipping_plane_point_coordinates\x18\x0f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\r\x88\x01\x01\x12.\n!clipping_plane_point_coordinate_x\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12.\n!clipping_plane_point_coordinate_y\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12.\n!clipping_plane_point_coordinate_z\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12!\n\x14\x63lipping_plane_angle\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12i\n\x18rotation_angles_sequence\x18\x14 \x01(\x0e\x32\x42.dlubal.api.rfem.guide_objects.ClippingPlaneRotationAnglesSequenceH\x12\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x1d\n\x10rotation_angle_3\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12Q\n\x0borientation\x18\x18 \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.ClippingPlaneOrientationH\x16\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1a \x01(\x08H\x18\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1b \x01(\tH\x19\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1c \x01(\tH\x1a\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1d \x01(\tH\x1b\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x14\n\x12_coordinate_systemB\x17\n\x15_invert_clipping_sideB\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_u_axis_point_coordinatesB\x1c\n\x1a_u_axis_point_coordinate_xB\x1c\n\x1a_u_axis_point_coordinate_yB\x1c\n\x1a_u_axis_point_coordinate_zB#\n!_clipping_plane_point_coordinatesB$\n\"_clipping_plane_point_coordinate_xB$\n\"_clipping_plane_point_coordinate_yB$\n\"_clipping_plane_point_coordinate_zB\x17\n\x15_clipping_plane_angleB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x13\n\x11_rotation_angle_3B\x0e\n\x0c_orientationB\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*\xd2\x01\n\x11\x43lippingPlaneType\x12\x1f\n\x1b\x43LIPPING_PLANE_TYPE_UNKNOWN\x10\x00\x12*\n&CLIPPING_PLANE_TYPE_2_POINTS_AND_ANGLE\x10\x03\x12 \n\x1c\x43LIPPING_PLANE_TYPE_3_POINTS\x10\x02\x12\"\n\x1e\x43LIPPING_PLANE_TYPE_OFFSET_XYZ\x10\x01\x12*\n&CLIPPING_PLANE_TYPE_POINT_AND_3_ANGLES\x10\x04*\xc4\x04\n#ClippingPlaneRotationAnglesSequence\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_UVW\x10\x00\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_UWV\x10\x01\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_VUW\x10\x02\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_VWU\x10\x03\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_WUV\x10\x04\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_WVU\x10\x05\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12/\n+CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\x1a\x02\x10\x01*\xa7\x01\n\x18\x43lippingPlaneOrientation\x12-\n)CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_XY\x10\x00\x12-\n)CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_XZ\x10\x02\x12-\n)CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_YZ\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.clipping_plane_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_CLIPPINGPLANEROTATIONANGLESSEQUENCE']._loaded_options = None
36
+ _globals['_CLIPPINGPLANEROTATIONANGLESSEQUENCE']._serialized_options = b'\020\001'
37
+ _globals['_CLIPPINGPLANETYPE']._serialized_start=2100
38
+ _globals['_CLIPPINGPLANETYPE']._serialized_end=2310
39
+ _globals['_CLIPPINGPLANEROTATIONANGLESSEQUENCE']._serialized_start=2313
40
+ _globals['_CLIPPINGPLANEROTATIONANGLESSEQUENCE']._serialized_end=2893
41
+ _globals['_CLIPPINGPLANEORIENTATION']._serialized_start=2896
42
+ _globals['_CLIPPINGPLANEORIENTATION']._serialized_end=3063
43
+ _globals['_CLIPPINGPLANE']._serialized_start=118
44
+ _globals['_CLIPPINGPLANE']._serialized_end=2097
45
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,116 @@
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 ClippingPlaneType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ CLIPPING_PLANE_TYPE_UNKNOWN: _ClassVar[ClippingPlaneType]
12
+ CLIPPING_PLANE_TYPE_2_POINTS_AND_ANGLE: _ClassVar[ClippingPlaneType]
13
+ CLIPPING_PLANE_TYPE_3_POINTS: _ClassVar[ClippingPlaneType]
14
+ CLIPPING_PLANE_TYPE_OFFSET_XYZ: _ClassVar[ClippingPlaneType]
15
+ CLIPPING_PLANE_TYPE_POINT_AND_3_ANGLES: _ClassVar[ClippingPlaneType]
16
+
17
+ class ClippingPlaneRotationAnglesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
18
+ __slots__ = ()
19
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_UVW: _ClassVar[ClippingPlaneRotationAnglesSequence]
20
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_UWV: _ClassVar[ClippingPlaneRotationAnglesSequence]
21
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_VUW: _ClassVar[ClippingPlaneRotationAnglesSequence]
22
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_VWU: _ClassVar[ClippingPlaneRotationAnglesSequence]
23
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_WUV: _ClassVar[ClippingPlaneRotationAnglesSequence]
24
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_WVU: _ClassVar[ClippingPlaneRotationAnglesSequence]
25
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_XZY: _ClassVar[ClippingPlaneRotationAnglesSequence]
26
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_YXZ: _ClassVar[ClippingPlaneRotationAnglesSequence]
27
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_YZX: _ClassVar[ClippingPlaneRotationAnglesSequence]
28
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_ZXY: _ClassVar[ClippingPlaneRotationAnglesSequence]
29
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_ZYX: _ClassVar[ClippingPlaneRotationAnglesSequence]
30
+
31
+ class ClippingPlaneOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
32
+ __slots__ = ()
33
+ CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_XY: _ClassVar[ClippingPlaneOrientation]
34
+ CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_XZ: _ClassVar[ClippingPlaneOrientation]
35
+ CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_YZ: _ClassVar[ClippingPlaneOrientation]
36
+ CLIPPING_PLANE_TYPE_UNKNOWN: ClippingPlaneType
37
+ CLIPPING_PLANE_TYPE_2_POINTS_AND_ANGLE: ClippingPlaneType
38
+ CLIPPING_PLANE_TYPE_3_POINTS: ClippingPlaneType
39
+ CLIPPING_PLANE_TYPE_OFFSET_XYZ: ClippingPlaneType
40
+ CLIPPING_PLANE_TYPE_POINT_AND_3_ANGLES: ClippingPlaneType
41
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_UVW: ClippingPlaneRotationAnglesSequence
42
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_UWV: ClippingPlaneRotationAnglesSequence
43
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_VUW: ClippingPlaneRotationAnglesSequence
44
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_VWU: ClippingPlaneRotationAnglesSequence
45
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_WUV: ClippingPlaneRotationAnglesSequence
46
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_WVU: ClippingPlaneRotationAnglesSequence
47
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_XZY: ClippingPlaneRotationAnglesSequence
48
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_YXZ: ClippingPlaneRotationAnglesSequence
49
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_YZX: ClippingPlaneRotationAnglesSequence
50
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_ZXY: ClippingPlaneRotationAnglesSequence
51
+ CLIPPING_PLANE_ROTATION_ANGLES_SEQUENCE_ZYX: ClippingPlaneRotationAnglesSequence
52
+ CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_XY: ClippingPlaneOrientation
53
+ CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_XZ: ClippingPlaneOrientation
54
+ CLIPPING_PLANE_ORIENTATION_PARALLEL_TO_YZ: ClippingPlaneOrientation
55
+
56
+ class ClippingPlane(_message.Message):
57
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "coordinate_system", "invert_clipping_side", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "u_axis_point_coordinates", "u_axis_point_coordinate_x", "u_axis_point_coordinate_y", "u_axis_point_coordinate_z", "clipping_plane_point_coordinates", "clipping_plane_point_coordinate_x", "clipping_plane_point_coordinate_y", "clipping_plane_point_coordinate_z", "clipping_plane_angle", "rotation_angles_sequence", "rotation_angle_1", "rotation_angle_2", "rotation_angle_3", "orientation", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
58
+ NO_FIELD_NUMBER: _ClassVar[int]
59
+ TYPE_FIELD_NUMBER: _ClassVar[int]
60
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
61
+ NAME_FIELD_NUMBER: _ClassVar[int]
62
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
63
+ INVERT_CLIPPING_SIDE_FIELD_NUMBER: _ClassVar[int]
64
+ ORIGIN_COORDINATES_FIELD_NUMBER: _ClassVar[int]
65
+ ORIGIN_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
66
+ ORIGIN_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
67
+ ORIGIN_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
68
+ U_AXIS_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
69
+ U_AXIS_POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
70
+ U_AXIS_POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
71
+ U_AXIS_POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
72
+ CLIPPING_PLANE_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
73
+ CLIPPING_PLANE_POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
74
+ CLIPPING_PLANE_POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
75
+ CLIPPING_PLANE_POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
76
+ CLIPPING_PLANE_ANGLE_FIELD_NUMBER: _ClassVar[int]
77
+ ROTATION_ANGLES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
78
+ ROTATION_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
79
+ ROTATION_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
80
+ ROTATION_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
81
+ ORIENTATION_FIELD_NUMBER: _ClassVar[int]
82
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
83
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
84
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
85
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
86
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
87
+ no: int
88
+ type: ClippingPlaneType
89
+ user_defined_name_enabled: bool
90
+ name: str
91
+ coordinate_system: int
92
+ invert_clipping_side: bool
93
+ origin_coordinates: _common_pb2.Vector3d
94
+ origin_coordinate_x: float
95
+ origin_coordinate_y: float
96
+ origin_coordinate_z: float
97
+ u_axis_point_coordinates: _common_pb2.Vector3d
98
+ u_axis_point_coordinate_x: float
99
+ u_axis_point_coordinate_y: float
100
+ u_axis_point_coordinate_z: float
101
+ clipping_plane_point_coordinates: _common_pb2.Vector3d
102
+ clipping_plane_point_coordinate_x: float
103
+ clipping_plane_point_coordinate_y: float
104
+ clipping_plane_point_coordinate_z: float
105
+ clipping_plane_angle: float
106
+ rotation_angles_sequence: ClippingPlaneRotationAnglesSequence
107
+ rotation_angle_1: float
108
+ rotation_angle_2: float
109
+ rotation_angle_3: float
110
+ orientation: ClippingPlaneOrientation
111
+ comment: str
112
+ is_generated: bool
113
+ generating_object_info: str
114
+ id_for_export_import: str
115
+ metadata_for_export_import: str
116
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[ClippingPlaneType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., invert_clipping_side: bool = ..., origin_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., u_axis_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., u_axis_point_coordinate_x: _Optional[float] = ..., u_axis_point_coordinate_y: _Optional[float] = ..., u_axis_point_coordinate_z: _Optional[float] = ..., clipping_plane_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., clipping_plane_point_coordinate_x: _Optional[float] = ..., clipping_plane_point_coordinate_y: _Optional[float] = ..., clipping_plane_point_coordinate_z: _Optional[float] = ..., clipping_plane_angle: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[ClippingPlaneRotationAnglesSequence, str]] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., rotation_angle_3: _Optional[float] = ..., orientation: _Optional[_Union[ClippingPlaneOrientation, str]] = ..., 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,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/coordinate_system.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/coordinate_system.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'\n5dlubal/api/rfem/guide_objects/coordinate_system.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xb3\r\n\x10\x43oordinateSystem\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x46\n\x04type\x18\x02 \x01(\x0e\x32\x33.dlubal.api.rfem.guide_objects.CoordinateSystemTypeH\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<\n\x12origin_coordinates\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x03\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x42\n\x18u_axis_point_coordinates\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12&\n\x19u_axis_point_coordinate_x\x18\n \x01(\x01H\x08\x88\x01\x01\x12&\n\x19u_axis_point_coordinate_y\x18\x0b \x01(\x01H\t\x88\x01\x01\x12&\n\x19u_axis_point_coordinate_z\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x44\n\x1auw_plane_point_coordinates\x18\r \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0b\x88\x01\x01\x12(\n\x1buw_plane_point_coordinate_x\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12(\n\x1buw_plane_point_coordinate_y\x18\x0f \x01(\x01H\r\x88\x01\x01\x12(\n\x1buw_plane_point_coordinate_z\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x1b\n\x0euw_plane_angle\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12l\n\x18rotation_angles_sequence\x18\x12 \x01(\x0e\x32\x45.dlubal.api.rfem.guide_objects.CoordinateSystemRotationAnglesSequenceH\x10\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x1d\n\x10rotation_angle_3\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x16 \x01(\tH\x14\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12#\n\x16generating_object_info\x18\x18 \x01(\tH\x16\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1a \x01(\tH\x18\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\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_u_axis_point_coordinatesB\x1c\n\x1a_u_axis_point_coordinate_xB\x1c\n\x1a_u_axis_point_coordinate_yB\x1c\n\x1a_u_axis_point_coordinate_zB\x1d\n\x1b_uw_plane_point_coordinatesB\x1e\n\x1c_uw_plane_point_coordinate_xB\x1e\n\x1c_uw_plane_point_coordinate_yB\x1e\n\x1c_uw_plane_point_coordinate_zB\x11\n\x0f_uw_plane_angleB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x13\n\x11_rotation_angle_3B\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*\x8b\x02\n\x14\x43oordinateSystemType\x12\"\n\x1e\x43OORDINATE_SYSTEM_TYPE_UNKNOWN\x10\x00\x12-\n)COORDINATE_SYSTEM_TYPE_2_POINTS_AND_ANGLE\x10\x04\x12#\n\x1f\x43OORDINATE_SYSTEM_TYPE_3_POINTS\x10\x03\x12%\n!COORDINATE_SYSTEM_TYPE_GLOBAL_XYZ\x10\x01\x12%\n!COORDINATE_SYSTEM_TYPE_OFFSET_XYZ\x10\x02\x12-\n)COORDINATE_SYSTEM_TYPE_POINT_AND_3_ANGLES\x10\x05*\xe0\x02\n&CoordinateSystemRotationAnglesSequence\x12\x32\n.COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_XYZ\x10\x00\x12\x32\n.COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12\x32\n.COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12\x32\n.COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12\x32\n.COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12\x32\n.COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.coordinate_system_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_COORDINATESYSTEMTYPE']._serialized_start=1839
36
+ _globals['_COORDINATESYSTEMTYPE']._serialized_end=2106
37
+ _globals['_COORDINATESYSTEMROTATIONANGLESSEQUENCE']._serialized_start=2109
38
+ _globals['_COORDINATESYSTEMROTATIONANGLESSEQUENCE']._serialized_end=2461
39
+ _globals['_COORDINATESYSTEM']._serialized_start=121
40
+ _globals['_COORDINATESYSTEM']._serialized_end=1836
41
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,93 @@
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 CoordinateSystemType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ COORDINATE_SYSTEM_TYPE_UNKNOWN: _ClassVar[CoordinateSystemType]
12
+ COORDINATE_SYSTEM_TYPE_2_POINTS_AND_ANGLE: _ClassVar[CoordinateSystemType]
13
+ COORDINATE_SYSTEM_TYPE_3_POINTS: _ClassVar[CoordinateSystemType]
14
+ COORDINATE_SYSTEM_TYPE_GLOBAL_XYZ: _ClassVar[CoordinateSystemType]
15
+ COORDINATE_SYSTEM_TYPE_OFFSET_XYZ: _ClassVar[CoordinateSystemType]
16
+ COORDINATE_SYSTEM_TYPE_POINT_AND_3_ANGLES: _ClassVar[CoordinateSystemType]
17
+
18
+ class CoordinateSystemRotationAnglesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
19
+ __slots__ = ()
20
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_XYZ: _ClassVar[CoordinateSystemRotationAnglesSequence]
21
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_XZY: _ClassVar[CoordinateSystemRotationAnglesSequence]
22
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_YXZ: _ClassVar[CoordinateSystemRotationAnglesSequence]
23
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_YZX: _ClassVar[CoordinateSystemRotationAnglesSequence]
24
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_ZXY: _ClassVar[CoordinateSystemRotationAnglesSequence]
25
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_ZYX: _ClassVar[CoordinateSystemRotationAnglesSequence]
26
+ COORDINATE_SYSTEM_TYPE_UNKNOWN: CoordinateSystemType
27
+ COORDINATE_SYSTEM_TYPE_2_POINTS_AND_ANGLE: CoordinateSystemType
28
+ COORDINATE_SYSTEM_TYPE_3_POINTS: CoordinateSystemType
29
+ COORDINATE_SYSTEM_TYPE_GLOBAL_XYZ: CoordinateSystemType
30
+ COORDINATE_SYSTEM_TYPE_OFFSET_XYZ: CoordinateSystemType
31
+ COORDINATE_SYSTEM_TYPE_POINT_AND_3_ANGLES: CoordinateSystemType
32
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_XYZ: CoordinateSystemRotationAnglesSequence
33
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_XZY: CoordinateSystemRotationAnglesSequence
34
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_YXZ: CoordinateSystemRotationAnglesSequence
35
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_YZX: CoordinateSystemRotationAnglesSequence
36
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_ZXY: CoordinateSystemRotationAnglesSequence
37
+ COORDINATE_SYSTEM_ROTATION_ANGLES_SEQUENCE_ZYX: CoordinateSystemRotationAnglesSequence
38
+
39
+ class CoordinateSystem(_message.Message):
40
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "u_axis_point_coordinates", "u_axis_point_coordinate_x", "u_axis_point_coordinate_y", "u_axis_point_coordinate_z", "uw_plane_point_coordinates", "uw_plane_point_coordinate_x", "uw_plane_point_coordinate_y", "uw_plane_point_coordinate_z", "uw_plane_angle", "rotation_angles_sequence", "rotation_angle_1", "rotation_angle_2", "rotation_angle_3", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
41
+ NO_FIELD_NUMBER: _ClassVar[int]
42
+ TYPE_FIELD_NUMBER: _ClassVar[int]
43
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
44
+ NAME_FIELD_NUMBER: _ClassVar[int]
45
+ ORIGIN_COORDINATES_FIELD_NUMBER: _ClassVar[int]
46
+ ORIGIN_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
47
+ ORIGIN_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
48
+ ORIGIN_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
49
+ U_AXIS_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
50
+ U_AXIS_POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
51
+ U_AXIS_POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
52
+ U_AXIS_POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
53
+ UW_PLANE_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
54
+ UW_PLANE_POINT_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
55
+ UW_PLANE_POINT_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
56
+ UW_PLANE_POINT_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
57
+ UW_PLANE_ANGLE_FIELD_NUMBER: _ClassVar[int]
58
+ ROTATION_ANGLES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
59
+ ROTATION_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
60
+ ROTATION_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
61
+ ROTATION_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
62
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
63
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
64
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
65
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
66
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
67
+ no: int
68
+ type: CoordinateSystemType
69
+ user_defined_name_enabled: bool
70
+ name: str
71
+ origin_coordinates: _common_pb2.Vector3d
72
+ origin_coordinate_x: float
73
+ origin_coordinate_y: float
74
+ origin_coordinate_z: float
75
+ u_axis_point_coordinates: _common_pb2.Vector3d
76
+ u_axis_point_coordinate_x: float
77
+ u_axis_point_coordinate_y: float
78
+ u_axis_point_coordinate_z: float
79
+ uw_plane_point_coordinates: _common_pb2.Vector3d
80
+ uw_plane_point_coordinate_x: float
81
+ uw_plane_point_coordinate_y: float
82
+ uw_plane_point_coordinate_z: float
83
+ uw_plane_angle: float
84
+ rotation_angles_sequence: CoordinateSystemRotationAnglesSequence
85
+ rotation_angle_1: float
86
+ rotation_angle_2: float
87
+ rotation_angle_3: float
88
+ comment: str
89
+ is_generated: bool
90
+ generating_object_info: str
91
+ id_for_export_import: str
92
+ metadata_for_export_import: str
93
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[CoordinateSystemType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., origin_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., u_axis_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., u_axis_point_coordinate_x: _Optional[float] = ..., u_axis_point_coordinate_y: _Optional[float] = ..., u_axis_point_coordinate_z: _Optional[float] = ..., uw_plane_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., uw_plane_point_coordinate_x: _Optional[float] = ..., uw_plane_point_coordinate_y: _Optional[float] = ..., uw_plane_point_coordinate_z: _Optional[float] = ..., uw_plane_angle: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[CoordinateSystemRotationAnglesSequence, str]] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., rotation_angle_3: _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,61 @@
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/dimension.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/dimension.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/dimension.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xed(\n\tDimension\x12\n\n\x02no\x18\x01 \x01(\x05\x12?\n\x04type\x18\x02 \x01(\x0e\x32,.dlubal.api.rfem.guide_objects.DimensionTypeH\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%\n\x18\x64isplay_properties_index\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\"\n\x15\x64imension_line_offset\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12(\n\x1bis_custom_vertical_position\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12\x65\n\x18\x63ustom_vertical_position\x18\x08 \x01(\x0e\x32>.dlubal.api.rfem.guide_objects.DimensionCustomVerticalPositionH\x06\x88\x01\x01\x12*\n\x1dis_custom_horizontal_position\x18\t \x01(\x08H\x07\x88\x01\x01\x12i\n\x1a\x63ustom_horizontal_position\x18\n \x01(\x0e\x32@.dlubal.api.rfem.guide_objects.DimensionCustomHorizontalPositionH\x08\x88\x01\x01\x12\x13\n\x06symbol\x18\x0b \x01(\tH\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\n\x88\x01\x01\x12\x1c\n\x0fmeasured_length\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x18\n\x10measured_lengths\x18\x0e \x03(\x05\x12\x1b\n\x0emeasured_angle\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x17\n\x0fmeasured_angles\x18\x10 \x03(\x05\x12\x1b\n\x0emeasured_slope\x18\x11 \x01(\x01H\r\x88\x01\x01\x12,\n\x1fis_global_dimension_line_offset\x18\x12 \x01(\x08H\x0e\x88\x01\x01\x12%\n\x18linear_coordinate_system\x18\x13 \x01(\x05H\x0f\x88\x01\x01\x12V\n\x10linear_reference\x18\x14 \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.DimensionLinearReferenceH\x10\x88\x01\x01\x12N\n\x0clinear_plane\x18\x15 \x01(\x0e\x32\x33.dlubal.api.rfem.guide_objects.DimensionLinearPlaneH\x11\x88\x01\x01\x12M\n#linear_global_dimension_line_offset\x18\x16 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x12\x88\x01\x01\x12\x32\n%linear_global_dimension_line_offset_x\x18\x17 \x01(\x01H\x13\x88\x01\x01\x12\x32\n%linear_global_dimension_line_offset_y\x18\x18 \x01(\x01H\x14\x88\x01\x01\x12\x32\n%linear_global_dimension_line_offset_z\x18\x19 \x01(\x01H\x15\x88\x01\x01\x12h\n\x16linear_reference_table\x18\x1a \x01(\x0b\x32\x43.dlubal.api.rfem.guide_objects.ArrayOfDimensionLinearReferenceTableH\x16\x88\x01\x01\x12&\n\x19\x61rc_length_reference_line\x18\x1b \x01(\x05H\x17\x88\x01\x01\x12o\n\x1a\x61rc_length_reference_table\x18\x1c \x01(\x0b\x32\x46.dlubal.api.rfem.guide_objects.ArrayOfDimensionArcLengthReferenceTableH\x18\x88\x01\x01\x12.\n!arc_length_angle_greater_than_180\x18\x1d \x01(\x08H\x19\x88\x01\x01\x12j\n\x17\x61ngular_reference_table\x18\x1e \x01(\x0b\x32\x44.dlubal.api.rfem.guide_objects.ArrayOfDimensionAngularReferenceTableH\x1a\x88\x01\x01\x12V\n\x10\x61ngular_quadrant\x18\x1f \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.DimensionAngularQuadrantH\x1b\x88\x01\x01\x12+\n\x1e\x61ngular_angle_greater_than_180\x18 \x01(\x08H\x1c\x88\x01\x01\x12+\n\x1eradius_diameter_reference_line\x18! \x01(\x05H\x1d\x88\x01\x01\x12,\n\x1fradius_diameter_is_target_point\x18\" \x01(\x08H\x1e\x88\x01\x01\x12R\n(radius_diameter_target_point_coordinates\x18# \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1f\x88\x01\x01\x12\x36\n)radius_diameter_target_point_coordinate_x\x18$ \x01(\x01H \x88\x01\x01\x12\x36\n)radius_diameter_target_point_coordinate_y\x18% \x01(\x01H!\x88\x01\x01\x12\x36\n)radius_diameter_target_point_coordinate_z\x18& \x01(\x01H\"\x88\x01\x01\x12-\n radius_diameter_position_on_line\x18\' \x01(\x01H#\x88\x01\x01\x12$\n\x17slope_coordinate_system\x18( \x01(\x05H$\x88\x01\x01\x12L\n\x0bslope_plane\x18) \x01(\x0e\x32\x32.dlubal.api.rfem.guide_objects.DimensionSlopePlaneH%\x88\x01\x01\x12!\n\x14slope_reference_line\x18* \x01(\x05H&\x88\x01\x01\x12T\n\x0fslope_direction\x18+ \x01(\x0e\x32\x36.dlubal.api.rfem.guide_objects.DimensionSlopeDirectionH\'\x88\x01\x01\x12/\n\"slope_refer_distance_from_line_end\x18, \x01(\x08H(\x88\x01\x01\x12\'\n\x1aslope_position_is_relative\x18- \x01(\x08H)\x88\x01\x01\x12$\n\x17slope_position_absolute\x18. \x01(\x01H*\x88\x01\x01\x12$\n\x17slope_position_relative\x18/ \x01(\x01H+\x88\x01\x01\x12r\n\x1f\x65levation_reference_object_type\x18\x30 \x01(\x0e\x32\x44.dlubal.api.rfem.guide_objects.DimensionElevationReferenceObjectTypeH,\x88\x01\x01\x12(\n\x1b\x65levation_reference_surface\x18\x31 \x01(\x05H-\x88\x01\x01\x12%\n\x18\x65levation_reference_node\x18\x32 \x01(\x05H.\x88\x01\x01\x12.\n!elevation_reference_control_point\x18\x33 \x01(\x05H/\x88\x01\x01\x12O\n%elevation_reference_point_coordinates\x18\x34 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH0\x88\x01\x01\x12\x33\n&elevation_reference_point_coordinate_x\x18\x35 \x01(\x01H1\x88\x01\x01\x12\x33\n&elevation_reference_point_coordinate_y\x18\x36 \x01(\x01H2\x88\x01\x01\x12\x33\n&elevation_reference_point_coordinate_z\x18\x37 \x01(\x01H3\x88\x01\x01\x12\x34\n\'elevation_distance_from_picked_position\x18\x38 \x01(\x01H4\x88\x01\x01\x12(\n\x1b\x65levation_rotation_around_z\x18\x39 \x01(\x01H5\x88\x01\x01\x12-\n elevation_reference_level_height\x18: \x01(\x01H6\x88\x01\x01\x12\"\n\x15\x65levation_is_altitude\x18; \x01(\x08H7\x88\x01\x01\x12\x1f\n\x12\x65levation_altitude\x18< \x01(\x01H8\x88\x01\x01\x12\x19\n\x0cis_generated\x18= \x01(\x08H9\x88\x01\x01\x12#\n\x16generating_object_info\x18> \x01(\tH:\x88\x01\x01\x12!\n\x14id_for_export_import\x18? \x01(\tH;\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\x1b\n\x19_display_properties_indexB\x18\n\x16_dimension_line_offsetB\x1e\n\x1c_is_custom_vertical_positionB\x1b\n\x19_custom_vertical_positionB \n\x1e_is_custom_horizontal_positionB\x1d\n\x1b_custom_horizontal_positionB\t\n\x07_symbolB\n\n\x08_commentB\x12\n\x10_measured_lengthB\x11\n\x0f_measured_angleB\x11\n\x0f_measured_slopeB\"\n _is_global_dimension_line_offsetB\x1b\n\x19_linear_coordinate_systemB\x13\n\x11_linear_referenceB\x0f\n\r_linear_planeB&\n$_linear_global_dimension_line_offsetB(\n&_linear_global_dimension_line_offset_xB(\n&_linear_global_dimension_line_offset_yB(\n&_linear_global_dimension_line_offset_zB\x19\n\x17_linear_reference_tableB\x1c\n\x1a_arc_length_reference_lineB\x1d\n\x1b_arc_length_reference_tableB$\n\"_arc_length_angle_greater_than_180B\x1a\n\x18_angular_reference_tableB\x13\n\x11_angular_quadrantB!\n\x1f_angular_angle_greater_than_180B!\n\x1f_radius_diameter_reference_lineB\"\n _radius_diameter_is_target_pointB+\n)_radius_diameter_target_point_coordinatesB,\n*_radius_diameter_target_point_coordinate_xB,\n*_radius_diameter_target_point_coordinate_yB,\n*_radius_diameter_target_point_coordinate_zB#\n!_radius_diameter_position_on_lineB\x1a\n\x18_slope_coordinate_systemB\x0e\n\x0c_slope_planeB\x17\n\x15_slope_reference_lineB\x12\n\x10_slope_directionB%\n#_slope_refer_distance_from_line_endB\x1d\n\x1b_slope_position_is_relativeB\x1a\n\x18_slope_position_absoluteB\x1a\n\x18_slope_position_relativeB\"\n _elevation_reference_object_typeB\x1e\n\x1c_elevation_reference_surfaceB\x1b\n\x19_elevation_reference_nodeB$\n\"_elevation_reference_control_pointB(\n&_elevation_reference_point_coordinatesB)\n\'_elevation_reference_point_coordinate_xB)\n\'_elevation_reference_point_coordinate_yB)\n\'_elevation_reference_point_coordinate_zB*\n(_elevation_distance_from_picked_positionB\x1e\n\x1c_elevation_rotation_around_zB#\n!_elevation_reference_level_heightB\x18\n\x16_elevation_is_altitudeB\x15\n\x13_elevation_altitudeB\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$ArrayOfDimensionLinearReferenceTable\")\n\'ArrayOfDimensionArcLengthReferenceTable\"\'\n%ArrayOfDimensionAngularReferenceTable*\xda\x02\n\rDimensionType\x12\x1a\n\x16\x44IMENSION_TYPE_UNKNOWN\x10\x00\x12)\n%DIMENSION_TYPE_DIMENSION_TYPE_ANGULAR\x10\x03\x12,\n(DIMENSION_TYPE_DIMENSION_TYPE_ARC_LENGTH\x10\x02\x12*\n&DIMENSION_TYPE_DIMENSION_TYPE_DIAMETER\x10\x05\x12+\n\'DIMENSION_TYPE_DIMENSION_TYPE_ELEVATION\x10\x07\x12(\n$DIMENSION_TYPE_DIMENSION_TYPE_LINEAR\x10\x01\x12(\n$DIMENSION_TYPE_DIMENSION_TYPE_RADIUS\x10\x04\x12\'\n#DIMENSION_TYPE_DIMENSION_TYPE_SLOPE\x10\x06*\xac\x01\n\x1f\x44imensionCustomVerticalPosition\x12-\n)DIMENSION_CUSTOM_VERTICAL_POSITION_CENTER\x10\x00\x12,\n(DIMENSION_CUSTOM_VERTICAL_POSITION_ABOVE\x10\x01\x12,\n(DIMENSION_CUSTOM_VERTICAL_POSITION_UNDER\x10\x02*\xb3\x01\n!DimensionCustomHorizontalPosition\x12/\n+DIMENSION_CUSTOM_HORIZONTAL_POSITION_CENTER\x10\x00\x12-\n)DIMENSION_CUSTOM_HORIZONTAL_POSITION_LEFT\x10\x01\x12.\n*DIMENSION_CUSTOM_HORIZONTAL_POSITION_RIGHT\x10\x02*\xd1\x01\n\x18\x44imensionLinearReference\x12%\n!DIMENSION_LINEAR_REFERENCE_LENGTH\x10\x00\x12.\n*DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_X\x10\x01\x12.\n*DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_Y\x10\x02\x12.\n*DIMENSION_LINEAR_REFERENCE_PROJECTION_IN_Z\x10\x03*[\n\x14\x44imensionLinearPlane\x12 \n\x1c\x44IMENSION_LINEAR_PLANE_FIRST\x10\x00\x12!\n\x1d\x44IMENSION_LINEAR_PLANE_SECOND\x10\x01*\xb7\x01\n\x18\x44imensionAngularQuadrant\x12\'\n#DIMENSION_ANGULAR_QUADRANT_POSITIVE\x10\x00\x12#\n\x1f\x44IMENSION_ANGULAR_QUADRANT_LEFT\x10\x02\x12\'\n#DIMENSION_ANGULAR_QUADRANT_NEGATIVE\x10\x01\x12$\n DIMENSION_ANGULAR_QUADRANT_RIGHT\x10\x03*o\n\x13\x44imensionSlopePlane\x12\x1c\n\x18\x44IMENSION_SLOPE_PLANE_XY\x10\x00\x12\x1c\n\x18\x44IMENSION_SLOPE_PLANE_XZ\x10\x02\x12\x1c\n\x18\x44IMENSION_SLOPE_PLANE_YZ\x10\x01*g\n\x17\x44imensionSlopeDirection\x12$\n DIMENSION_SLOPE_DIRECTION_UPWARD\x10\x00\x12&\n\"DIMENSION_SLOPE_DIRECTION_DOWNWARD\x10\x01*\x84\x02\n%DimensionElevationReferenceObjectType\x12\x35\n1DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_SURFACE\x10\x00\x12;\n7DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_CONTROL_POINT\x10\x03\x12\x32\n.DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_NODE\x10\x01\x12\x33\n/DIMENSION_ELEVATION_REFERENCE_OBJECT_TYPE_POINT\x10\x02\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.dimension_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_DIMENSIONTYPE']._serialized_start=5469
36
+ _globals['_DIMENSIONTYPE']._serialized_end=5815
37
+ _globals['_DIMENSIONCUSTOMVERTICALPOSITION']._serialized_start=5818
38
+ _globals['_DIMENSIONCUSTOMVERTICALPOSITION']._serialized_end=5990
39
+ _globals['_DIMENSIONCUSTOMHORIZONTALPOSITION']._serialized_start=5993
40
+ _globals['_DIMENSIONCUSTOMHORIZONTALPOSITION']._serialized_end=6172
41
+ _globals['_DIMENSIONLINEARREFERENCE']._serialized_start=6175
42
+ _globals['_DIMENSIONLINEARREFERENCE']._serialized_end=6384
43
+ _globals['_DIMENSIONLINEARPLANE']._serialized_start=6386
44
+ _globals['_DIMENSIONLINEARPLANE']._serialized_end=6477
45
+ _globals['_DIMENSIONANGULARQUADRANT']._serialized_start=6480
46
+ _globals['_DIMENSIONANGULARQUADRANT']._serialized_end=6663
47
+ _globals['_DIMENSIONSLOPEPLANE']._serialized_start=6665
48
+ _globals['_DIMENSIONSLOPEPLANE']._serialized_end=6776
49
+ _globals['_DIMENSIONSLOPEDIRECTION']._serialized_start=6778
50
+ _globals['_DIMENSIONSLOPEDIRECTION']._serialized_end=6881
51
+ _globals['_DIMENSIONELEVATIONREFERENCEOBJECTTYPE']._serialized_start=6884
52
+ _globals['_DIMENSIONELEVATIONREFERENCEOBJECTTYPE']._serialized_end=7144
53
+ _globals['_DIMENSION']._serialized_start=113
54
+ _globals['_DIMENSION']._serialized_end=5342
55
+ _globals['_ARRAYOFDIMENSIONLINEARREFERENCETABLE']._serialized_start=5344
56
+ _globals['_ARRAYOFDIMENSIONLINEARREFERENCETABLE']._serialized_end=5382
57
+ _globals['_ARRAYOFDIMENSIONARCLENGTHREFERENCETABLE']._serialized_start=5384
58
+ _globals['_ARRAYOFDIMENSIONARCLENGTHREFERENCETABLE']._serialized_end=5425
59
+ _globals['_ARRAYOFDIMENSIONANGULARREFERENCETABLE']._serialized_start=5427
60
+ _globals['_ARRAYOFDIMENSIONANGULARREFERENCETABLE']._serialized_end=5466
61
+ # @@protoc_insertion_point(module_scope)