fake-bpy-module 20240321__py3-none-any.whl → 20240322__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 fake-bpy-module might be problematic. Click here for more details.

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +330 -428
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86353 -87337
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -1,41 +1,58 @@
1
1
  import typing
2
- import bl_ui.space_toolsystem_common
3
2
  import bpy_types
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
- class IMAGE_PT_tools_active(
8
- bpy_types.Panel,
9
- bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
10
- bpy_types._GenericUI,
11
- ):
6
+ class IMAGE_PT_tools_active(bpy_types._GenericUI):
7
+ """ """
8
+
12
9
  bl_label: typing.Any
10
+ """ """
11
+
13
12
  bl_options: typing.Any
13
+ """ """
14
+
14
15
  bl_region_type: typing.Any
16
+ """ """
17
+
15
18
  bl_rna: typing.Any
19
+ """ """
20
+
16
21
  bl_space_type: typing.Any
22
+ """ """
23
+
17
24
  id_data: typing.Any
25
+ """ """
26
+
18
27
  keymap_prefix: typing.Any
28
+ """ """
29
+
19
30
  tool_fallback_id: typing.Any
31
+ """ """
20
32
 
21
33
  def append(self, draw_func):
22
34
  """
23
35
 
24
36
  :param draw_func:
25
- :type draw_func:
26
37
  """
27
38
  ...
28
39
 
29
- def as_pointer(self): ...
30
- def bl_rna_get_subclass(self): ...
31
- def bl_rna_get_subclass_py(self): ...
40
+ def as_pointer(self):
41
+ """ """
42
+ ...
43
+
44
+ def bl_rna_get_subclass(self):
45
+ """ """
46
+ ...
47
+
48
+ def bl_rna_get_subclass_py(self):
49
+ """ """
50
+ ...
51
+
32
52
  def draw(self, context):
33
53
  """
34
54
 
35
- :param self:
36
- :type self:
37
55
  :param context:
38
- :type context:
39
56
  """
40
57
  ...
41
58
 
