fake-bpy-module 20240210__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 (309) hide show
  1. addon_utils/__init__.pyi +54 -11
  2. animsys_refactor/__init__.pyi +36 -7
  3. aud/__init__.pyi +307 -321
  4. bgl/__init__.pyi +2926 -865
  5. bl_app_override/__init__.pyi +14 -4
  6. bl_app_override/helpers/__init__.pyi +24 -3
  7. bl_app_template_utils/__init__.pyi +19 -5
  8. bl_console_utils/__init__.pyi +0 -1
  9. bl_console_utils/autocomplete/__init__.pyi +2 -3
  10. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -6
  11. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -4
  12. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -6
  13. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -3
  14. bl_i18n_utils/__init__.pyi +2 -3
  15. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -16
  16. bl_i18n_utils/merge_po/__init__.pyi +4 -2
  17. bl_i18n_utils/settings/__init__.pyi +53 -7
  18. bl_i18n_utils/utils/__init__.pyi +332 -45
  19. bl_i18n_utils/utils_cli/__init__.pyi +29 -7
  20. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -2
  21. bl_i18n_utils/utils_rtl/__init__.pyi +9 -3
  22. bl_keymap_utils/__init__.pyi +2 -3
  23. bl_keymap_utils/io/__init__.pyi +44 -10
  24. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -2
  25. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -2
  26. bl_keymap_utils/platform_helpers/__init__.pyi +9 -3
  27. bl_keymap_utils/versioning/__init__.pyi +4 -2
  28. bl_math/__init__.pyi +21 -22
  29. bl_operators/__init__.pyi +30 -24
  30. bl_operators/add_mesh_torus/__init__.pyi +171 -38
  31. bl_operators/anim/__init__.pyi +1065 -227
  32. bl_operators/assets/__init__.pyi +427 -93
  33. bl_operators/bmesh/__init__.pyi +0 -1
  34. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -10
  35. bl_operators/clip/__init__.pyi +1342 -288
  36. bl_operators/console/__init__.pyi +647 -141
  37. bl_operators/constraint/__init__.pyi +524 -113
  38. bl_operators/file/__init__.pyi +396 -85
  39. bl_operators/freestyle/__init__.pyi +532 -114
  40. bl_operators/geometry_nodes/__init__.pyi +2412 -597
  41. bl_operators/image/__init__.pyi +380 -83
  42. bl_operators/mesh/__init__.pyi +401 -86
  43. bl_operators/node/__init__.pyi +1756 -385
  44. bl_operators/object/__init__.pyi +2022 -553
  45. bl_operators/object_align/__init__.pyi +145 -32
  46. bl_operators/object_quick_effects/__init__.pyi +555 -125
  47. bl_operators/object_randomize_transform/__init__.pyi +136 -33
  48. bl_operators/presets/__init__.pyi +3516 -709
  49. bl_operators/rigidbody/__init__.pyi +401 -86
  50. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -30
  51. bl_operators/sequencer/__init__.pyi +731 -150
  52. bl_operators/spreadsheet/__init__.pyi +145 -31
  53. bl_operators/userpref/__init__.pyi +3416 -825
  54. bl_operators/uvcalc_follow_active/__init__.pyi +149 -33
  55. bl_operators/uvcalc_lightmap/__init__.pyi +187 -35
  56. bl_operators/uvcalc_transform/__init__.pyi +344 -74
  57. bl_operators/vertexpaint_dirt/__init__.pyi +140 -31
  58. bl_operators/view3d/__init__.pyi +697 -147
  59. bl_operators/wm/__init__.pyi +6287 -1534
  60. bl_previews_utils/__init__.pyi +0 -1
  61. bl_previews_utils/bl_previews_render/__init__.pyi +34 -8
  62. bl_rna_utils/__init__.pyi +0 -1
  63. bl_rna_utils/data_path/__init__.pyi +12 -3
  64. bl_text_utils/__init__.pyi +0 -1
  65. bl_text_utils/external_editor/__init__.pyi +4 -2
  66. bl_ui/__init__.pyi +567 -170
  67. bl_ui/anim/__init__.pyi +164 -34
  68. bl_ui/asset_shelf/__init__.pyi +146 -32
  69. bl_ui/generic_ui_list/__init__.pyi +471 -100
  70. bl_ui/node_add_menu/__init__.pyi +196 -41
  71. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -622
  72. bl_ui/node_add_menu_geometry/__init__.pyi +8075 -1592
  73. bl_ui/node_add_menu_shader/__init__.pyi +1709 -349
  74. bl_ui/node_add_menu_texture/__init__.pyi +1502 -306
  75. bl_ui/properties_animviz/__init__.pyi +32 -3
  76. bl_ui/properties_collection/__init__.pyi +787 -180
  77. bl_ui/properties_constraint/__init__.pyi +28635 -5524
  78. bl_ui/properties_data_armature/__init__.pyi +1905 -449
  79. bl_ui/properties_data_bone/__init__.pyi +1560 -337
  80. bl_ui/properties_data_camera/__init__.pyi +2269 -495
  81. bl_ui/properties_data_curve/__init__.pyi +2362 -535
  82. bl_ui/properties_data_curves/__init__.pyi +951 -204
  83. bl_ui/properties_data_empty/__init__.pyi +317 -70
  84. bl_ui/properties_data_gpencil/__init__.pyi +2924 -735
  85. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -189
  86. bl_ui/properties_data_lattice/__init__.pyi +472 -105
  87. bl_ui/properties_data_light/__init__.pyi +1570 -338
  88. bl_ui/properties_data_lightprobe/__init__.pyi +938 -209
  89. bl_ui/properties_data_mesh/__init__.pyi +3205 -768
  90. bl_ui/properties_data_metaball/__init__.pyi +774 -171
  91. bl_ui/properties_data_modifier/__init__.pyi +1554 -329
  92. bl_ui/properties_data_pointcloud/__init__.pyi +821 -195
  93. bl_ui/properties_data_shaderfx/__init__.pyi +154 -35
  94. bl_ui/properties_data_speaker/__init__.pyi +782 -169
  95. bl_ui/properties_data_volume/__init__.pyi +1243 -282
  96. bl_ui/properties_freestyle/__init__.pyi +4071 -1031
  97. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -484
  98. bl_ui/properties_mask_common/__init__.pyi +1256 -250
  99. bl_ui/properties_material/__init__.pyi +2351 -543
  100. bl_ui/properties_material_gpencil/__init__.pyi +1590 -366
  101. bl_ui/properties_object/__init__.pyi +2179 -513
  102. bl_ui/properties_output/__init__.pyi +2956 -706
  103. bl_ui/properties_paint_common/__init__.pyi +947 -141
  104. bl_ui/properties_particle/__init__.pyi +8322 -1971
  105. bl_ui/properties_physics_cloth/__init__.pyi +2254 -509
  106. bl_ui/properties_physics_common/__init__.pyi +200 -45
  107. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -966
  108. bl_ui/properties_physics_field/__init__.pyi +1695 -365
  109. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1281
  110. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -33
  111. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -279
  112. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -484
  113. bl_ui/properties_physics_softbody/__init__.pyi +2394 -543
  114. bl_ui/properties_render/__init__.pyi +8312 -1934
  115. bl_ui/properties_scene/__init__.pyi +2211 -540
  116. bl_ui/properties_texture/__init__.pyi +4185 -1014
  117. bl_ui/properties_view_layer/__init__.pyi +2803 -665
  118. bl_ui/properties_workspace/__init__.pyi +626 -149
  119. bl_ui/properties_world/__init__.pyi +1092 -235
  120. bl_ui/space_clip/__init__.pyi +11475 -2806
  121. bl_ui/space_console/__init__.pyi +967 -203
  122. bl_ui/space_dopesheet/__init__.pyi +4260 -967
  123. bl_ui/space_filebrowser/__init__.pyi +4852 -1188
  124. bl_ui/space_graph/__init__.pyi +3251 -703
  125. bl_ui/space_image/__init__.pyi +12218 -2968
  126. bl_ui/space_info/__init__.pyi +964 -201
  127. bl_ui/space_nla/__init__.pyi +2756 -585
  128. bl_ui/space_node/__init__.pyi +5661 -1266
  129. bl_ui/space_outliner/__init__.pyi +2294 -479
  130. bl_ui/space_properties/__init__.pyi +417 -93
  131. bl_ui/space_sequencer/__init__.pyi +12436 -3010
  132. bl_ui/space_spreadsheet/__init__.pyi +184 -37
  133. bl_ui/space_statusbar/__init__.pyi +135 -31
  134. bl_ui/space_text/__init__.pyi +2556 -543
  135. bl_ui/space_time/__init__.pyi +1151 -244
  136. bl_ui/space_toolsystem_common/__init__.pyi +368 -67
  137. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -229
  138. bl_ui/space_topbar/__init__.pyi +4214 -888
  139. bl_ui/space_userpref/__init__.pyi +13920 -3468
  140. bl_ui/space_view3d/__init__.pyi +42751 -9613
  141. bl_ui/space_view3d_toolbar/__init__.pyi +16379 -3860
  142. bl_ui/utils/__init__.pyi +42 -5
  143. bl_ui_utils/__init__.pyi +0 -1
  144. bl_ui_utils/bug_report_url/__init__.pyi +4 -2
  145. bl_ui_utils/layout/__init__.pyi +4 -2
  146. blend_render_info/__init__.pyi +13 -4
  147. blf/__init__.pyi +15 -18
  148. bmesh/__init__.pyi +18 -18
  149. bmesh/geometry/__init__.pyi +5 -6
  150. bmesh/ops/__init__.pyi +1337 -1158
  151. bmesh/types/__init__.pyi +464 -374
  152. bmesh/utils/__init__.pyi +64 -70
  153. bpy/__init__.pyi +6 -7
  154. bpy/app/__init__.pyi +36 -38
  155. bpy/app/handlers/__init__.pyi +37 -38
  156. bpy/app/icons/__init__.pyi +8 -11
  157. bpy/app/timers/__init__.pyi +18 -17
  158. bpy/app/translations/__init__.pyi +32 -30
  159. bpy/msgbus/__init__.pyi +25 -20
  160. bpy/ops/__init__.pyi +63 -64
  161. bpy/ops/action/__init__.pyi +408 -436
  162. bpy/ops/anim/__init__.pyi +459 -577
  163. bpy/ops/armature/__init__.pyi +396 -498
  164. bpy/ops/asset/__init__.pyi +187 -213
  165. bpy/ops/boid/__init__.pyi +50 -68
  166. bpy/ops/brush/__init__.pyi +72 -97
  167. bpy/ops/buttons/__init__.pyi +202 -193
  168. bpy/ops/cachefile/__init__.pyi +198 -188
  169. bpy/ops/camera/__init__.pyi +24 -31
  170. bpy/ops/clip/__init__.pyi +1021 -1082
  171. bpy/ops/cloth/__init__.pyi +11 -15
  172. bpy/ops/collection/__init__.pyi +36 -51
  173. bpy/ops/console/__init__.pyi +155 -209
  174. bpy/ops/constraint/__init__.pyi +286 -254
  175. bpy/ops/curve/__init__.pyi +597 -659
  176. bpy/ops/curves/__init__.pyi +191 -225
  177. bpy/ops/cycles/__init__.pyi +21 -30
  178. bpy/ops/dpaint/__init__.pyi +34 -47
  179. bpy/ops/ed/__init__.pyi +160 -176
  180. bpy/ops/export_anim/__init__.pyi +51 -34
  181. bpy/ops/export_mesh/__init__.pyi +47 -45
  182. bpy/ops/export_scene/__init__.pyi +659 -504
  183. bpy/ops/file/__init__.pyi +469 -474
  184. bpy/ops/fluid/__init__.pyi +89 -119
  185. bpy/ops/font/__init__.pyi +325 -361
  186. bpy/ops/geometry/__init__.pyi +86 -114
  187. bpy/ops/gizmogroup/__init__.pyi +22 -28
  188. bpy/ops/gpencil/__init__.pyi +1900 -1976
  189. bpy/ops/graph/__init__.pyi +875 -894
  190. bpy/ops/grease_pencil/__init__.pyi +572 -508
  191. bpy/ops/image/__init__.pyi +805 -855
  192. bpy/ops/import_anim/__init__.pyi +66 -46
  193. bpy/ops/import_curve/__init__.pyi +7 -11
  194. bpy/ops/import_mesh/__init__.pyi +19 -25
  195. bpy/ops/import_scene/__init__.pyi +164 -147
  196. bpy/ops/info/__init__.pyi +88 -85
  197. bpy/ops/lattice/__init__.pyi +86 -90
  198. bpy/ops/marker/__init__.pyi +135 -146
  199. bpy/ops/mask/__init__.pyi +372 -436
  200. bpy/ops/material/__init__.pyi +18 -25
  201. bpy/ops/mball/__init__.pyi +93 -99
  202. bpy/ops/mesh/__init__.pyi +2525 -2664
  203. bpy/ops/nla/__init__.pyi +398 -455
  204. bpy/ops/node/__init__.pyi +1015 -1207
  205. bpy/ops/object/__init__.pyi +3423 -3390
  206. bpy/ops/outliner/__init__.pyi +667 -685
  207. bpy/ops/paint/__init__.pyi +719 -672
  208. bpy/ops/paintcurve/__init__.pyi +64 -85
  209. bpy/ops/palette/__init__.pyi +48 -67
  210. bpy/ops/particle/__init__.pyi +323 -367
  211. bpy/ops/pose/__init__.pyi +569 -474
  212. bpy/ops/poselib/__init__.pyi +77 -100
  213. bpy/ops/preferences/__init__.pyi +460 -512
  214. bpy/ops/ptcache/__init__.pyi +46 -63
  215. bpy/ops/render/__init__.pyi +121 -155
  216. bpy/ops/rigidbody/__init__.pyi +148 -143
  217. bpy/ops/scene/__init__.pyi +336 -380
  218. bpy/ops/screen/__init__.pyi +454 -530
  219. bpy/ops/script/__init__.pyi +19 -28
  220. bpy/ops/sculpt/__init__.pyi +734 -587
  221. bpy/ops/sculpt_curves/__init__.pyi +51 -56
  222. bpy/ops/sequencer/__init__.pyi +1617 -1500
  223. bpy/ops/sound/__init__.pyi +392 -315
  224. bpy/ops/spreadsheet/__init__.pyi +31 -42
  225. bpy/ops/surface/__init__.pyi +198 -163
  226. bpy/ops/text/__init__.pyi +479 -545
  227. bpy/ops/text_editor/__init__.pyi +11 -15
  228. bpy/ops/texture/__init__.pyi +26 -36
  229. bpy/ops/transform/__init__.pyi +825 -941
  230. bpy/ops/ui/__init__.pyi +246 -295
  231. bpy/ops/uilist/__init__.pyi +34 -38
  232. bpy/ops/uv/__init__.pyi +912 -824
  233. bpy/ops/view2d/__init__.pyi +157 -197
  234. bpy/ops/view3d/__init__.pyi +777 -878
  235. bpy/ops/wm/__init__.pyi +4102 -3595
  236. bpy/ops/workspace/__init__.pyi +42 -58
  237. bpy/ops/world/__init__.pyi +6 -9
  238. bpy/path/__init__.pyi +166 -109
  239. bpy/props/__init__.pyi +478 -395
  240. bpy/types/__init__.pyi +87194 -81467
  241. bpy/utils/__init__.pyi +325 -169
  242. bpy/utils/previews/__init__.pyi +108 -21
  243. bpy/utils/units/__init__.pyi +37 -39
  244. bpy_extras/__init__.pyi +4 -9
  245. bpy_extras/anim_utils/__init__.pyi +25 -55
  246. bpy_extras/asset_utils/__init__.pyi +3 -13
  247. bpy_extras/id_map_utils/__init__.pyi +1 -4
  248. bpy_extras/image_utils/__init__.pyi +33 -23
  249. bpy_extras/io_utils/__init__.pyi +116 -66
  250. bpy_extras/keyconfig_utils/__init__.pyi +5 -3
  251. bpy_extras/mesh_utils/__init__.pyi +42 -34
  252. bpy_extras/node_utils/__init__.pyi +4 -4
  253. bpy_extras/object_utils/__init__.pyi +58 -43
  254. bpy_extras/view3d_utils/__init__.pyi +64 -63
  255. bpy_restrict_state/__init__.pyi +14 -2
  256. bpy_types/__init__.pyi +3873 -998
  257. console_python/__init__.pyi +41 -8
  258. console_shell/__init__.pyi +24 -6
  259. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  260. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  261. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  262. freestyle/__init__.pyi +4 -5
  263. freestyle/chainingiterators/__init__.pyi +229 -73
  264. freestyle/functions/__init__.pyi +624 -402
  265. freestyle/predicates/__init__.pyi +381 -169
  266. freestyle/shaders/__init__.pyi +424 -155
  267. freestyle/types/__init__.pyi +1572 -726
  268. freestyle/utils/ContextFunctions/__init__.pyi +54 -43
  269. freestyle/utils/__init__.pyi +67 -31
  270. gpu/__init__.pyi +3 -4
  271. gpu/capabilities/__init__.pyi +57 -37
  272. gpu/matrix/__init__.pyi +14 -17
  273. gpu/platform/__init__.pyi +5 -6
  274. gpu/select/__init__.pyi +2 -5
  275. gpu/shader/__init__.pyi +14 -12
  276. gpu/state/__init__.pyi +48 -62
  277. gpu/texture/__init__.pyi +7 -7
  278. gpu/types/__init__.pyi +670 -229
  279. gpu_extras/__init__.pyi +1 -2
  280. gpu_extras/batch/__init__.pyi +27 -6
  281. gpu_extras/presets/__init__.pyi +67 -27
  282. graphviz_export/__init__.pyi +9 -3
  283. idprop/__init__.pyi +0 -1
  284. idprop/types/__init__.pyi +42 -13
  285. imbuf/__init__.pyi +6 -10
  286. imbuf/types/__init__.pyi +8 -16
  287. keyingsets_builtins/__init__.pyi +3149 -702
  288. keyingsets_utils/__init__.pyi +69 -15
  289. mathutils/__init__.pyi +951 -876
  290. mathutils/bvhtree/__init__.pyi +47 -48
  291. mathutils/geometry/__init__.pyi +237 -242
  292. mathutils/interpolate/__init__.pyi +3 -6
  293. mathutils/kdtree/__init__.pyi +23 -26
  294. mathutils/noise/__init__.pyi +50 -51
  295. nodeitems_builtins/__init__.pyi +50 -11
  296. nodeitems_utils/__init__.pyi +58 -11
  297. rna_info/__init__.pyi +230 -27
  298. rna_keymap_ui/__init__.pyi +29 -7
  299. rna_prop_ui/__init__.pyi +69 -13
  300. rna_xml/__init__.pyi +29 -7
  301. sys_info/__init__.pyi +4 -2
  302. bpy_extras/bmesh_utils/__init__.pyi +0 -7
  303. bpy_extras/extensions/__init__.pyi +0 -5
  304. bpy_extras/extensions/junction_module/__init__.pyi +0 -13
  305. bpy_extras/node_shader_utils/__init__.pyi +0 -132
  306. bpy_extras/wm_utils/__init__.pyi +0 -5
  307. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -30
  308. fake_bpy_module-20240210.dist-info/RECORD +0 -349
  309. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,1105 +1,1043 @@
