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