@@ -43,13 +60,9 @@ class IMAGE_PT_tools_active(
43
60
  """
44
61
 
45
62
  :param context:
46
- :type context:
47
63
  :param layout:
48
- :type layout:
49
64
  :param tool:
50
- :type tool:
51
65
  :param is_horizontal_layout:
52
- :type is_horizontal_layout:
53
66
  """
54
67
  ...
55
68
 
@@ -57,13 +70,9 @@ class IMAGE_PT_tools_active(
57
70
  """
58
71
 
59
72
  :param context:
60
- :type context:
61
73
  :param layout:
62
- :type layout:
63
74
  :param show_tool_icon_always:
64
- :type show_tool_icon_always:
65
75
  :param tool_key:
66
- :type tool_key:
67
76
  """
68
77
  ...
69
78
 
@@ -71,13 +80,9 @@ class IMAGE_PT_tools_active(
71
80
  """
72
81
 
73
82
  :param layout:
74
- :type layout:
75
83
  :param context:
76
- :type context:
77
84
  :param detect_layout:
78
- :type detect_layout:
79
85
  :param scale_y:
80
- :type scale_y:
81
86
  """
82
87
  ...
83
88
 
@@ -85,9 +90,7 @@ class IMAGE_PT_tools_active(
85
90
  """
86
91
 
87
92
  :param layout:
88
- :type layout:
89
93
  :param context:
90
- :type context:
91
94
  """
92
95
  ...
93
96
 
@@ -95,55 +98,116 @@ class IMAGE_PT_tools_active(
95
98
  """
96
99
 
97
100
  :param layout:
98
- :type layout:
99
101
  :param context:
100
- :type context:
101
- """
102
- ...
103
-
104
- def driver_add(self): ...
105
- def driver_remove(self): ...
106
- def get(self): ...
107
- def id_properties_clear(self): ...
108
- def id_properties_ensure(self): ...
109
- def id_properties_ui(self): ...
110
- def is_extended(self): ...
111
- def is_property_hidden(self): ...
112
- def is_property_overridable_library(self): ...
113
- def is_property_readonly(self): ...
114
- def is_property_set(self): ...
115
- def items(self): ...
116
- def keyframe_delete(self): ...
117
- def keyframe_insert(self): ...
102
+ """
103
+ ...
104
+
105
+ def driver_add(self):
106
+ """ """
107
+ ...
108
+
109
+ def driver_remove(self):
110
+ """ """
111
+ ...
112
+
113
+ def get(self):
114
+ """ """
115
+ ...
116
+
117
+ def id_properties_clear(self):
118
+ """ """
119
+ ...
120
+
121
+ def id_properties_ensure(self):
122
+ """ """
123
+ ...
124
+
125
+ def id_properties_ui(self):
126
+ """ """
127
+ ...
128
+
129
+ def is_extended(self):
130
+ """ """
131
+ ...
132
+
133
+ def is_property_hidden(self):
134
+ """ """
135
+ ...
136
+
137
+ def is_property_overridable_library(self):
138
+ """ """
139
+ ...
140
+
141
+ def is_property_readonly(self):
142
+ """ """
143
+ ...
144
+
145
+ def is_property_set(self):
146
+ """ """
147
+ ...
148
+
149
+ def items(self):
150
+ """ """
151
+ ...
152
+
153
+ def keyframe_delete(self):
154
+ """ """
155
+ ...
156
+
157
+ def keyframe_insert(self):
158
+ """ """
159
+ ...
160
+
118
161
  def keymap_ui_hierarchy(self, context_mode):
119
162
  """
120
163
 
121
164
  :param context_mode:
122
- :type context_mode:
123
165
  """
124
166
  ...
125
167
 
126
- def keys(self): ...
127
- def path_from_id(self): ...
128
- def path_resolve(self): ...
129
- def pop(self): ...
168
+ def keys(self):
169
+ """ """
170
+ ...
171
+
172
+ def path_from_id(self):
173
+ """ """
174
+ ...
175
+
176
+ def path_resolve(self):
177
+ """ """
178
+ ...
179
+
180
+ def pop(self):
181
+ """ """
182
+ ...
183
+
130
184
  def prepend(self, draw_func):
131
185
  """
132
186
 
133
187
  :param draw_func:
134
- :type draw_func:
135
188
  """
136
189
  ...
137
190
 
138
- def property_overridable_library_set(self): ...
139
- def property_unset(self): ...
140
- def register(self): ...
141
- def register_ensure(self): ...
191
+ def property_overridable_library_set(self):
192
+ """ """
193
+ ...
194
+
195
+ def property_unset(self):
196
+ """ """
197
+ ...
198
+
199
+ def register(self):
200
+ """ """
201
+ ...
202
+
203
+ def register_ensure(self):
204
+ """ """
205
+ ...
206
+
142
207
  def remove(self, draw_func):
143
208
  """
144
209
 
145
210
  :param draw_func:
146
- :type draw_func:
147
211
  """
148
212
  ...
149
213
 
@@ -151,56 +215,79 @@ class IMAGE_PT_tools_active(
151
215
  """
152
216
 
153
217
  :param context:
154
- :type context:
155
218
  """
156
219
  ...
157
220
 
158
- def tools_all(self): ...
221
+ def tools_all(self):
222
+ """ """
223
+ ...
224
+
159
225
  def tools_from_context(self, context, mode):
160
226
  """
161
227
 
162
228
  :param context:
163
- :type context:
164
229
  :param mode:
165
- :type mode:
166
230
  """
167
231
  ...
168
232
 
169
- def type_recast(self): ...
170
- def values(self): ...
233
+ def type_recast(self):
234
+ """ """
235
+ ...
236
+
237
+ def values(self):
238
+ """ """
239
+ ...
240
+
241
+ class NODE_PT_tools_active(bpy_types._GenericUI):
242
+ """ """
171
243
 
172
- class NODE_PT_tools_active(
173
- bpy_types.Panel,
174
- bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
175
- bpy_types._GenericUI,
176
- ):
177
244
  bl_label: typing.Any
245
+ """ """
246
+
178
247
  bl_options: typing.Any
248
+ """ """
249
+
179
250
  bl_region_type: typing.Any
251
+ """ """
252
+
180
253
  bl_rna: typing.Any
254
+ """ """
255
+
181
256
  bl_space_type: typing.Any
257
+ """ """
258
+
182
259
  id_data: typing.Any
260
+ """ """
261
+
183
262
  keymap_prefix: typing.Any
263
+ """ """
264
+
184
265
  tool_fallback_id: typing.Any
266
+ """ """
185
267
 
186
268
  def append(self, draw_func):
187
269
  """
188
270
 
189
271
  :param draw_func:
190
- :type draw_func:
191
272
  """
192
273
  ...
193
274
 
194
- def as_pointer(self): ...
195
- def bl_rna_get_subclass(self): ...
196
- def bl_rna_get_subclass_py(self): ...
275
+ def as_pointer(self):
276
+ """ """
277
+ ...
278
+
279
+ def bl_rna_get_subclass(self):
280
+ """ """
281
+ ...
282
+
283
+ def bl_rna_get_subclass_py(self):
284
+ """ """
285
+ ...
286
+
197
287
  def draw(self, context):
198
288
  """
199
289
 
200
- :param self:
201
- :type self:
202
290
  :param context:
203
- :type context:
204
291
  """
205
292
  ...
206
293
 
@@ -208,13 +295,9 @@ class NODE_PT_tools_active(
208
295
  """
209
296
 
210
297
  :param context:
211
- :type context:
212
298
  :param layout:
213
- :type layout:
214
299
  :param tool:
215
- :type tool:
216
300
  :param is_horizontal_layout:
217
- :type is_horizontal_layout:
218
301
  """
219
302
  ...
220
303
 
@@ -222,13 +305,9 @@ class NODE_PT_tools_active(
222
305
  """
223
306
 
224
307
  :param context:
225
- :type context:
226
308
  :param layout:
227
- :type layout:
228
309
  :param show_tool_icon_always:
229
- :type show_tool_icon_always:
230
310
  :param tool_key:
231
- :type tool_key:
232
311
  """
233
312
  ...
234
313
 
@@ -236,13 +315,9 @@ class NODE_PT_tools_active(
236
315
  """
237
316
 
238
317
  :param layout:
239
- :type layout:
240
318
  :param context:
241
- :type context:
242
319
  :param detect_layout:
243
- :type detect_layout:
244
320
  :param scale_y:
245
- :type scale_y:
246
321
  """
247
322
  ...
248
323
 
@@ -250,9 +325,7 @@ class NODE_PT_tools_active(
250
325
  """
251
326
 
252
327
  :param layout:
253
- :type layout:
254
328
  :param context:
255
- :type context:
256
329
  """
257
330
  ...
258
331
 
@@ -260,55 +333,116 @@ class NODE_PT_tools_active(
260
333
  """
261
334
 
262
335
  :param layout:
263
- :type layout:
264
336
  :param context:
265
- :type context:
266
- """
267
- ...
268
-
269
- def driver_add(self): ...
270
- def driver_remove(self): ...
271
- def get(self): ...
272
- def id_properties_clear(self): ...
273
- def id_properties_ensure(self): ...
274
- def id_properties_ui(self): ...
275
- def is_extended(self): ...
276
- def is_property_hidden(self): ...
277
- def is_property_overridable_library(self): ...
278
- def is_property_readonly(self): ...
279
- def is_property_set(self): ...
280
- def items(self): ...
281
- def keyframe_delete(self): ...
282
- def keyframe_insert(self): ...
337
+ """
338
+ ...
339
+
340
+ def driver_add(self):
341
+ """ """
342
+ ...
343
+
344
+ def driver_remove(self):
345
+ """ """
346
+ ...
347
+
348
+ def get(self):
349
+ """ """
350
+ ...
351
+
352
+ def id_properties_clear(self):
353
+ """ """
354
+ ...
355
+
356
+ def id_properties_ensure(self):
357
+ """ """
358
+ ...
359
+
360
+ def id_properties_ui(self):
361
+ """ """
362
+ ...
363
+
364
+ def is_extended(self):
365
+ """ """
366
+ ...
367
+
368
+ def is_property_hidden(self):
369
+ """ """
370
+ ...
371
+
372
+ def is_property_overridable_library(self):
373
+ """ """
374
+ ...
375
+
376
+ def is_property_readonly(self):
377
+ """ """
378
+ ...
379
+
380
+ def is_property_set(self):
381
+ """ """
382
+ ...
383
+
384
+ def items(self):
385
+ """ """
386
+ ...
387
+
388
+ def keyframe_delete(self):
389
+ """ """
390
+ ...
391
+
392
+ def keyframe_insert(self):
393
+ """ """
394
+ ...
395
+
283
396
  def keymap_ui_hierarchy(self, context_mode):
284
397
  """
285
398
 
286
399
  :param context_mode:
287
- :type context_mode:
288
400
  """
289
401
  ...
290
402
 
291
- def keys(self): ...
292
- def path_from_id(self): ...
293
- def path_resolve(self): ...
294
- def pop(self): ...
403
+ def keys(self):
404
+ """ """
405
+ ...
406
+
407
+ def path_from_id(self):
408
+ """ """
409
+ ...
410
+
411
+ def path_resolve(self):
412
+ """ """
413
+ ...
414
+
415
+ def pop(self):
416
+ """ """
417
+ ...
418
+
295
419
  def prepend(self, draw_func):
296
420
  """
297
421
 
298
422
  :param draw_func:
299
- :type draw_func:
300
423
  """
301
424
  ...
302
425
 
303
- def property_overridable_library_set(self): ...
304
- def property_unset(self): ...
305
- def register(self): ...
306
- def register_ensure(self): ...
426
+ def property_overridable_library_set(self):
427
+ """ """
428
+ ...
429
+
430
+ def property_unset(self):
431
+ """ """
432
+ ...
433
+
434
+ def register(self):
435
+ """ """
436
+ ...
437
+
438
+ def register_ensure(self):
439
+ """ """
440
+ ...
441
+
307
442
  def remove(self, draw_func):
308
443
  """
309
444
 
310
445
  :param draw_func:
311
- :type draw_func:
312
446
  """
313
447
  ...
314
448
 
@@ -316,56 +450,79 @@ class NODE_PT_tools_active(
316
450
  """
317
451
 
318
452
  :param context:
319
- :type context:
320
453
  """
321
454
  ...
322
455
 
323
- def tools_all(self): ...
456
+ def tools_all(self):
457
+ """ """
458
+ ...
459
+
324
460
  def tools_from_context(self, context, mode):
325
461
  """
326
462
 
327
463
  :param context:
328
- :type context:
329
464
  :param mode:
330
- :type mode:
331
465
  """
332
466
  ...
333
467
 
334
- def type_recast(self): ...
335
- def values(self): ...
468
+ def type_recast(self):
469
+ """ """
470
+ ...
471
+
472
+ def values(self):
473
+ """ """
474
+ ...
475
+
476
+ class SEQUENCER_PT_tools_active(bpy_types._GenericUI):
477
+ """ """
336
478
 
337
- class SEQUENCER_PT_tools_active(
338
- bpy_types.Panel,
339
- bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
340
- bpy_types._GenericUI,
341
- ):
342
479
  bl_label: typing.Any
480
+ """ """
481
+
343
482
  bl_options: typing.Any
483
+ """ """
484
+
344
485
  bl_region_type: typing.Any
486
+ """ """
487
+
345
488
  bl_rna: typing.Any
489
+ """ """
490
+
346
491
  bl_space_type: typing.Any
492
+ """ """
493
+
347
494
  id_data: typing.Any
495
+ """ """
496
+
348
497
  keymap_prefix: typing.Any
498
+ """ """
499
+
349
500
  tool_fallback_id: typing.Any
501
+ """ """
350
502
 
351
503
  def append(self, draw_func):
352
504
  """
353
505
 
354
506
  :param draw_func:
355
- :type draw_func:
356
507
  """
357
508
  ...
358
509
 
359
- def as_pointer(self): ...
360
- def bl_rna_get_subclass(self): ...
361
- def bl_rna_get_subclass_py(self): ...
510
+ def as_pointer(self):
511
+ """ """
512
+ ...
513
+
514
+ def bl_rna_get_subclass(self):
515
+ """ """
516
+ ...
517
+
518
+ def bl_rna_get_subclass_py(self):
519
+ """ """
520
+ ...
521
+
362
522
  def draw(self, context):
363
523
  """
364
524
 
365
- :param self:
366
- :type self:
367
525
  :param context:
368
- :type context:
369
526
  """
370
527
  ...
371
528
 
@@ -373,13 +530,9 @@ class SEQUENCER_PT_tools_active(
373
530
  """
374
531
 
375
532
  :param context:
376
- :type context:
377
533
  :param layout:
378
- :type layout:
379
534
  :param tool:
380
- :type tool:
381
535
  :param is_horizontal_layout:
382
- :type is_horizontal_layout:
383
536
  """
384
537
  ...
385
538
 
@@ -387,13 +540,9 @@ class SEQUENCER_PT_tools_active(
387
540
  """
388
541
 
389
542
  :param context:
390
- :type context:
391
543
  :param layout:
392
- :type layout:
393
544
  :param show_tool_icon_always:
394
- :type show_tool_icon_always:
395
545
  :param tool_key:
396
- :type tool_key:
397
546
  """
398
547
  ...
399
548
 
@@ -401,13 +550,9 @@ class SEQUENCER_PT_tools_active(
401
550
  """
402
551
 
403
552
  :param layout:
404
- :type layout:
405
553
  :param context:
406
- :type context:
407
554
  :param detect_layout:
408
- :type detect_layout:
409
555
  :param scale_y:
410
- :type scale_y:
411
556
  """
412
557
  ...
413
558
 
@@ -415,9 +560,7 @@ class SEQUENCER_PT_tools_active(
415
560
  """
416
561
 
417
562
  :param layout:
418
- :type layout:
419
563
  :param context:
420
- :type context:
421
564
  """
422
565
  ...
423
566
 
@@ -425,55 +568,116 @@ class SEQUENCER_PT_tools_active(
425
568
  """
426
569
 
427
570
  :param layout:
428
- :type layout:
429
571
  :param context:
430
- :type context:
431
- """
432
- ...
433
-
434
- def driver_add(self): ...
435
- def driver_remove(self): ...
436
- def get(self): ...
437
- def id_properties_clear(self): ...
438
- def id_properties_ensure(self): ...
439
- def id_properties_ui(self): ...
440
- def is_extended(self): ...
441
- def is_property_hidden(self): ...
442
- def is_property_overridable_library(self): ...
443
- def is_property_readonly(self): ...
444
- def is_property_set(self): ...
445
- def items(self): ...
446
- def keyframe_delete(self): ...
447
- def keyframe_insert(self): ...
572
+ """
573
+ ...
574
+
575
+ def driver_add(self):
576
+ """ """
577
+ ...
578
+
579
+ def driver_remove(self):
580
+ """ """
581
+ ...
582
+
583
+ def get(self):
584
+ """ """
585
+ ...
586
+
587
+ def id_properties_clear(self):
588
+ """ """
589
+ ...
590
+
591
+ def id_properties_ensure(self):
592
+ """ """
593
+ ...
594
+
595
+ def id_properties_ui(self):
596
+ """ """
597
+ ...
598
+
599
+ def is_extended(self):
600
+ """ """
601
+ ...
602
+
603
+ def is_property_hidden(self):
604
+ """ """
605
+ ...
606
+
607
+ def is_property_overridable_library(self):
608
+ """ """
609
+ ...
610
+
611
+ def is_property_readonly(self):
612
+ """ """
613
+ ...
614
+
615
+ def is_property_set(self):
616
+ """ """
617
+ ...
618
+
619
+ def items(self):
620
+ """ """
621
+ ...
622
+
623
+ def keyframe_delete(self):
624
+ """ """
625
+ ...
626
+
627
+ def keyframe_insert(self):
628
+ """ """
629
+ ...
630
+
448
631
  def keymap_ui_hierarchy(self, context_mode):
449
632
  """
450
633
 
451
634
  :param context_mode:
452
- :type context_mode:
453
635
  """
454
636
  ...
455
637
 
456
- def keys(self): ...
457
- def path_from_id(self): ...
458
- def path_resolve(self): ...
459
- def pop(self): ...
638
+ def keys(self):
639
+ """ """
640
+ ...
641
+
642
+ def path_from_id(self):
643
+ """ """
644
+ ...
645
+
646
+ def path_resolve(self):
647
+ """ """
648
+ ...
649
+
650
+ def pop(self):
651
+ """ """
652
+ ...
653
+
460
654
  def prepend(self, draw_func):
461
655
  """
462
656
 
463
657
  :param draw_func:
464
- :type draw_func:
465
658
  """
466
659
  ...
467
660
 
468
- def property_overridable_library_set(self): ...
469
- def property_unset(self): ...
470
- def register(self): ...
471
- def register_ensure(self): ...
661
+ def property_overridable_library_set(self):
662
+ """ """
663
+ ...
664
+
665
+ def property_unset(self):
666
+ """ """
667
+ ...
668
+
669
+ def register(self):
670
+ """ """
671
+ ...
672
+
673
+ def register_ensure(self):
674
+ """ """
675
+ ...
676
+
472
677
  def remove(self, draw_func):
473
678
  """
474
679
 
475
680
  :param draw_func:
476
- :type draw_func:
477
681
  """
478
682
  ...
479
683
 
@@ -481,56 +685,79 @@ class SEQUENCER_PT_tools_active(
481
685
  """
482
686
 
483
687
  :param context:
484
- :type context:
485
688
  """
486
689
  ...
487
690
 
488
- def tools_all(self): ...
691
+ def tools_all(self):
692
+ """ """
693
+ ...
694
+
489
695
  def tools_from_context(self, context, mode):
490
696
  """
491
697
 
492
698
  :param context:
493
- :type context:
494
699
  :param mode:
495
- :type mode:
496
700
  """
497
701
  ...
498
702
 
499
- def type_recast(self): ...
500
- def values(self): ...
703
+ def type_recast(self):
704
+ """ """
705
+ ...
706
+
707
+ def values(self):
708
+ """ """
709
+ ...
710
+
711
+ class VIEW3D_PT_tools_active(bpy_types._GenericUI):
712
+ """ """
501
713
 
502
- class VIEW3D_PT_tools_active(
503
- bpy_types.Panel,
504
- bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
505
- bpy_types._GenericUI,
506
- ):
507
714
  bl_label: typing.Any
715
+ """ """
716
+
508
717
  bl_options: typing.Any
718
+ """ """
719
+
509
720
  bl_region_type: typing.Any
721
+ """ """
722
+
510
723
  bl_rna: typing.Any
724
+ """ """
725
+
511
726
  bl_space_type: typing.Any
727
+ """ """
728
+
512
729
  id_data: typing.Any
730
+ """ """
731
+
513
732
  keymap_prefix: typing.Any
733
+ """ """
734
+
514
735
  tool_fallback_id: typing.Any
736
+ """ """
515
737
 
516
738
  def append(self, draw_func):
517
739
  """
518
740
 
519
741
  :param draw_func:
520
- :type draw_func:
521
742
  """
522
743
  ...
523
744
 
524
- def as_pointer(self): ...
525
- def bl_rna_get_subclass(self): ...
526
- def bl_rna_get_subclass_py(self): ...
745
+ def as_pointer(self):
746
+ """ """
747
+ ...
748
+
749
+ def bl_rna_get_subclass(self):
750
+ """ """
751
+ ...
752
+
753
+ def bl_rna_get_subclass_py(self):
754
+ """ """
755
+ ...
756
+
527
757
  def draw(self, context):
528
758
  """
529
759
 
530
- :param self:
531
- :type self:
532
760
  :param context:
533
- :type context:
534
761
  """
535
762
  ...
536
763
 
@@ -538,13 +765,9 @@ class VIEW3D_PT_tools_active(
538
765
  """
539
766
 
540
767
  :param context:
541
- :type context:
542
768
  :param layout:
543
- :type layout:
544
769
  :param tool:
545
- :type tool:
546
770
  :param is_horizontal_layout:
547
- :type is_horizontal_layout:
548
771
  """
549
772
  ...
550
773
 
@@ -552,13 +775,9 @@ class VIEW3D_PT_tools_active(
552
775
  """
553
776
 
554
777
  :param context:
555
- :type context:
556
778
  :param layout:
557
- :type layout:
558
779
  :param show_tool_icon_always:
559
- :type show_tool_icon_always:
560
780
  :param tool_key:
561
- :type tool_key:
562
781
  """
563
782
  ...
564
783
 
@@ -566,13 +785,9 @@ class VIEW3D_PT_tools_active(
566
785
  """
567
786
 
568
787
  :param layout:
569
- :type layout:
570
788
  :param context:
571
- :type context:
572
789
  :param detect_layout:
573
- :type detect_layout:
574
790
  :param scale_y:
575
- :type scale_y:
576
791
  """
577
792
  ...
578
793
 
@@ -580,9 +795,7 @@ class VIEW3D_PT_tools_active(
580
795
  """
581
796
 
582
797
  :param layout:
583
- :type layout:
584
798
  :param context:
585
- :type context:
586
799
  """
587
800
  ...
588
801
 
@@ -590,55 +803,116 @@ class VIEW3D_PT_tools_active(
590
803
  """
591
804
 
592
805
  :param layout:
593
- :type layout:
594
806
  :param context:
595
- :type context:
596
- """
597
- ...
598
-
599
- def driver_add(self): ...
600
- def driver_remove(self): ...
601
- def get(self): ...
602
- def id_properties_clear(self): ...
603
- def id_properties_ensure(self): ...
604
- def id_properties_ui(self): ...
605
- def is_extended(self): ...
606
- def is_property_hidden(self): ...
607
- def is_property_overridable_library(self): ...
608
- def is_property_readonly(self): ...
609
- def is_property_set(self): ...
610
- def items(self): ...
611
- def keyframe_delete(self): ...
612
- def keyframe_insert(self): ...
807
+ """
808
+ ...
809
+
810
+ def driver_add(self):
811
+ """ """
812
+ ...
813
+
814
+ def driver_remove(self):
815
+ """ """
816
+ ...
817
+
818
+ def get(self):
819
+ """ """
820
+ ...
821
+
822
+ def id_properties_clear(self):
823
+ """ """
824
+ ...
825
+
826
+ def id_properties_ensure(self):
827
+ """ """
828
+ ...
829
+
830
+ def id_properties_ui(self):
831
+ """ """
832
+ ...
833
+
834
+ def is_extended(self):
835
+ """ """
836
+ ...
837
+
838
+ def is_property_hidden(self):
839
+ """ """
840
+ ...
841
+
842
+ def is_property_overridable_library(self):
843
+ """ """
844
+ ...
845
+
846
+ def is_property_readonly(self):
847
+ """ """
848
+ ...
849
+
850
+ def is_property_set(self):
851
+ """ """
852
+ ...
853
+
854
+ def items(self):
855
+ """ """
856
+ ...
857
+
858
+ def keyframe_delete(self):
859
+ """ """
860
+ ...
861
+
862
+ def keyframe_insert(self):
863
+ """ """
864
+ ...
865
+
613
866
  def keymap_ui_hierarchy(self, context_mode):
614
867
  """
615
868
 
616
869
  :param context_mode:
617
- :type context_mode:
618
870
  """
619
871
  ...
620
872
 
621
- def keys(self): ...
622
- def path_from_id(self): ...
623
- def path_resolve(self): ...
624
- def pop(self): ...
873
+ def keys(self):
874
+ """ """
875
+ ...
876
+
877
+ def path_from_id(self):
878
+ """ """
879
+ ...
880
+
881
+ def path_resolve(self):
882
+ """ """
883
+ ...
884
+
885
+ def pop(self):
886
+ """ """
887
+ ...
888
+
625
889
  def prepend(self, draw_func):
626
890
  """
627
891
 
628
892
  :param draw_func:
629
- :type draw_func:
630
893
  """
631
894
  ...
632
895
 
633
- def property_overridable_library_set(self): ...
634
- def property_unset(self): ...
635
- def register(self): ...
636
- def register_ensure(self): ...
896
+ def property_overridable_library_set(self):
897
+ """ """
898
+ ...
899
+
900
+ def property_unset(self):
901
+ """ """
902
+ ...
903
+
904
+ def register(self):
905
+ """ """
906
+ ...
907
+
908
+ def register_ensure(self):
909
+ """ """
910
+ ...
911
+
637
912
  def remove(self, draw_func):
638
913
  """
639
914
 
640
915
  :param draw_func:
641
- :type draw_func:
642
916
  """
643
917
  ...
644
918
 
@@ -646,134 +920,263 @@ class VIEW3D_PT_tools_active(
646
920
  """
647
921
 
648
922
  :param context:
649
- :type context:
650
923
  """
651
924
  ...
652
925
 
653
- def tools_all(self): ...
926
+ def tools_all(self):
927
+ """ """
928
+ ...
929
+
654
930
  def tools_from_context(self, context, mode):
655
931
  """
656
932
 
657
933
  :param context:
658
- :type context:
659
934
  :param mode:
660
- :type mode:
661
935
  """
662
936
  ...
663
937
 
664
- def type_recast(self): ...
665
- def values(self): ...
938
+ def type_recast(self):
939
+ """ """
940
+ ...
941
+
942
+ def values(self):
943
+ """ """
944
+ ...
666
945
 
667
946
  class _defs_annotate:
947
+ """ """
948
+
668
949
  eraser: typing.Any
950
+ """ """
951
+
669
952
  line: typing.Any
953
+ """ """
954
+
670
955
  poly: typing.Any
956
+ """ """
957
+
671
958
  scribble: typing.Any
959
+ """ """
672
960
 
673
961
  def draw_settings_common(self, context, layout, tool):
674
962
  """
675
963
 
676
964
  :param context:
677
- :type context:
678
965
  :param layout:
679
- :type layout:
680
966
  :param tool:
681
- :type tool:
682
967
  """
683
968
  ...
684
969
 
685
970
  class _defs_curves_sculpt:
971
+ """ """
972
+
686
973
  def generate_from_brushes(self, context):
687
974
  """
688
975
 
689
976
  :param context:
690
- :type context:
691
977
  """
692
978
  ...
693
979
 
694
980
  class _defs_edit_armature:
981
+ """ """
982
+
695
983
  bone_envelope: typing.Any
984
+ """ """
985
+
696
986
  bone_size: typing.Any
987
+ """ """
988
+
697
989
  extrude: typing.Any
990
+ """ """
991
+
698
992
  extrude_cursor: typing.Any
993
+ """ """
994
+
699
995
  roll: typing.Any
996
+ """ """
700
997
 
701
998
  class _defs_edit_curve:
999
+ """ """
1000
+
702
1001
  curve_radius: typing.Any
1002
+ """ """
1003
+
703
1004
  curve_vertex_randomize: typing.Any
1005
+ """ """
1006
+
704
1007
  draw: typing.Any
1008
+ """ """
1009
+
705
1010
  extrude: typing.Any
1011
+ """ """
1012
+
706
1013
  extrude_cursor: typing.Any
1014
+ """ """
1015
+
707
1016
  pen: typing.Any
1017
+ """ """
1018
+
708
1019
  tilt: typing.Any
1020
+ """ """
709
1021
 
710
1022
  class _defs_edit_curves:
1023
+ """ """
1024
+
711
1025
  draw: typing.Any
1026
+ """ """
712
1027
 
713
1028
  class _defs_edit_mesh:
1029
+ """ """
1030
+
714
1031
  bevel: typing.Any
1032
+ """ """
1033
+
715
1034
  bisect: typing.Any
1035
+ """ """
1036
+
716
1037
  edge_slide: typing.Any
1038
+ """ """
1039
+
717
1040
  extrude: typing.Any
1041
+ """ """
1042
+
718
1043
  extrude_cursor: typing.Any
1044
+ """ """
1045
+
719
1046
  extrude_individual: typing.Any
1047
+ """ """
1048
+
720
1049
  extrude_manifold: typing.Any
1050
+ """ """
1051
+
721
1052
  extrude_normals: typing.Any
1053
+ """ """
1054
+
722
1055
  inset: typing.Any
1056
+ """ """
1057
+
723
1058
  knife: typing.Any
1059
+ """ """
1060
+
724
1061
  loopcut_slide: typing.Any
1062
+ """ """
1063
+
725
1064
  offset_edge_loops_slide: typing.Any
1065
+ """ """
1066
+
726
1067
  poly_build: typing.Any
1068
+ """ """
1069
+
727
1070
  push_pull: typing.Any
1071
+ """ """
1072
+
728
1073
  rip_edge: typing.Any
1074
+ """ """
1075
+
729
1076
  rip_region: typing.Any
1077
+ """ """
1078
+
730
1079
  shrink_fatten: typing.Any
1080
+ """ """
1081
+
731
1082
  spin: typing.Any
1083
+ """ """
1084
+
732
1085
  tosphere: typing.Any
1086
+ """ """
1087
+
733
1088
  vert_slide: typing.Any
1089
+ """ """
1090
+
734
1091
  vertex_randomize: typing.Any
1092
+ """ """
1093
+
735
1094
  vertex_smooth: typing.Any
1095
+ """ """
736
1096
 
737
1097
  class _defs_edit_text:
1098
+ """ """
1099
+
738
1100
  select_text: typing.Any
1101
+ """ """
739
1102
 
740
1103
  class _defs_gpencil_edit:
1104
+ """ """
1105
+
741
1106
  bend: typing.Any
1107
+ """ """
1108
+
742
1109
  box_select: typing.Any
1110
+ """ """
1111
+
743
1112
  circle_select: typing.Any
1113
+ """ """
1114
+
744
1115
  extrude: typing.Any
1116
+ """ """
1117
+
745
1118
  interpolate: typing.Any
1119
+ """ """
1120
+
746
1121
  lasso_select: typing.Any
1122
+ """ """
1123
+
747
1124
  radius: typing.Any
1125
+ """ """
1126
+
748
1127
  select: typing.Any
1128
+ """ """
1129
+
749
1130
  shear: typing.Any
1131
+ """ """
1132
+
750
1133
  tosphere: typing.Any
1134
+ """ """
1135
+
751
1136
  transform_fill: typing.Any
1137
+ """ """
752
1138
 
753
1139
  def is_segment(self, context):
754
1140
  """
755
1141
 
756
1142
  :param context:
757
- :type context:
758
1143
  """
759
1144
  ...
760
1145
 
761
1146
  class _defs_gpencil_paint:
1147
+ """ """
1148
+
762
1149
  arc: typing.Any
1150
+ """ """
1151
+
763
1152
  box: typing.Any
1153
+ """ """
1154
+
764
1155
  circle: typing.Any
1156
+ """ """
1157
+
765
1158
  curve: typing.Any
1159
+ """ """
1160
+
766
1161
  cutter: typing.Any
1162
+ """ """
1163
+
767
1164
  eyedropper: typing.Any
1165
+ """ """
1166
+
768
1167
  interpolate: typing.Any
1168
+ """ """
1169
+
769
1170
  line: typing.Any
1171
+ """ """
1172
+
770
1173
  polyline: typing.Any
1174
+ """ """
771
1175
 
772
1176
  def generate_from_brushes(self, context):
773
1177
  """
774
1178
 
775
1179
  :param context:
776
- :type context:
777
1180
  """
778
1181
  ...
779
1182
 
@@ -781,22 +1184,19 @@ class _defs_gpencil_paint:
781
1184
  """
782
1185
 
783
1186
  :param context:
784
- :type context:
785
1187
  :param layout:
786
- :type layout:
787
1188
  :param _tool:
788
- :type _tool:
789
1189
  :param props:
790
- :type props:
791
1190
  """
792
1191
  ...
793
1192
 
794
1193
  class _defs_gpencil_sculpt:
1194
+ """ """
1195
+
795
1196
  def generate_from_brushes(self, context):
796
1197
  """
797
1198
 
798
1199
  :param context:
799
- :type context:
800
1200
  """
801
1201
  ...
802
1202
 
@@ -804,16 +1204,16 @@ class _defs_gpencil_sculpt:
804
1204
  """
805
1205
 
806
1206
  :param context:
807
- :type context:
808
1207
  """
809
1208
  ...
810
1209
 
811
1210
  class _defs_gpencil_vertex:
1211
+ """ """
1212
+
812
1213
  def generate_from_brushes(self, context):
813
1214
  """
814
1215
 
815
1216
  :param context:
816
- :type context:
817
1217
  """
818
1218
  ...
819
1219
 
@@ -821,126 +1221,228 @@ class _defs_gpencil_vertex:
821
1221
  """
822
1222
 
823
1223
  :param context:
824
- :type context:
825
1224
  """
826
1225
  ...
827
1226
 
828
1227
  class _defs_gpencil_weight:
1228
+ """ """
1229
+
829
1230
  def generate_from_brushes(self, context):
830
1231
  """
831
1232
 
832
1233
  :param context:
833
- :type context:
834
1234
  """
835
1235
  ...
836
1236
 
837
1237
  class _defs_image_generic:
1238
+ """ """
1239
+
838
1240
  cursor: typing.Any
1241
+ """ """
1242
+
839
1243
  sample: typing.Any
1244
+ """ """
840
1245
 
841
1246
  def poll_uvedit(self, context):
842
1247
  """
843
1248
 
844
1249
  :param context:
845
- :type context:
846
1250
  """
847
1251
  ...
848
1252
 
849
1253
  class _defs_image_uv_edit:
1254
+ """ """
1255
+
850
1256
  rip_region: typing.Any
1257
+ """ """
851
1258
 
852
1259
  class _defs_image_uv_sculpt:
1260
+ """ """
1261
+
853
1262
  def generate_from_brushes(self, context):
854
1263
  """
855
1264
 
856
1265
  :param context:
857
- :type context:
858
1266
  """
859
1267
  ...
860
1268
 
861
1269
  class _defs_image_uv_select:
1270
+ """ """
1271
+
862
1272
  box: typing.Any
1273
+ """ """
1274
+
863
1275
  circle: typing.Any
1276
+ """ """
1277
+
864
1278
  lasso: typing.Any
1279
+ """ """
1280
+
865
1281
  select: typing.Any
1282
+ """ """
866
1283
 
867
1284
  class _defs_image_uv_transform:
1285
+ """ """
1286
+
868
1287
  rotate: typing.Any
1288
+ """ """
1289
+
869
1290
  scale: typing.Any
1291
+ """ """
1292
+
870
1293
  transform: typing.Any
1294
+ """ """
1295
+
871
1296
  translate: typing.Any
1297
+ """ """
872
1298
 
873
1299
  class _defs_node_edit:
1300
+ """ """
1301
+
874
1302
  links_cut: typing.Any
1303
+ """ """
875
1304
 
876
1305
  class _defs_node_select:
1306
+ """ """
1307
+
877
1308
  box: typing.Any
1309
+ """ """
1310
+
878
1311
  circle: typing.Any
1312
+ """ """
1313
+
879
1314
  lasso: typing.Any
1315
+ """ """
1316
+
880
1317
  select: typing.Any
1318
+ """ """
881
1319
 
882
1320
  class _defs_paint_grease_pencil:
1321
+ """ """
1322
+
883
1323
  draw: typing.Any
1324
+ """ """
1325
+
884
1326
  erase: typing.Any
1327
+ """ """
885
1328
 
886
1329
  class _defs_particle:
1330
+ """ """
1331
+
887
1332
  def generate_from_brushes(self, context):
888
1333
  """
889
1334
 
890
1335
  :param context:
891
- :type context:
892
1336
  """
893
1337
  ...
894
1338
 
895
1339
  class _defs_pose:
1340
+ """ """
1341
+
896
1342
  breakdown: typing.Any
1343
+ """ """
1344
+
897
1345
  push: typing.Any
1346
+ """ """
1347
+
898
1348
  relax: typing.Any
1349
+ """ """
899
1350
 
900
1351
  class _defs_sculpt:
1352
+ """ """
1353
+
901
1354
  cloth_filter: typing.Any
1355
+ """ """
1356
+
902
1357
  color_filter: typing.Any
1358
+ """ """
1359
+
903
1360
  face_set_box: typing.Any
1361
+ """ """
1362
+
904
1363
  face_set_edit: typing.Any
1364
+ """ """
1365
+
905
1366
  face_set_lasso: typing.Any
1367
+ """ """
1368
+
906
1369
  hide_border: typing.Any
1370
+ """ """
1371
+
907
1372
  hide_lasso: typing.Any
1373
+ """ """
1374
+
908
1375
  mask_border: typing.Any
1376
+ """ """
1377
+
909
1378
  mask_by_color: typing.Any
1379
+ """ """
1380
+
910
1381
  mask_lasso: typing.Any
1382
+ """ """
1383
+
911
1384
  mask_line: typing.Any
1385
+ """ """
1386
+
912
1387
  mesh_filter: typing.Any
1388
+ """ """
1389
+
913
1390
  project_line: typing.Any
1391
+ """ """
1392
+
914
1393
  trim_box: typing.Any
1394
+ """ """
1395
+
915
1396
  trim_lasso: typing.Any
1397
+ """ """
916
1398
 
917
1399
  def generate_from_brushes(self, context):
918
1400
  """
919
1401
 
920
1402
  :param context:
921
- :type context:
922
1403
  """
923
1404
  ...
924
1405
 
925
1406
  class _defs_sequencer_generic:
1407
+ """ """
1408
+
926
1409
  blade: typing.Any
1410
+ """ """
1411
+
927
1412
  cursor: typing.Any
1413
+ """ """
1414
+
928
1415
  rotate: typing.Any
1416
+ """ """
1417
+
929
1418
  sample: typing.Any
1419
+ """ """
1420
+
930
1421
  scale: typing.Any
1422
+ """ """
1423
+
931
1424
  transform: typing.Any
1425
+ """ """
1426
+
932
1427
  translate: typing.Any
1428
+ """ """
933
1429
 
934
1430
  class _defs_sequencer_select:
1431
+ """ """
1432
+
935
1433
  box: typing.Any
1434
+ """ """
1435
+
936
1436
  select: typing.Any
1437
+ """ """
937
1438
 
938
1439
  class _defs_texture_paint:
1440
+ """ """
1441
+
939
1442
  def generate_from_brushes(self, context):
940
1443
  """
941
1444
 
942
1445
  :param context:
943
- :type context:
944
1446
  """
945
1447
  ...
946
1448
 
@@ -948,35 +1450,48 @@ class _defs_texture_paint:
948
1450
  """
949
1451
 
950
1452
  :param context:
951
- :type context:
952
1453
  """
953
1454
  ...
954
1455
 
955
1456
  class _defs_transform:
1457
+ """ """
1458
+
956
1459
  bend: typing.Any
1460
+ """ """
1461
+
957
1462
  rotate: typing.Any
1463
+ """ """
1464
+
958
1465
  scale: typing.Any
1466
+ """ """
1467
+
959
1468
  scale_cage: typing.Any
1469
+ """ """
1470
+
960
1471
  shear: typing.Any
1472
+ """ """
1473
+
961
1474
  transform: typing.Any
1475
+ """ """
1476
+
962
1477
  translate: typing.Any
1478
+ """ """
963
1479
 
964
1480
  def draw_transform_sculpt_tool_settings(self, context, layout):
965
1481
  """
966
1482
 
967
1483
  :param context:
968
- :type context:
969
1484
  :param layout:
970
- :type layout:
971
1485
  """
972
1486
  ...
973
1487
 
974
1488
  class _defs_vertex_paint:
1489
+ """ """
1490
+
975
1491
  def generate_from_brushes(self, context):
976
1492
  """
977
1493
 
978
1494
  :param context:
979
- :type context:
980
1495
  """
981
1496
  ...
982
1497
 
@@ -984,28 +1499,34 @@ class _defs_vertex_paint:
984
1499
  """
985
1500
 
986
1501
  :param context:
987
- :type context:
988
1502
  """
989
1503
  ...
990
1504
 
991
1505
  class _defs_view3d_add:
1506
+ """ """
1507
+
992
1508
  cone_add: typing.Any
1509
+ """ """
1510
+
993
1511
  cube_add: typing.Any
1512
+ """ """
1513
+
994
1514
  cylinder_add: typing.Any
1515
+ """ """
1516
+
995
1517
  ico_sphere_add: typing.Any
1518
+ """ """
1519
+
996
1520
  uv_sphere_add: typing.Any
1521
+ """ """
997
1522
 
998
1523
  def description_interactive_add(self, context, _item, _km, prefix):
999
1524
  """
1000
1525
 
1001
1526
  :param context:
1002
- :type context:
1003
1527
  :param _item:
1004
- :type _item:
1005
1528
  :param _km:
1006
- :type _km:
1007
1529
  :param prefix:
1008
- :type prefix:
1009
1530
  """
1010
1531
  ...
1011
1532
 
@@ -1013,37 +1534,55 @@ class _defs_view3d_add:
1013
1534
  """
1014
1535
 
1015
1536
  :param layout:
1016
- :type layout:
1017
1537
  :param tool_settings:
1018
- :type tool_settings:
1019
1538
  :param tool:
1020
- :type tool:
1021
1539
  :param extra:
1022
- :type extra:
1023
1540
  """
1024
1541
  ...
1025
1542
 
1026
1543
  class _defs_view3d_generic:
1544
+ """ """
1545
+
1027
1546
  cursor: typing.Any
1547
+ """ """
1548
+
1028
1549
  cursor_click: typing.Any
1550
+ """ """
1551
+
1029
1552
  ruler: typing.Any
1553
+ """ """
1030
1554
 
1031
1555
  class _defs_view3d_select:
1556
+ """ """
1557
+
1032
1558
  box: typing.Any
1559
+ """ """
1560
+
1033
1561
  circle: typing.Any
1562
+ """ """
1563
+
1034
1564
  lasso: typing.Any
1565
+ """ """
1566
+
1035
1567
  select: typing.Any
1568
+ """ """
1036
1569
 
1037
1570
  class _defs_weight_paint:
1571
+ """ """
1572
+
1038
1573
  gradient: typing.Any
1574
+ """ """
1575
+
1039
1576
  sample_weight: typing.Any
1577
+ """ """
1578
+
1040
1579
  sample_weight_group: typing.Any
1580
+ """ """
1041
1581
 
1042
1582
  def generate_from_brushes(self, context):
1043
1583
  """
1044
1584
 
1045
1585
  :param context:
1046
- :type context:
1047
1586
  """
1048
1587
  ...
1049
1588
 
@@ -1051,15 +1590,25 @@ class _defs_weight_paint:
1051
1590
  """
1052
1591
 
1053
1592
  :param context:
1054
- :type context:
1055
1593
  """
1056
1594
  ...
1057
1595
 
1058
1596
  class _template_widget:
1059
- def VIEW3D_GGT_xform_extrude(self): ...
1060
- def VIEW3D_GGT_xform_gizmo(self): ...
1597
+ """ """
1598
+
1599
+ def VIEW3D_GGT_xform_extrude(self):
1600
+ """ """
1601
+ ...
1602
+
1603
+ def VIEW3D_GGT_xform_gizmo(self):
1604
+ """ """
1605
+ ...
1606
+
1607
+ def curve_draw_settings(context, layout, _tool, extra):
1608
+ """ """
1609
+
1610
+ ...
1061
1611
 
1062
- def curve_draw_settings(context, layout, _tool, extra): ...
1063
1612
  def generate_from_enum_ex(
1064
1613
  _context,
1065
1614
  idname_prefix,
@@ -1070,5 +1619,12 @@ def generate_from_enum_ex(
1070
1619
  tooldef_keywords,
1071
1620
  icon_map,
1072
1621
  use_separators,
1073
- ): ...
1074
- def kmi_to_string_or_none(kmi): ...
1622
+ ):
1623
+ """ """
1624
+
1625
+ ...
1626
+
1627
+ def kmi_to_string_or_none(kmi):
1628
+ """ """
1629
+
1630
+ ...