1
- import sys
2
1
  import typing
3
- import bpy.types
4
2
  import bpy.ops.transform
3
+ import bpy.types
5
4
 
6
5
  GenericType = typing.TypeVar("GenericType")
7
6
 
8
7
  def cyclic_toggle(
9
- override_context: typing.Optional[
10
- typing.Union[typing.Dict, "bpy.types.Context"]
11
- ] = None,
12
- execution_context: typing.Optional[typing.Union[str, int]] = None,
13
- undo: typing.Optional[bool] = None,
14
- *,
15
- direction: typing.Optional[typing.Any] = "CYCLIC_U",
8
+ override_context: typing.Union[dict, bpy.types.Context] = None,
9
+ execution_context: typing.Union[str, int] = None,
10
+ undo: bool = None,
11
+ direction: typing.Any = "CYCLIC_U",
16
12
  ):
17
13
  """Make active spline closed/opened loop
18
14
 
19
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
20
- :type execution_context: typing.Optional[typing.Union[str, int]]
21
- :type undo: typing.Optional[bool]
15
+ :type override_context: typing.Union[dict, bpy.types.Context]
16
+ :type execution_context: typing.Union[str, int]
17
+ :type undo: bool
22
18
  :param direction: Direction, Direction to make surface cyclic in
23
- :type direction: typing.Optional[typing.Any]
19
+ :type direction: typing.Any
24
20
  """
25
21
 
26
22
  ...
27
23
 
28
24
  def de_select_first(
29
- override_context: typing.Optional[
30
- typing.Union[typing.Dict, "bpy.types.Context"]
31
- ] = None,
32
- execution_context: typing.Optional[typing.Union[str, int]] = None,
33
- undo: typing.Optional[bool] = None,
25
+ override_context: typing.Union[dict, bpy.types.Context] = None,
26
+ execution_context: typing.Union[str, int] = None,
27
+ undo: bool = None,
34
28
  ):
35
29
  """(De)select first of visible part of each NURBS
36
30
 
37
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
38
- :type execution_context: typing.Optional[typing.Union[str, int]]
39
- :type undo: typing.Optional[bool]
31
+ :type override_context: typing.Union[dict, bpy.types.Context]
32
+ :type execution_context: typing.Union[str, int]
33
+ :type undo: bool
40
34
  """
41
35
 
42
36
  ...
43
37
 
44
38
  def de_select_last(
45
- override_context: typing.Optional[
46
- typing.Union[typing.Dict, "bpy.types.Context"]
47
- ] = None,
48
- execution_context: typing.Optional[typing.Union[str, int]] = None,
49
- undo: typing.Optional[bool] = None,
39
+ override_context: typing.Union[dict, bpy.types.Context] = None,
40
+ execution_context: typing.Union[str, int] = None,
41
+ undo: bool = None,
50
42
  ):
51
43
  """(De)select last of visible part of each NURBS
52
44
 
53
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
54
- :type execution_context: typing.Optional[typing.Union[str, int]]
55
- :type undo: typing.Optional[bool]
45
+ :type override_context: typing.Union[dict, bpy.types.Context]
46
+ :type execution_context: typing.Union[str, int]
47
+ :type undo: bool
56
48
  """
57
49
 
58
50
  ...
59
51
 
60
52
  def decimate(
61
- override_context: typing.Optional[
62
- typing.Union[typing.Dict, "bpy.types.Context"]
63
- ] = None,
64
- execution_context: typing.Optional[typing.Union[str, int]] = None,
65
- undo: typing.Optional[bool] = None,
66
- *,
67
- ratio: typing.Optional[typing.Any] = 1.0,
53
+ override_context: typing.Union[dict, bpy.types.Context] = None,
54
+ execution_context: typing.Union[str, int] = None,
55
+ undo: bool = None,
56
+ ratio: typing.Any = 1.0,
68
57
  ):
69
58
  """Simplify selected curves
70
59
 
71
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
72
- :type execution_context: typing.Optional[typing.Union[str, int]]
73
- :type undo: typing.Optional[bool]
60
+ :type override_context: typing.Union[dict, bpy.types.Context]
61
+ :type execution_context: typing.Union[str, int]
62
+ :type undo: bool
74
63
  :param ratio: Ratio
75
- :type ratio: typing.Optional[typing.Any]
64
+ :type ratio: typing.Any
76
65
  """
77
66
 
78
67
  ...
79
68
 
80
69
  def delete(
81
- override_context: typing.Optional[
82
- typing.Union[typing.Dict, "bpy.types.Context"]
83
- ] = None,
84
- execution_context: typing.Optional[typing.Union[str, int]] = None,
85
- undo: typing.Optional[bool] = None,
86
- *,
87
- type: typing.Optional[typing.Any] = "VERT",
70
+ override_context: typing.Union[dict, bpy.types.Context] = None,
71
+ execution_context: typing.Union[str, int] = None,
72
+ undo: bool = None,
73
+ type: typing.Any = "VERT",
88
74
  ):
89
75
  """Delete selected control points or segments
90
76
 
91
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
92
- :type execution_context: typing.Optional[typing.Union[str, int]]
93
- :type undo: typing.Optional[bool]
77
+ :type override_context: typing.Union[dict, bpy.types.Context]
78
+ :type execution_context: typing.Union[str, int]
79
+ :type undo: bool
94
80
  :param type: Type, Which elements to delete
95
- :type type: typing.Optional[typing.Any]
81
+ :type type: typing.Any
96
82
  """
97
83
 
98
84
  ...
99
85
 
100
86
  def dissolve_verts(
101
- override_context: typing.Optional[
102
- typing.Union[typing.Dict, "bpy.types.Context"]
103
- ] = None,
104
- execution_context: typing.Optional[typing.Union[str, int]] = None,
105
- undo: typing.Optional[bool] = None,
87
+ override_context: typing.Union[dict, bpy.types.Context] = None,
88
+ execution_context: typing.Union[str, int] = None,
89
+ undo: bool = None,
106
90
  ):
107
91
  """Delete selected control points, correcting surrounding handles
108
92
 
109
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
110
- :type execution_context: typing.Optional[typing.Union[str, int]]
111
- :type undo: typing.Optional[bool]
93
+ :type override_context: typing.Union[dict, bpy.types.Context]
94
+ :type execution_context: typing.Union[str, int]
95
+ :type undo: bool
112
96
  """
113
97
 
114
98
  ...
115
99
 
116
100
  def draw(
117
- override_context: typing.Optional[
118
- typing.Union[typing.Dict, "bpy.types.Context"]
119
- ] = None,
120
- execution_context: typing.Optional[typing.Union[str, int]] = None,
121
- undo: typing.Optional[bool] = None,
122
- *,
123
- error_threshold: typing.Optional[typing.Any] = 0.0,
124
- fit_method: typing.Optional[typing.Union[str, int]] = "REFIT",
125
- corner_angle: typing.Optional[typing.Any] = 1.22173,
126
- use_cyclic: typing.Optional[typing.Union[bool, typing.Any]] = True,
127
- stroke: typing.Optional[
128
- bpy.types.bpy_prop_collection["bpy.types.OperatorStrokeElement"]
129
- ] = None,
130
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
101
+ override_context: typing.Union[dict, bpy.types.Context] = None,
102
+ execution_context: typing.Union[str, int] = None,
103
+ undo: bool = None,
104
+ error_threshold: typing.Any = 0.0,
105
+ fit_method: typing.Any = "REFIT",
106
+ corner_angle: typing.Any = 1.22173,
107
+ use_cyclic: typing.Union[bool, typing.Any] = True,
108
+ stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] = None,
109
+ wait_for_input: typing.Union[bool, typing.Any] = True,
131
110
  ):
132
111
  """Draw a freehand spline
133
112
 
134
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
135
- :type execution_context: typing.Optional[typing.Union[str, int]]
136
- :type undo: typing.Optional[bool]
113
+ :type override_context: typing.Union[dict, bpy.types.Context]
114
+ :type execution_context: typing.Union[str, int]
115
+ :type undo: bool
137
116
  :param error_threshold: Error, Error distance threshold (in object units)
138
- :type error_threshold: typing.Optional[typing.Any]
117
+ :type error_threshold: typing.Any
139
118
  :param fit_method: Fit Method
140
- :type fit_method: typing.Optional[typing.Union[str, int]]
119
+ :type fit_method: typing.Any
141
120
  :param corner_angle: Corner Angle
142
- :type corner_angle: typing.Optional[typing.Any]
121
+ :type corner_angle: typing.Any
143
122
  :param use_cyclic: Cyclic
144
- :type use_cyclic: typing.Optional[typing.Union[bool, typing.Any]]
123
+ :type use_cyclic: typing.Union[bool, typing.Any]
145
124
  :param stroke: Stroke
146
- :type stroke: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorStrokeElement']]
125
+ :type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
147
126
  :param wait_for_input: Wait for Input
148
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
127
+ :type wait_for_input: typing.Union[bool, typing.Any]
149
128
  """
150
129
 
151
130
  ...
152
131
 
153
132
  def duplicate(
154
- override_context: typing.Optional[
155
- typing.Union[typing.Dict, "bpy.types.Context"]
156
- ] = None,
157
- execution_context: typing.Optional[typing.Union[str, int]] = None,
158
- undo: typing.Optional[bool] = None,
133
+ override_context: typing.Union[dict, bpy.types.Context] = None,
134
+ execution_context: typing.Union[str, int] = None,
135
+ undo: bool = None,
159
136
  ):
160
137
  """Duplicate selected control points
161
138
 
162
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
163
- :type execution_context: typing.Optional[typing.Union[str, int]]
164
- :type undo: typing.Optional[bool]
139
+ :type override_context: typing.Union[dict, bpy.types.Context]
140
+ :type execution_context: typing.Union[str, int]
141
+ :type undo: bool
165
142
  """
166
143
 
167
144
  ...
168
145
 
169
146
  def duplicate_move(
170
- override_context: typing.Optional[
171
- typing.Union[typing.Dict, "bpy.types.Context"]
172
- ] = None,
173
- execution_context: typing.Optional[typing.Union[str, int]] = None,
174
- undo: typing.Optional[bool] = None,
175
- *,
176
- CURVE_OT_duplicate: typing.Optional["duplicate"] = None,
177
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
147
+ override_context: typing.Union[dict, bpy.types.Context] = None,
148
+ execution_context: typing.Union[str, int] = None,
149
+ undo: bool = None,
150
+ CURVE_OT_duplicate: duplicate = None,
151
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
178
152
  ):
179
153
  """Duplicate curve and move
180
154
 
181
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
182
- :type execution_context: typing.Optional[typing.Union[str, int]]
183
- :type undo: typing.Optional[bool]
155
+ :type override_context: typing.Union[dict, bpy.types.Context]
156
+ :type execution_context: typing.Union[str, int]
157
+ :type undo: bool
184
158
  :param CURVE_OT_duplicate: Duplicate Curve, Duplicate selected control points
185
- :type CURVE_OT_duplicate: typing.Optional['duplicate']
159
+ :type CURVE_OT_duplicate: duplicate
186
160
  :param TRANSFORM_OT_translate: Move, Move selected items
187
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
161
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
188
162
  """
189
163
 
190
164
  ...
191
165
 
192
166
  def extrude(
193
- override_context: typing.Optional[
194
- typing.Union[typing.Dict, "bpy.types.Context"]
195
- ] = None,
196
- execution_context: typing.Optional[typing.Union[str, int]] = None,
197
- undo: typing.Optional[bool] = None,
198
- *,
199
- mode: typing.Optional[typing.Union[str, int]] = "TRANSLATION",
167
+ override_context: typing.Union[dict, bpy.types.Context] = None,
168
+ execution_context: typing.Union[str, int] = None,
169
+ undo: bool = None,
170
+ mode: typing.Any = "TRANSLATION",
200
171
  ):
201
172
  """Extrude selected control point(s)
202
173
 
203
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
204
- :type execution_context: typing.Optional[typing.Union[str, int]]
205
- :type undo: typing.Optional[bool]
174
+ :type override_context: typing.Union[dict, bpy.types.Context]
175
+ :type execution_context: typing.Union[str, int]
176
+ :type undo: bool
206
177
  :param mode: Mode
207
- :type mode: typing.Optional[typing.Union[str, int]]
178
+ :type mode: typing.Any
208
179
  """
209
180
 
210
181
  ...
211
182
 
212
183
  def extrude_move(
213
- override_context: typing.Optional[
214
- typing.Union[typing.Dict, "bpy.types.Context"]
215
- ] = None,
216
- execution_context: typing.Optional[typing.Union[str, int]] = None,
217
- undo: typing.Optional[bool] = None,
218
- *,
219
- CURVE_OT_extrude: typing.Optional["extrude"] = None,
220
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
184
+ override_context: typing.Union[dict, bpy.types.Context] = None,
185
+ execution_context: typing.Union[str, int] = None,
186
+ undo: bool = None,
187
+ CURVE_OT_extrude: extrude = None,
188
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
221
189
  ):
222
190
  """Extrude curve and move result
223
191
 
224
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
225
- :type execution_context: typing.Optional[typing.Union[str, int]]
226
- :type undo: typing.Optional[bool]
192
+ :type override_context: typing.Union[dict, bpy.types.Context]
193
+ :type execution_context: typing.Union[str, int]
194
+ :type undo: bool
227
195
  :param CURVE_OT_extrude: Extrude, Extrude selected control point(s)
228
- :type CURVE_OT_extrude: typing.Optional['extrude']
196
+ :type CURVE_OT_extrude: extrude
229
197
  :param TRANSFORM_OT_translate: Move, Move selected items
230
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
198
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
231
199
  """
232
200
 
233
201
  ...
234
202
 
235
203
  def handle_type_set(
236
- override_context: typing.Optional[
237
- typing.Union[typing.Dict, "bpy.types.Context"]
238
- ] = None,
239
- execution_context: typing.Optional[typing.Union[str, int]] = None,
240
- undo: typing.Optional[bool] = None,
241
- *,
242
- type: typing.Optional[typing.Any] = "AUTOMATIC",
204
+ override_context: typing.Union[dict, bpy.types.Context] = None,
205
+ execution_context: typing.Union[str, int] = None,
206
+ undo: bool = None,
207
+ type: typing.Any = "AUTOMATIC",
243
208
  ):
244
209
  """Set type of handles for selected control points
245
210
 
246
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
247
- :type execution_context: typing.Optional[typing.Union[str, int]]
248
- :type undo: typing.Optional[bool]
211
+ :type override_context: typing.Union[dict, bpy.types.Context]
212
+ :type execution_context: typing.Union[str, int]
213
+ :type undo: bool
249
214
  :param type: Type, Spline type
250
- :type type: typing.Optional[typing.Any]
215
+ :type type: typing.Any
251
216
  """
252
217
 
253
218
  ...
254
219
 
255
220
  def hide(
256
- override_context: typing.Optional[
257
- typing.Union[typing.Dict, "bpy.types.Context"]
258
- ] = None,
259
- execution_context: typing.Optional[typing.Union[str, int]] = None,
260
- undo: typing.Optional[bool] = None,
261
- *,
262
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
221
+ override_context: typing.Union[dict, bpy.types.Context] = None,
222
+ execution_context: typing.Union[str, int] = None,
223
+ undo: bool = None,
224
+ unselected: typing.Union[bool, typing.Any] = False,
263
225
  ):
264
226
  """Hide (un)selected control points
265
227
 
266
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
267
- :type execution_context: typing.Optional[typing.Union[str, int]]
268
- :type undo: typing.Optional[bool]
228
+ :type override_context: typing.Union[dict, bpy.types.Context]
229
+ :type execution_context: typing.Union[str, int]
230
+ :type undo: bool
269
231
  :param unselected: Unselected, Hide unselected rather than selected
270
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
232
+ :type unselected: typing.Union[bool, typing.Any]
271
233
  """
272
234
 
273
235
  ...
274
236
 
275
237
  def make_segment(
276
- override_context: typing.Optional[
277
- typing.Union[typing.Dict, "bpy.types.Context"]
278
- ] = None,
279
- execution_context: typing.Optional[typing.Union[str, int]] = None,
280
- undo: typing.Optional[bool] = None,
238
+ override_context: typing.Union[dict, bpy.types.Context] = None,
239
+ execution_context: typing.Union[str, int] = None,
240
+ undo: bool = None,
281
241
  ):
282
242
  """Join two curves by their selected ends
283
243
 
284
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
285
- :type execution_context: typing.Optional[typing.Union[str, int]]
286
- :type undo: typing.Optional[bool]
244
+ :type override_context: typing.Union[dict, bpy.types.Context]
245
+ :type execution_context: typing.Union[str, int]
246
+ :type undo: bool
287
247
  """
288
248
 
289
249
  ...
290
250
 
291
251
  def match_texture_space(
292
- override_context: typing.Optional[
293
- typing.Union[typing.Dict, "bpy.types.Context"]
294
- ] = None,
295
- execution_context: typing.Optional[typing.Union[str, int]] = None,
296
- undo: typing.Optional[bool] = None,
252
+ override_context: typing.Union[dict, bpy.types.Context] = None,
253
+ execution_context: typing.Union[str, int] = None,
254
+ undo: bool = None,
297
255
  ):
298
256
  """Match texture space to object's bounding box
299
257
 
300
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
301
- :type execution_context: typing.Optional[typing.Union[str, int]]
302
- :type undo: typing.Optional[bool]
258
+ :type override_context: typing.Union[dict, bpy.types.Context]
259
+ :type execution_context: typing.Union[str, int]
260
+ :type undo: bool
303
261
  """
304
262
 
305
263
  ...
306
264
 
307
265
  def normals_make_consistent(
308
- override_context: typing.Optional[
309
- typing.Union[typing.Dict, "bpy.types.Context"]
310
- ] = None,
311
- execution_context: typing.Optional[typing.Union[str, int]] = None,
312
- undo: typing.Optional[bool] = None,
313
- *,
314
- calc_length: typing.Optional[typing.Union[bool, typing.Any]] = False,
266
+ override_context: typing.Union[dict, bpy.types.Context] = None,
267
+ execution_context: typing.Union[str, int] = None,
268
+ undo: bool = None,
269
+ calc_length: typing.Union[bool, typing.Any] = False,
315
270
  ):
316
271
  """Recalculate the direction of selected handles
317
272
 
318
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
319
- :type execution_context: typing.Optional[typing.Union[str, int]]
320
- :type undo: typing.Optional[bool]
273
+ :type override_context: typing.Union[dict, bpy.types.Context]
274
+ :type execution_context: typing.Union[str, int]
275
+ :type undo: bool
321
276
  :param calc_length: Length, Recalculate handle length
322
- :type calc_length: typing.Optional[typing.Union[bool, typing.Any]]
277
+ :type calc_length: typing.Union[bool, typing.Any]
323
278
  """
324
279
 
325
280
  ...
326
281
 
327
282
  def pen(
328
- override_context: typing.Optional[
329
- typing.Union[typing.Dict, "bpy.types.Context"]
330
- ] = None,
331
- execution_context: typing.Optional[typing.Union[str, int]] = None,
332
- undo: typing.Optional[bool] = None,
333
- *,
334
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
335
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
336
- toggle: typing.Optional[typing.Union[bool, typing.Any]] = False,
337
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
338
- select_passthrough: typing.Optional[typing.Union[bool, typing.Any]] = False,
339
- extrude_point: typing.Optional[typing.Union[bool, typing.Any]] = False,
340
- extrude_handle: typing.Optional[typing.Any] = "VECTOR",
341
- delete_point: typing.Optional[typing.Union[bool, typing.Any]] = False,
342
- insert_point: typing.Optional[typing.Union[bool, typing.Any]] = False,
343
- move_segment: typing.Optional[typing.Union[bool, typing.Any]] = False,
344
- select_point: typing.Optional[typing.Union[bool, typing.Any]] = False,
345
- move_point: typing.Optional[typing.Union[bool, typing.Any]] = False,
346
- close_spline: typing.Optional[typing.Union[bool, typing.Any]] = True,
347
- close_spline_method: typing.Optional[typing.Any] = "OFF",
348
- toggle_vector: typing.Optional[typing.Union[bool, typing.Any]] = False,
349
- cycle_handle_type: typing.Optional[typing.Union[bool, typing.Any]] = False,
283
+ override_context: typing.Union[dict, bpy.types.Context] = None,
284
+ execution_context: typing.Union[str, int] = None,
285
+ undo: bool = None,
286
+ extend: typing.Union[bool, typing.Any] = False,
287
+ deselect: typing.Union[bool, typing.Any] = False,
288
+ toggle: typing.Union[bool, typing.Any] = False,
289
+ deselect_all: typing.Union[bool, typing.Any] = False,
290
+ select_passthrough: typing.Union[bool, typing.Any] = False,
291
+ extrude_point: typing.Union[bool, typing.Any] = False,
292
+ extrude_handle: typing.Any = "VECTOR",
293
+ delete_point: typing.Union[bool, typing.Any] = False,
294
+ insert_point: typing.Union[bool, typing.Any] = False,
295
+ move_segment: typing.Union[bool, typing.Any] = False,
296
+ select_point: typing.Union[bool, typing.Any] = False,
297
+ move_point: typing.Union[bool, typing.Any] = False,
298
+ close_spline: typing.Union[bool, typing.Any] = True,
299
+ close_spline_method: typing.Any = "OFF",
300
+ toggle_vector: typing.Union[bool, typing.Any] = False,
301
+ cycle_handle_type: typing.Union[bool, typing.Any] = False,
350
302
  ):
351
303
  """Construct and edit splines
352
304
 
353
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
354
- :type execution_context: typing.Optional[typing.Union[str, int]]
355
- :type undo: typing.Optional[bool]
356
- :param extend: Extend, Extend selection instead of deselecting everything first
357
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
358
- :param deselect: Deselect, Remove from selection
359
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
360
- :param toggle: Toggle Selection, Toggle the selection
361
- :type toggle: typing.Optional[typing.Union[bool, typing.Any]]
362
- :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
363
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
364
- :param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
365
- :type select_passthrough: typing.Optional[typing.Union[bool, typing.Any]]
366
- :param extrude_point: Extrude Point, Add a point connected to the last selected point
367
- :type extrude_point: typing.Optional[typing.Union[bool, typing.Any]]
368
- :param extrude_handle: Extrude Handle Type, Type of the extruded handle
369
- :type extrude_handle: typing.Optional[typing.Any]
370
- :param delete_point: Delete Point, Delete an existing point
371
- :type delete_point: typing.Optional[typing.Union[bool, typing.Any]]
372
- :param insert_point: Insert Point, Insert Point into a curve segment
373
- :type insert_point: typing.Optional[typing.Union[bool, typing.Any]]
374
- :param move_segment: Move Segment, Delete an existing point
375
- :type move_segment: typing.Optional[typing.Union[bool, typing.Any]]
376
- :param select_point: Select Point, Select a point or its handles
377
- :type select_point: typing.Optional[typing.Union[bool, typing.Any]]
378
- :param move_point: Move Point, Move a point or its handles
379
- :type move_point: typing.Optional[typing.Union[bool, typing.Any]]
380
- :param close_spline: Close Spline, Make a spline cyclic by clicking endpoints
381
- :type close_spline: typing.Optional[typing.Union[bool, typing.Any]]
382
- :param close_spline_method: Close Spline Method, The condition for close spline to activate * ``OFF`` None. * ``ON_PRESS`` On Press -- Move handles after closing the spline. * ``ON_CLICK`` On Click -- Spline closes on release if not dragged.
383
- :type close_spline_method: typing.Optional[typing.Any]
384
- :param toggle_vector: Toggle Vector, Toggle between Vector and Auto handles
385
- :type toggle_vector: typing.Optional[typing.Union[bool, typing.Any]]
386
- :param cycle_handle_type: Cycle Handle Type, Cycle between all four handle types
387
- :type cycle_handle_type: typing.Optional[typing.Union[bool, typing.Any]]
305
+ :type override_context: typing.Union[dict, bpy.types.Context]
306
+ :type execution_context: typing.Union[str, int]
307
+ :type undo: bool
308
+ :param extend: Extend, Extend selection instead of deselecting everything first
309
+ :type extend: typing.Union[bool, typing.Any]
310
+ :param deselect: Deselect, Remove from selection
311
+ :type deselect: typing.Union[bool, typing.Any]
312
+ :param toggle: Toggle Selection, Toggle the selection
313
+ :type toggle: typing.Union[bool, typing.Any]
314
+ :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
315
+ :type deselect_all: typing.Union[bool, typing.Any]
316
+ :param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
317
+ :type select_passthrough: typing.Union[bool, typing.Any]
318
+ :param extrude_point: Extrude Point, Add a point connected to the last selected point
319
+ :type extrude_point: typing.Union[bool, typing.Any]
320
+ :param extrude_handle: Extrude Handle Type, Type of the extruded handle
321
+ :type extrude_handle: typing.Any
322
+ :param delete_point: Delete Point, Delete an existing point
323
+ :type delete_point: typing.Union[bool, typing.Any]
324
+ :param insert_point: Insert Point, Insert Point into a curve segment
325
+ :type insert_point: typing.Union[bool, typing.Any]
326
+ :param move_segment: Move Segment, Delete an existing point
327
+ :type move_segment: typing.Union[bool, typing.Any]
328
+ :param select_point: Select Point, Select a point or its handles
329
+ :type select_point: typing.Union[bool, typing.Any]
330
+ :param move_point: Move Point, Move a point or its handles
331
+ :type move_point: typing.Union[bool, typing.Any]
332
+ :param close_spline: Close Spline, Make a spline cyclic by clicking endpoints
333
+ :type close_spline: typing.Union[bool, typing.Any]
334
+ :param close_spline_method: Close Spline Method, The condition for close spline to activate
335
+
336
+ OFF
337
+ None.
338
+
339
+ ON_PRESS
340
+ On Press -- Move handles after closing the spline.
341
+
342
+ ON_CLICK
343
+ On Click -- Spline closes on release if not dragged.
344
+ :type close_spline_method: typing.Any
345
+ :param toggle_vector: Toggle Vector, Toggle between Vector and Auto handles
346
+ :type toggle_vector: typing.Union[bool, typing.Any]
347
+ :param cycle_handle_type: Cycle Handle Type, Cycle between all four handle types
348
+ :type cycle_handle_type: typing.Union[bool, typing.Any]
388
349
  """
389
350
 
390
351
  ...
391
352
 
392
353
  def primitive_bezier_circle_add(
393
- override_context: typing.Optional[
394
- typing.Union[typing.Dict, "bpy.types.Context"]
395
- ] = None,
396
- execution_context: typing.Optional[typing.Union[str, int]] = None,
397
- undo: typing.Optional[bool] = None,
398
- *,
399
- radius: typing.Optional[typing.Any] = 1.0,
400
- enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
401
- align: typing.Optional[typing.Any] = "WORLD",
402
- location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
403
- rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
404
- scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
354
+ override_context: typing.Union[dict, bpy.types.Context] = None,
355
+ execution_context: typing.Union[str, int] = None,
356
+ undo: bool = None,
357
+ radius: typing.Any = 1.0,
358
+ enter_editmode: typing.Union[bool, typing.Any] = False,
359
+ align: typing.Any = "WORLD",
360
+ location: typing.Any = (0.0, 0.0, 0.0),
361
+ rotation: typing.Any = (0.0, 0.0, 0.0),
362
+ scale: typing.Any = (0.0, 0.0, 0.0),
405
363
  ):
406
364
  """Construct a Bézier Circle
407
365
 
408
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
409
- :type execution_context: typing.Optional[typing.Union[str, int]]
410
- :type undo: typing.Optional[bool]
411
- :param radius: Radius
412
- :type radius: typing.Optional[typing.Any]
413
- :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
414
- :type enter_editmode: typing.Optional[typing.Union[bool, typing.Any]]
415
- :param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
416
- :type align: typing.Optional[typing.Any]
417
- :param location: Location, Location for the newly added object
418
- :type location: typing.Optional[typing.Any]
419
- :param rotation: Rotation, Rotation for the newly added object
420
- :type rotation: typing.Optional[typing.Any]
421
- :param scale: Scale, Scale for the newly added object
422
- :type scale: typing.Optional[typing.Any]
366
+ :type override_context: typing.Union[dict, bpy.types.Context]
367
+ :type execution_context: typing.Union[str, int]
368
+ :type undo: bool
369
+ :param radius: Radius
370
+ :type radius: typing.Any
371
+ :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
372
+ :type enter_editmode: typing.Union[bool, typing.Any]
373
+ :param align: Align, The alignment of the new object
374
+
375
+ WORLD
376
+ World -- Align the new object to the world.
377
+
378
+ VIEW
379
+ View -- Align the new object to the view.
380
+
381
+ CURSOR
382
+ 3D Cursor -- Use the 3D cursor orientation for the new object.
383
+ :type align: typing.Any
384
+ :param location: Location, Location for the newly added object
385
+ :type location: typing.Any
386
+ :param rotation: Rotation, Rotation for the newly added object
387
+ :type rotation: typing.Any
388
+ :param scale: Scale, Scale for the newly added object
389
+ :type scale: typing.Any
423
390
  """
424
391
 
425
392
  ...
426
393
 
427
394
  def primitive_bezier_curve_add(
428
- override_context: typing.Optional[
429
- typing.Union[typing.Dict, "bpy.types.Context"]
430
- ] = None,
431
- execution_context: typing.Optional[typing.Union[str, int]] = None,
432
- undo: typing.Optional[bool] = None,
433
- *,
434
- radius: typing.Optional[typing.Any] = 1.0,
435
- enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
436
- align: typing.Optional[typing.Any] = "WORLD",
437
- location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
438
- rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
439
- scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
395
+ override_context: typing.Union[dict, bpy.types.Context] = None,
396
+ execution_context: typing.Union[str, int] = None,
397
+ undo: bool = None,
398
+ radius: typing.Any = 1.0,
399
+ enter_editmode: typing.Union[bool, typing.Any] = False,
400
+ align: typing.Any = "WORLD",
401
+ location: typing.Any = (0.0, 0.0, 0.0),
402
+ rotation: typing.Any = (0.0, 0.0, 0.0),
403
+ scale: typing.Any = (0.0, 0.0, 0.0),
440
404
  ):
441
405
  """Construct a Bézier Curve
442
406
 
443
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
444
- :type execution_context: typing.Optional[typing.Union[str, int]]
445
- :type undo: typing.Optional[bool]
446
- :param radius: Radius
447
- :type radius: typing.Optional[typing.Any]
448
- :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
449
- :type enter_editmode: typing.Optional[typing.Union[bool, typing.Any]]
450
- :param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
451
- :type align: typing.Optional[typing.Any]
452
- :param location: Location, Location for the newly added object
453
- :type location: typing.Optional[typing.Any]
454
- :param rotation: Rotation, Rotation for the newly added object
455
- :type rotation: typing.Optional[typing.Any]
456
- :param scale: Scale, Scale for the newly added object
457
- :type scale: typing.Optional[typing.Any]
407
+ :type override_context: typing.Union[dict, bpy.types.Context]
408
+ :type execution_context: typing.Union[str, int]
409
+ :type undo: bool
410
+ :param radius: Radius
411
+ :type radius: typing.Any
412
+ :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
413
+ :type enter_editmode: typing.Union[bool, typing.Any]
414
+ :param align: Align, The alignment of the new object
415
+
416
+ WORLD
417
+ World -- Align the new object to the world.
418
+
419
+ VIEW
420
+ View -- Align the new object to the view.
421
+
422
+ CURSOR
423
+ 3D Cursor -- Use the 3D cursor orientation for the new object.
424
+ :type align: typing.Any
425
+ :param location: Location, Location for the newly added object
426
+ :type location: typing.Any
427
+ :param rotation: Rotation, Rotation for the newly added object
428
+ :type rotation: typing.Any
429
+ :param scale: Scale, Scale for the newly added object
430
+ :type scale: typing.Any
458
431
  """
459
432
 
460
433
  ...
461
434
 
462
435
  def primitive_nurbs_circle_add(
463
- override_context: typing.Optional[
464
- typing.Union[typing.Dict, "bpy.types.Context"]
465
- ] = None,
466
- execution_context: typing.Optional[typing.Union[str, int]] = None,
467
- undo: typing.Optional[bool] = None,
468
- *,
469
- radius: typing.Optional[typing.Any] = 1.0,
470
- enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
471
- align: typing.Optional[typing.Any] = "WORLD",
472
- location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
473
- rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
474
- scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
436
+ override_context: typing.Union[dict, bpy.types.Context] = None,
437
+ execution_context: typing.Union[str, int] = None,
438
+ undo: bool = None,
439
+ radius: typing.Any = 1.0,
440
+ enter_editmode: typing.Union[bool, typing.Any] = False,
441
+ align: typing.Any = "WORLD",
442
+ location: typing.Any = (0.0, 0.0, 0.0),
443
+ rotation: typing.Any = (0.0, 0.0, 0.0),
444
+ scale: typing.Any = (0.0, 0.0, 0.0),
475
445
  ):
476
446
  """Construct a Nurbs Circle
477
447
 
478
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
479
- :type execution_context: typing.Optional[typing.Union[str, int]]
480
- :type undo: typing.Optional[bool]
481
- :param radius: Radius
482
- :type radius: typing.Optional[typing.Any]
483
- :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
484
- :type enter_editmode: typing.Optional[typing.Union[bool, typing.Any]]
485
- :param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
486
- :type align: typing.Optional[typing.Any]
487
- :param location: Location, Location for the newly added object
488
- :type location: typing.Optional[typing.Any]
489
- :param rotation: Rotation, Rotation for the newly added object
490
- :type rotation: typing.Optional[typing.Any]
491
- :param scale: Scale, Scale for the newly added object
492
- :type scale: typing.Optional[typing.Any]
448
+ :type override_context: typing.Union[dict, bpy.types.Context]
449
+ :type execution_context: typing.Union[str, int]
450
+ :type undo: bool
451
+ :param radius: Radius
452
+ :type radius: typing.Any
453
+ :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
454
+ :type enter_editmode: typing.Union[bool, typing.Any]
455
+ :param align: Align, The alignment of the new object
456
+
457
+ WORLD
458
+ World -- Align the new object to the world.
459
+
460
+ VIEW
461
+ View -- Align the new object to the view.
462
+
463
+ CURSOR
464
+ 3D Cursor -- Use the 3D cursor orientation for the new object.
465
+ :type align: typing.Any
466
+ :param location: Location, Location for the newly added object
467
+ :type location: typing.Any
468
+ :param rotation: Rotation, Rotation for the newly added object
469
+ :type rotation: typing.Any
470
+ :param scale: Scale, Scale for the newly added object
471
+ :type scale: typing.Any
493
472
  """
494
473
 
495
474
  ...
496
475
 
497
476
  def primitive_nurbs_curve_add(
498
- override_context: typing.Optional[
499
- typing.Union[typing.Dict, "bpy.types.Context"]
500
- ] = None,
501
- execution_context: typing.Optional[typing.Union[str, int]] = None,
502
- undo: typing.Optional[bool] = None,
503
- *,
504
- radius: typing.Optional[typing.Any] = 1.0,
505
- enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
506
- align: typing.Optional[typing.Any] = "WORLD",
507
- location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
508
- rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
509
- scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
477
+ override_context: typing.Union[dict, bpy.types.Context] = None,
478
+ execution_context: typing.Union[str, int] = None,
479
+ undo: bool = None,
480
+ radius: typing.Any = 1.0,
481
+ enter_editmode: typing.Union[bool, typing.Any] = False,
482
+ align: typing.Any = "WORLD",
483
+ location: typing.Any = (0.0, 0.0, 0.0),
484
+ rotation: typing.Any = (0.0, 0.0, 0.0),
485
+ scale: typing.Any = (0.0, 0.0, 0.0),
510
486
  ):
511
487
  """Construct a Nurbs Curve
512
488
 
513
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
514
- :type execution_context: typing.Optional[typing.Union[str, int]]
515
- :type undo: typing.Optional[bool]
516
- :param radius: Radius
517
- :type radius: typing.Optional[typing.Any]
518
- :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
519
- :type enter_editmode: typing.Optional[typing.Union[bool, typing.Any]]
520
- :param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
521
- :type align: typing.Optional[typing.Any]
522
- :param location: Location, Location for the newly added object
523
- :type location: typing.Optional[typing.Any]
524
- :param rotation: Rotation, Rotation for the newly added object
525
- :type rotation: typing.Optional[typing.Any]
526
- :param scale: Scale, Scale for the newly added object
527
- :type scale: typing.Optional[typing.Any]
489
+ :type override_context: typing.Union[dict, bpy.types.Context]
490
+ :type execution_context: typing.Union[str, int]
491
+ :type undo: bool
492
+ :param radius: Radius
493
+ :type radius: typing.Any
494
+ :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
495
+ :type enter_editmode: typing.Union[bool, typing.Any]
496
+ :param align: Align, The alignment of the new object
497
+
498
+ WORLD
499
+ World -- Align the new object to the world.
500
+
501
+ VIEW
502
+ View -- Align the new object to the view.
503
+
504
+ CURSOR
505
+ 3D Cursor -- Use the 3D cursor orientation for the new object.
506
+ :type align: typing.Any
507
+ :param location: Location, Location for the newly added object
508
+ :type location: typing.Any
509
+ :param rotation: Rotation, Rotation for the newly added object
510
+ :type rotation: typing.Any
511
+ :param scale: Scale, Scale for the newly added object
512
+ :type scale: typing.Any
528
513
  """
529
514
 
530
515
  ...
531
516
 
532
517
  def primitive_nurbs_path_add(
533
- override_context: typing.Optional[
534
- typing.Union[typing.Dict, "bpy.types.Context"]
535
- ] = None,
536
- execution_context: typing.Optional[typing.Union[str, int]] = None,
537
- undo: typing.Optional[bool] = None,
538
- *,
539
- radius: typing.Optional[typing.Any] = 1.0,
540
- enter_editmode: typing.Optional[typing.Union[bool, typing.Any]] = False,
541
- align: typing.Optional[typing.Any] = "WORLD",
542
- location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
543
- rotation: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
544
- scale: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
518
+ override_context: typing.Union[dict, bpy.types.Context] = None,
519
+ execution_context: typing.Union[str, int] = None,
520
+ undo: bool = None,
521
+ radius: typing.Any = 1.0,
522
+ enter_editmode: typing.Union[bool, typing.Any] = False,
523
+ align: typing.Any = "WORLD",
524
+ location: typing.Any = (0.0, 0.0, 0.0),
525
+ rotation: typing.Any = (0.0, 0.0, 0.0),
526
+ scale: typing.Any = (0.0, 0.0, 0.0),
545
527
  ):
546
528
  """Construct a Path
547
529
 
548
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
549
- :type execution_context: typing.Optional[typing.Union[str, int]]
550
- :type undo: typing.Optional[bool]
551
- :param radius: Radius
552
- :type radius: typing.Optional[typing.Any]
553
- :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
554
- :type enter_editmode: typing.Optional[typing.Union[bool, typing.Any]]
555
- :param align: Align, The alignment of the new object * ``WORLD`` World -- Align the new object to the world. * ``VIEW`` View -- Align the new object to the view. * ``CURSOR`` 3D Cursor -- Use the 3D cursor orientation for the new object.
556
- :type align: typing.Optional[typing.Any]
557
- :param location: Location, Location for the newly added object
558
- :type location: typing.Optional[typing.Any]
559
- :param rotation: Rotation, Rotation for the newly added object
560
- :type rotation: typing.Optional[typing.Any]
561
- :param scale: Scale, Scale for the newly added object
562
- :type scale: typing.Optional[typing.Any]
530
+ :type override_context: typing.Union[dict, bpy.types.Context]
531
+ :type execution_context: typing.Union[str, int]
532
+ :type undo: bool
533
+ :param radius: Radius
534
+ :type radius: typing.Any
535
+ :param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
536
+ :type enter_editmode: typing.Union[bool, typing.Any]
537
+ :param align: Align, The alignment of the new object
538
+
539
+ WORLD
540
+ World -- Align the new object to the world.
541
+
542
+ VIEW
543
+ View -- Align the new object to the view.
544
+
545
+ CURSOR
546
+ 3D Cursor -- Use the 3D cursor orientation for the new object.
547
+ :type align: typing.Any
548
+ :param location: Location, Location for the newly added object
549
+ :type location: typing.Any
550
+ :param rotation: Rotation, Rotation for the newly added object
551
+ :type rotation: typing.Any
552
+ :param scale: Scale, Scale for the newly added object
553
+ :type scale: typing.Any
563
554
  """
564
555
 
565
556
  ...
566
557
 
567
558
  def radius_set(
568
- override_context: typing.Optional[
569
- typing.Union[typing.Dict, "bpy.types.Context"]
570
- ] = None,
571
- execution_context: typing.Optional[typing.Union[str, int]] = None,
572
- undo: typing.Optional[bool] = None,
573
- *,
574
- radius: typing.Optional[typing.Any] = 1.0,
559
+ override_context: typing.Union[dict, bpy.types.Context] = None,
560
+ execution_context: typing.Union[str, int] = None,
561
+ undo: bool = None,
562
+ radius: typing.Any = 1.0,
575
563
  ):
576
564
  """Set per-point radius which is used for bevel tapering
577
565
 
578
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
579
- :type execution_context: typing.Optional[typing.Union[str, int]]
580
- :type undo: typing.Optional[bool]
566
+ :type override_context: typing.Union[dict, bpy.types.Context]
567
+ :type execution_context: typing.Union[str, int]
568
+ :type undo: bool
581
569
  :param radius: Radius
582
- :type radius: typing.Optional[typing.Any]
570
+ :type radius: typing.Any
583
571
  """
584
572
 
585
573
  ...
586
574
 
587
575
  def reveal(
588
- override_context: typing.Optional[
589
- typing.Union[typing.Dict, "bpy.types.Context"]
590
- ] = None,
591
- execution_context: typing.Optional[typing.Union[str, int]] = None,
592
- undo: typing.Optional[bool] = None,
593
- *,
594
- select: typing.Optional[typing.Union[bool, typing.Any]] = True,
576
+ override_context: typing.Union[dict, bpy.types.Context] = None,
577
+ execution_context: typing.Union[str, int] = None,
578
+ undo: bool = None,
579
+ select: typing.Union[bool, typing.Any] = True,
595
580
  ):
596
581
  """Reveal hidden control points
597
582
 
598
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
599
- :type execution_context: typing.Optional[typing.Union[str, int]]
600
- :type undo: typing.Optional[bool]
583
+ :type override_context: typing.Union[dict, bpy.types.Context]
584
+ :type execution_context: typing.Union[str, int]
585
+ :type undo: bool
601
586
  :param select: Select
602
- :type select: typing.Optional[typing.Union[bool, typing.Any]]
587
+ :type select: typing.Union[bool, typing.Any]
603
588
  """
604
589
 
605
590
  ...
606
591
 
607
592
  def select_all(
608
- override_context: typing.Optional[
609
- typing.Union[typing.Dict, "bpy.types.Context"]
610
- ] = None,
611
- execution_context: typing.Optional[typing.Union[str, int]] = None,
612
- undo: typing.Optional[bool] = None,
613
- *,
614
- action: typing.Optional[typing.Any] = "TOGGLE",
593
+ override_context: typing.Union[dict, bpy.types.Context] = None,
594
+ execution_context: typing.Union[str, int] = None,
595
+ undo: bool = None,
596
+ action: typing.Any = "TOGGLE",
615
597
  ):
616
598
  """(De)select all control points
617
599
 
618
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
619
- :type execution_context: typing.Optional[typing.Union[str, int]]
620
- :type undo: typing.Optional[bool]
621
- :param action: Action, Selection action to execute * ``TOGGLE`` Toggle -- Toggle selection for all elements. * ``SELECT`` Select -- Select all elements. * ``DESELECT`` Deselect -- Deselect all elements. * ``INVERT`` Invert -- Invert selection of all elements.
622
- :type action: typing.Optional[typing.Any]
600
+ :type override_context: typing.Union[dict, bpy.types.Context]
601
+ :type execution_context: typing.Union[str, int]
602
+ :type undo: bool
603
+ :param action: Action, Selection action to execute
604
+
605
+ TOGGLE
606
+ Toggle -- Toggle selection for all elements.
607
+
608
+ SELECT
609
+ Select -- Select all elements.
610
+
611
+ DESELECT
612
+ Deselect -- Deselect all elements.
613
+
614
+ INVERT
615
+ Invert -- Invert selection of all elements.
616
+ :type action: typing.Any
623
617
  """
624
618
 
625
619
  ...
626
620
 
627
621
  def select_less(
628
- override_context: typing.Optional[
629
- typing.Union[typing.Dict, "bpy.types.Context"]
630
- ] = None,
631
- execution_context: typing.Optional[typing.Union[str, int]] = None,
632
- undo: typing.Optional[bool] = None,
622
+ override_context: typing.Union[dict, bpy.types.Context] = None,
623
+ execution_context: typing.Union[str, int] = None,
624
+ undo: bool = None,
633
625
  ):
634
626
  """Deselect control points at the boundary of each selection region
635
627
 
636
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
637
- :type execution_context: typing.Optional[typing.Union[str, int]]
638
- :type undo: typing.Optional[bool]
628
+ :type override_context: typing.Union[dict, bpy.types.Context]
629
+ :type execution_context: typing.Union[str, int]
630
+ :type undo: bool
639
631
  """
640
632
 
641
633
  ...
642
634
 
643
635
  def select_linked(
644
- override_context: typing.Optional[
645
- typing.Union[typing.Dict, "bpy.types.Context"]
646
- ] = None,
647
- execution_context: typing.Optional[typing.Union[str, int]] = None,
648
- undo: typing.Optional[bool] = None,
636
+ override_context: typing.Union[dict, bpy.types.Context] = None,
637
+ execution_context: typing.Union[str, int] = None,
638
+ undo: bool = None,
649
639
  ):
650
640
  """Select all control points linked to the current selection
651
641
 
652
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
653
- :type execution_context: typing.Optional[typing.Union[str, int]]
654
- :type undo: typing.Optional[bool]
642
+ :type override_context: typing.Union[dict, bpy.types.Context]
643
+ :type execution_context: typing.Union[str, int]
644
+ :type undo: bool
655
645
  """
656
646
 
657
647
  ...
658
648
 
659
649
  def select_linked_pick(
660
- override_context: typing.Optional[
661
- typing.Union[typing.Dict, "bpy.types.Context"]
662
- ] = None,
663
- execution_context: typing.Optional[typing.Union[str, int]] = None,
664
- undo: typing.Optional[bool] = None,
665
- *,
666
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
650
+ override_context: typing.Union[dict, bpy.types.Context] = None,
651
+ execution_context: typing.Union[str, int] = None,
652
+ undo: bool = None,
653
+ deselect: typing.Union[bool, typing.Any] = False,
667
654
  ):
668
655
  """Select all control points linked to already selected ones
669
656
 
670
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
671
- :type execution_context: typing.Optional[typing.Union[str, int]]
672
- :type undo: typing.Optional[bool]
657
+ :type override_context: typing.Union[dict, bpy.types.Context]
658
+ :type execution_context: typing.Union[str, int]
659
+ :type undo: bool
673
660
  :param deselect: Deselect, Deselect linked control points rather than selecting them
674
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
661
+ :type deselect: typing.Union[bool, typing.Any]
675
662
  """
676
663
 
677
664
  ...
678
665
 
679
666
  def select_more(
680
- override_context: typing.Optional[
681
- typing.Union[typing.Dict, "bpy.types.Context"]
682
- ] = None,
683
- execution_context: typing.Optional[typing.Union[str, int]] = None,
684
- undo: typing.Optional[bool] = None,
667
+ override_context: typing.Union[dict, bpy.types.Context] = None,
668
+ execution_context: typing.Union[str, int] = None,
669
+ undo: bool = None,
685
670
  ):
686
671
  """Select control points at the boundary of each selection region
687
672
 
688
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
689
- :type execution_context: typing.Optional[typing.Union[str, int]]
690
- :type undo: typing.Optional[bool]
673
+ :type override_context: typing.Union[dict, bpy.types.Context]
674
+ :type execution_context: typing.Union[str, int]
675
+ :type undo: bool
691
676
  """
692
677
 
693
678
  ...
694
679
 
695
680
  def select_next(
696
- override_context: typing.Optional[
697
- typing.Union[typing.Dict, "bpy.types.Context"]
698
- ] = None,
699
- execution_context: typing.Optional[typing.Union[str, int]] = None,
700
- undo: typing.Optional[bool] = None,
681
+ override_context: typing.Union[dict, bpy.types.Context] = None,
682
+ execution_context: typing.Union[str, int] = None,
683
+ undo: bool = None,
701
684
  ):
702
685
  """Select control points following already selected ones along the curves
703
686
 
704
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
705
- :type execution_context: typing.Optional[typing.Union[str, int]]
706
- :type undo: typing.Optional[bool]
687
+ :type override_context: typing.Union[dict, bpy.types.Context]
688
+ :type execution_context: typing.Union[str, int]
689
+ :type undo: bool
707
690
  """
708
691
 
709
692
  ...
710
693
 
711
694
  def select_nth(
712
- override_context: typing.Optional[
713
- typing.Union[typing.Dict, "bpy.types.Context"]
714
- ] = None,
715
- execution_context: typing.Optional[typing.Union[str, int]] = None,
716
- undo: typing.Optional[bool] = None,
717
- *,
718
- skip: typing.Optional[typing.Any] = 1,
719
- nth: typing.Optional[typing.Any] = 1,
720
- offset: typing.Optional[typing.Any] = 0,
695
+ override_context: typing.Union[dict, bpy.types.Context] = None,
696
+ execution_context: typing.Union[str, int] = None,
697
+ undo: bool = None,
698
+ skip: typing.Any = 1,
699
+ nth: typing.Any = 1,
700
+ offset: typing.Any = 0,
721
701
  ):
722
702
  """Deselect every Nth point starting from the active one
723
703
 
724
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
725
- :type execution_context: typing.Optional[typing.Union[str, int]]
726
- :type undo: typing.Optional[bool]
704
+ :type override_context: typing.Union[dict, bpy.types.Context]
705
+ :type execution_context: typing.Union[str, int]
706
+ :type undo: bool
727
707
  :param skip: Deselected, Number of deselected elements in the repetitive sequence
728
- :type skip: typing.Optional[typing.Any]
708
+ :type skip: typing.Any
729
709
  :param nth: Selected, Number of selected elements in the repetitive sequence
730
- :type nth: typing.Optional[typing.Any]
710
+ :type nth: typing.Any
731
711
  :param offset: Offset, Offset from the starting point
732
- :type offset: typing.Optional[typing.Any]
712
+ :type offset: typing.Any
733
713
  """
734
714
 
735
715
  ...
736
716
 
737
717
  def select_previous(
738
- override_context: typing.Optional[
739
- typing.Union[typing.Dict, "bpy.types.Context"]
740
- ] = None,
741
- execution_context: typing.Optional[typing.Union[str, int]] = None,
742
- undo: typing.Optional[bool] = None,
718
+ override_context: typing.Union[dict, bpy.types.Context] = None,
719
+ execution_context: typing.Union[str, int] = None,
720
+ undo: bool = None,
743
721
  ):
744
722
  """Select control points preceding already selected ones along the curves
745
723
 
746
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
747
- :type execution_context: typing.Optional[typing.Union[str, int]]
748
- :type undo: typing.Optional[bool]
724
+ :type override_context: typing.Union[dict, bpy.types.Context]
725
+ :type execution_context: typing.Union[str, int]
726
+ :type undo: bool
749
727
  """
750
728
 
751
729
  ...
752
730
 
753
731
  def select_random(
754
- override_context: typing.Optional[
755
- typing.Union[typing.Dict, "bpy.types.Context"]
756
- ] = None,
757
- execution_context: typing.Optional[typing.Union[str, int]] = None,
758
- undo: typing.Optional[bool] = None,
759
- *,
760
- ratio: typing.Optional[typing.Any] = 0.5,
761
- seed: typing.Optional[typing.Any] = 0,
762
- action: typing.Optional[typing.Any] = "SELECT",
732
+ override_context: typing.Union[dict, bpy.types.Context] = None,
733
+ execution_context: typing.Union[str, int] = None,
734
+ undo: bool = None,
735
+ ratio: typing.Any = 0.5,
736
+ seed: typing.Any = 0,
737
+ action: typing.Any = "SELECT",
763
738
  ):
764
739
  """Randomly select some control points
765
740
 
766
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
767
- :type execution_context: typing.Optional[typing.Union[str, int]]
768
- :type undo: typing.Optional[bool]
769
- :param ratio: Ratio, Portion of items to select randomly
770
- :type ratio: typing.Optional[typing.Any]
771
- :param seed: Random Seed, Seed for the random number generator
772
- :type seed: typing.Optional[typing.Any]
773
- :param action: Action, Selection action to execute * ``SELECT`` Select -- Select all elements. * ``DESELECT`` Deselect -- Deselect all elements.
774
- :type action: typing.Optional[typing.Any]
741
+ :type override_context: typing.Union[dict, bpy.types.Context]
742
+ :type execution_context: typing.Union[str, int]
743
+ :type undo: bool
744
+ :param ratio: Ratio, Portion of items to select randomly
745
+ :type ratio: typing.Any
746
+ :param seed: Random Seed, Seed for the random number generator
747
+ :type seed: typing.Any
748
+ :param action: Action, Selection action to execute
749
+
750
+ SELECT
751
+ Select -- Select all elements.
752
+
753
+ DESELECT
754
+ Deselect -- Deselect all elements.
755
+ :type action: typing.Any
775
756
  """
776
757
 
777
758
  ...
778
759
 
779
760
  def select_row(
780
- override_context: typing.Optional[
781
- typing.Union[typing.Dict, "bpy.types.Context"]
782
- ] = None,
783
- execution_context: typing.Optional[typing.Union[str, int]] = None,
784
- undo: typing.Optional[bool] = None,
761
+ override_context: typing.Union[dict, bpy.types.Context] = None,
762
+ execution_context: typing.Union[str, int] = None,
763
+ undo: bool = None,
785
764
  ):
786
765
  """Select a row of control points including active one
787
766
 
788
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
789
- :type execution_context: typing.Optional[typing.Union[str, int]]
790
- :type undo: typing.Optional[bool]
767
+ :type override_context: typing.Union[dict, bpy.types.Context]
768
+ :type execution_context: typing.Union[str, int]
769
+ :type undo: bool
791
770
  """
792
771
 
793
772
  ...
794
773
 
795
774
  def select_similar(
796
- override_context: typing.Optional[
797
- typing.Union[typing.Dict, "bpy.types.Context"]
798
- ] = None,
799
- execution_context: typing.Optional[typing.Union[str, int]] = None,
800
- undo: typing.Optional[bool] = None,
801
- *,
802
- type: typing.Optional[typing.Any] = "WEIGHT",
803
- compare: typing.Optional[typing.Any] = "EQUAL",
804
- threshold: typing.Optional[typing.Any] = 0.1,
775
+ override_context: typing.Union[dict, bpy.types.Context] = None,
776
+ execution_context: typing.Union[str, int] = None,
777
+ undo: bool = None,
778
+ type: typing.Any = "WEIGHT",
779
+ compare: typing.Any = "EQUAL",
780
+ threshold: typing.Any = 0.1,
805
781
  ):
806
782
  """Select similar curve points by property type
807
783
 
808
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
809
- :type execution_context: typing.Optional[typing.Union[str, int]]
810
- :type undo: typing.Optional[bool]
784
+ :type override_context: typing.Union[dict, bpy.types.Context]
785
+ :type execution_context: typing.Union[str, int]
786
+ :type undo: bool
811
787
  :param type: Type
812
- :type type: typing.Optional[typing.Any]
788
+ :type type: typing.Any
813
789
  :param compare: Compare
814
- :type compare: typing.Optional[typing.Any]
790
+ :type compare: typing.Any
815
791
  :param threshold: Threshold
816
- :type threshold: typing.Optional[typing.Any]
792
+ :type threshold: typing.Any
817
793
  """
818
794
 
819
795
  ...
820
796
 
821
797
  def separate(
822
- override_context: typing.Optional[
823
- typing.Union[typing.Dict, "bpy.types.Context"]
824
- ] = None,
825
- execution_context: typing.Optional[typing.Union[str, int]] = None,
826
- undo: typing.Optional[bool] = None,
827
- *,
828
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
798
+ override_context: typing.Union[dict, bpy.types.Context] = None,
799
+ execution_context: typing.Union[str, int] = None,
800
+ undo: bool = None,
801
+ confirm: typing.Union[bool, typing.Any] = True,
829
802
  ):
830
803
  """Separate selected points from connected unselected points into a new object
831
804
 
832
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
833
- :type execution_context: typing.Optional[typing.Union[str, int]]
834
- :type undo: typing.Optional[bool]
805
+ :type override_context: typing.Union[dict, bpy.types.Context]
806
+ :type execution_context: typing.Union[str, int]
807
+ :type undo: bool
835
808
  :param confirm: Confirm, Prompt for confirmation
836
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
809
+ :type confirm: typing.Union[bool, typing.Any]
837
810
  """
838
811
 
839
812
  ...
840
813
 
841
814
  def shade_flat(
842
- override_context: typing.Optional[
843
- typing.Union[typing.Dict, "bpy.types.Context"]
844
- ] = None,
845
- execution_context: typing.Optional[typing.Union[str, int]] = None,
846
- undo: typing.Optional[bool] = None,
815
+ override_context: typing.Union[dict, bpy.types.Context] = None,
816
+ execution_context: typing.Union[str, int] = None,
817
+ undo: bool = None,
847
818
  ):
848
819
  """Set shading to flat
849
820
 
850
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
851
- :type execution_context: typing.Optional[typing.Union[str, int]]
852
- :type undo: typing.Optional[bool]
821
+ :type override_context: typing.Union[dict, bpy.types.Context]
822
+ :type execution_context: typing.Union[str, int]
823
+ :type undo: bool
853
824
  """
854
825
 
855
826
  ...
856
827
 
857
828
  def shade_smooth(
858
- override_context: typing.Optional[
859
- typing.Union[typing.Dict, "bpy.types.Context"]
860
- ] = None,
861
- execution_context: typing.Optional[typing.Union[str, int]] = None,
862
- undo: typing.Optional[bool] = None,
829
+ override_context: typing.Union[dict, bpy.types.Context] = None,
830
+ execution_context: typing.Union[str, int] = None,
831
+ undo: bool = None,
863
832
  ):
864
833
  """Set shading to smooth
865
834
 
866
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
867
- :type execution_context: typing.Optional[typing.Union[str, int]]
868
- :type undo: typing.Optional[bool]
835
+ :type override_context: typing.Union[dict, bpy.types.Context]
836
+ :type execution_context: typing.Union[str, int]
837
+ :type undo: bool
869
838
  """
870
839
 
871
840
  ...
872
841
 
873
842
  def shortest_path_pick(
874
- override_context: typing.Optional[
875
- typing.Union[typing.Dict, "bpy.types.Context"]
876
- ] = None,
877
- execution_context: typing.Optional[typing.Union[str, int]] = None,
878
- undo: typing.Optional[bool] = None,
843
+ override_context: typing.Union[dict, bpy.types.Context] = None,
844
+ execution_context: typing.Union[str, int] = None,
845
+ undo: bool = None,
879
846
  ):
880
847
  """Select shortest path between two selections
881
848
 
882
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
883
- :type execution_context: typing.Optional[typing.Union[str, int]]
884
- :type undo: typing.Optional[bool]
849
+ :type override_context: typing.Union[dict, bpy.types.Context]
850
+ :type execution_context: typing.Union[str, int]
851
+ :type undo: bool
885
852
  """
886
853
 
887
854
  ...
888
855
 
889
856
  def smooth(
890
- override_context: typing.Optional[
891
- typing.Union[typing.Dict, "bpy.types.Context"]
892
- ] = None,
893
- execution_context: typing.Optional[typing.Union[str, int]] = None,
894
- undo: typing.Optional[bool] = None,
857
+ override_context: typing.Union[dict, bpy.types.Context] = None,
858
+ execution_context: typing.Union[str, int] = None,
859
+ undo: bool = None,
895
860
  ):
896
861
  """Flatten angles of selected points
897
862
 
898
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
899
- :type execution_context: typing.Optional[typing.Union[str, int]]
900
- :type undo: typing.Optional[bool]
863
+ :type override_context: typing.Union[dict, bpy.types.Context]
864
+ :type execution_context: typing.Union[str, int]
865
+ :type undo: bool
901
866
  """
902
867
 
903
868
  ...
904
869
 
905
870
  def smooth_radius(
906
- override_context: typing.Optional[
907
- typing.Union[typing.Dict, "bpy.types.Context"]
908
- ] = None,
909
- execution_context: typing.Optional[typing.Union[str, int]] = None,
910
- undo: typing.Optional[bool] = None,
871
+ override_context: typing.Union[dict, bpy.types.Context] = None,
872
+ execution_context: typing.Union[str, int] = None,
873
+ undo: bool = None,
911
874
  ):
912
875
  """Interpolate radii of selected points
913
876
 
914
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
915
- :type execution_context: typing.Optional[typing.Union[str, int]]
916
- :type undo: typing.Optional[bool]
877
+ :type override_context: typing.Union[dict, bpy.types.Context]
878
+ :type execution_context: typing.Union[str, int]
879
+ :type undo: bool
917
880
  """
918
881
 
919
882
  ...
920
883
 
921
884
  def smooth_tilt(
922
- override_context: typing.Optional[
923
- typing.Union[typing.Dict, "bpy.types.Context"]
924
- ] = None,
925
- execution_context: typing.Optional[typing.Union[str, int]] = None,
926
- undo: typing.Optional[bool] = None,
885
+ override_context: typing.Union[dict, bpy.types.Context] = None,
886
+ execution_context: typing.Union[str, int] = None,
887
+ undo: bool = None,
927
888
  ):
928
889
  """Interpolate tilt of selected points
929
890
 
930
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
931
- :type execution_context: typing.Optional[typing.Union[str, int]]
932
- :type undo: typing.Optional[bool]
891
+ :type override_context: typing.Union[dict, bpy.types.Context]
892
+ :type execution_context: typing.Union[str, int]
893
+ :type undo: bool
933
894
  """
934
895
 
935
896
  ...
936
897
 
937
898
  def smooth_weight(
938
- override_context: typing.Optional[
939
- typing.Union[typing.Dict, "bpy.types.Context"]
940
- ] = None,
941
- execution_context: typing.Optional[typing.Union[str, int]] = None,
942
- undo: typing.Optional[bool] = None,
899
+ override_context: typing.Union[dict, bpy.types.Context] = None,
900
+ execution_context: typing.Union[str, int] = None,
901
+ undo: bool = None,
943
902
  ):
944
903
  """Interpolate weight of selected points
945
904
 
946
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
947
- :type execution_context: typing.Optional[typing.Union[str, int]]
948
- :type undo: typing.Optional[bool]
905
+ :type override_context: typing.Union[dict, bpy.types.Context]
906
+ :type execution_context: typing.Union[str, int]
907
+ :type undo: bool
949
908
  """
950
909
 
951
910
  ...
952
911
 
953
912
  def spin(
954
- override_context: typing.Optional[
955
- typing.Union[typing.Dict, "bpy.types.Context"]
956
- ] = None,
957
- execution_context: typing.Optional[typing.Union[str, int]] = None,
958
- undo: typing.Optional[bool] = None,
959
- *,
960
- center: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
961
- axis: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
913
+ override_context: typing.Union[dict, bpy.types.Context] = None,
914
+ execution_context: typing.Union[str, int] = None,
915
+ undo: bool = None,
916
+ center: typing.Any = (0.0, 0.0, 0.0),
917
+ axis: typing.Any = (0.0, 0.0, 0.0),
962
918
  ):
963
919
  """Extrude selected boundary row around pivot point and current view axis
964
920
 
965
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
966
- :type execution_context: typing.Optional[typing.Union[str, int]]
967
- :type undo: typing.Optional[bool]
921
+ :type override_context: typing.Union[dict, bpy.types.Context]
922
+ :type execution_context: typing.Union[str, int]
923
+ :type undo: bool
968
924
  :param center: Center, Center in global view space
969
- :type center: typing.Optional[typing.Any]
925
+ :type center: typing.Any
970
926
  :param axis: Axis, Axis in global view space
971
- :type axis: typing.Optional[typing.Any]
927
+ :type axis: typing.Any
972
928
  """
973
929
 
974
930
  ...
975
931
 
976
932
  def spline_type_set(
977
- override_context: typing.Optional[
978
- typing.Union[typing.Dict, "bpy.types.Context"]
979
- ] = None,
980
- execution_context: typing.Optional[typing.Union[str, int]] = None,
981
- undo: typing.Optional[bool] = None,
982
- *,
983
- type: typing.Optional[typing.Any] = "POLY",
984
- use_handles: typing.Optional[typing.Union[bool, typing.Any]] = False,
933
+ override_context: typing.Union[dict, bpy.types.Context] = None,
934
+ execution_context: typing.Union[str, int] = None,
935
+ undo: bool = None,
936
+ type: typing.Any = "POLY",
937
+ use_handles: typing.Union[bool, typing.Any] = False,
985
938
  ):
986
939
  """Set type of active spline
987
940
 
988
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
989
- :type execution_context: typing.Optional[typing.Union[str, int]]
990
- :type undo: typing.Optional[bool]
941
+ :type override_context: typing.Union[dict, bpy.types.Context]
942
+ :type execution_context: typing.Union[str, int]
943
+ :type undo: bool
991
944
  :param type: Type, Spline type
992
- :type type: typing.Optional[typing.Any]
945
+ :type type: typing.Any
993
946
  :param use_handles: Handles, Use handles when converting Bézier curves into polygons
994
- :type use_handles: typing.Optional[typing.Union[bool, typing.Any]]
947
+ :type use_handles: typing.Union[bool, typing.Any]
995
948
  """
996
949
 
997
950
  ...
998
951
 
999
952
  def spline_weight_set(
1000
- override_context: typing.Optional[
1001
- typing.Union[typing.Dict, "bpy.types.Context"]
1002
- ] = None,
1003
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1004
- undo: typing.Optional[bool] = None,
1005
- *,
1006
- weight: typing.Optional[typing.Any] = 1.0,
953
+ override_context: typing.Union[dict, bpy.types.Context] = None,
954
+ execution_context: typing.Union[str, int] = None,
955
+ undo: bool = None,
956
+ weight: typing.Any = 1.0,
1007
957
  ):
1008
958
  """Set softbody goal weight for selected points
1009
959
 
1010
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1011
- :type execution_context: typing.Optional[typing.Union[str, int]]
1012
- :type undo: typing.Optional[bool]
960
+ :type override_context: typing.Union[dict, bpy.types.Context]
961
+ :type execution_context: typing.Union[str, int]
962
+ :type undo: bool
1013
963
  :param weight: Weight
1014
- :type weight: typing.Optional[typing.Any]
964
+ :type weight: typing.Any
1015
965
  """
1016
966
 
1017
967
  ...
1018
968
 
1019
969
  def split(
1020
- override_context: typing.Optional[
1021
- typing.Union[typing.Dict, "bpy.types.Context"]
1022
- ] = None,
1023
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1024
- undo: typing.Optional[bool] = None,
970
+ override_context: typing.Union[dict, bpy.types.Context] = None,
971
+ execution_context: typing.Union[str, int] = None,
972
+ undo: bool = None,
1025
973
  ):
1026
974
  """Split off selected points from connected unselected points
1027
975
 
1028
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1029
- :type execution_context: typing.Optional[typing.Union[str, int]]
1030
- :type undo: typing.Optional[bool]
976
+ :type override_context: typing.Union[dict, bpy.types.Context]
977
+ :type execution_context: typing.Union[str, int]
978
+ :type undo: bool
1031
979
  """
1032
980
 
1033
981
  ...
1034
982
 
1035
983
  def subdivide(
1036
- override_context: typing.Optional[
1037
- typing.Union[typing.Dict, "bpy.types.Context"]
1038
- ] = None,
1039
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1040
- undo: typing.Optional[bool] = None,
1041
- *,
1042
- number_cuts: typing.Optional[typing.Any] = 1,
984
+ override_context: typing.Union[dict, bpy.types.Context] = None,
985
+ execution_context: typing.Union[str, int] = None,
986
+ undo: bool = None,
987
+ number_cuts: typing.Any = 1,
1043
988
  ):
1044
989
  """Subdivide selected segments
1045
990
 
1046
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1047
- :type execution_context: typing.Optional[typing.Union[str, int]]
1048
- :type undo: typing.Optional[bool]
991
+ :type override_context: typing.Union[dict, bpy.types.Context]
992
+ :type execution_context: typing.Union[str, int]
993
+ :type undo: bool
1049
994
  :param number_cuts: Number of Cuts
1050
- :type number_cuts: typing.Optional[typing.Any]
995
+ :type number_cuts: typing.Any
1051
996
  """
1052
997
 
1053
998
  ...
1054
999
 
1055
1000
  def switch_direction(
1056
- override_context: typing.Optional[
1057
- typing.Union[typing.Dict, "bpy.types.Context"]
1058
- ] = None,
1059
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1060
- undo: typing.Optional[bool] = None,
1001
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1002
+ execution_context: typing.Union[str, int] = None,
1003
+ undo: bool = None,
1061
1004
  ):
1062
1005
  """Switch direction of selected splines
1063
1006
 
1064
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1065
- :type execution_context: typing.Optional[typing.Union[str, int]]
1066
- :type undo: typing.Optional[bool]
1007
+ :type override_context: typing.Union[dict, bpy.types.Context]
1008
+ :type execution_context: typing.Union[str, int]
1009
+ :type undo: bool
1067
1010
  """
1068
1011
 
1069
1012
  ...
1070
1013
 
1071
1014
  def tilt_clear(
1072
- override_context: typing.Optional[
1073
- typing.Union[typing.Dict, "bpy.types.Context"]
1074
- ] = None,
1075
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1076
- undo: typing.Optional[bool] = None,
1015
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1016
+ execution_context: typing.Union[str, int] = None,
1017
+ undo: bool = None,
1077
1018
  ):
1078
1019
  """Clear the tilt of selected control points
1079
1020
 
1080
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1081
- :type execution_context: typing.Optional[typing.Union[str, int]]
1082
- :type undo: typing.Optional[bool]
1021
+ :type override_context: typing.Union[dict, bpy.types.Context]
1022
+ :type execution_context: typing.Union[str, int]
1023
+ :type undo: bool
1083
1024
  """
1084
1025
 
1085
1026
  ...
1086
1027
 
1087
1028
  def vertex_add(
1088
- override_context: typing.Optional[
1089
- typing.Union[typing.Dict, "bpy.types.Context"]
1090
- ] = None,
1091
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1092
- undo: typing.Optional[bool] = None,
1093
- *,
1094
- location: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
1029
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1030
+ execution_context: typing.Union[str, int] = None,
1031
+ undo: bool = None,
1032
+ location: typing.Any = (0.0, 0.0, 0.0),
1095
1033
  ):
1096
1034
  """Add a new control point (linked to only selected end-curve one, if any)
1097
1035
 
1098
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1099
- :type execution_context: typing.Optional[typing.Union[str, int]]
1100
- :type undo: typing.Optional[bool]
1036
+ :type override_context: typing.Union[dict, bpy.types.Context]
1037
+ :type execution_context: typing.Union[str, int]
1038
+ :type undo: bool
1101
1039
  :param location: Location, Location to add new vertex at
1102
- :type location: typing.Optional[typing.Any]
1040
+ :type location: typing.Any
1103
1041
  """
1104
1042
 
1105
1043
  ...