blender/doc/python_api/examples
Campbell Barton f29a738e23 PyAPI: use keyword only arguments
Use keyword only arguments for the following functions.

- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`.
2021-06-09 03:05:44 +10:00
..
aud.py PyAPI Docs: Update aud example 2020-03-19 16:21:17 -04:00
blf.py Cleanup: unused imports 2019-03-17 21:00:56 +11:00
bmesh.ops.1.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.app.handlers.1.py Spelling fixes in comments and descriptions, patch by luzpaz. 2018-09-19 18:18:05 +02:00
bpy.app.handlers.2.py Documentation: add note on altering data from frame change handlers 2020-02-11 11:00:12 +01:00
bpy.app.handlers.py Cleanup: pep8 function indentation 2018-06-26 19:58:56 +02:00
bpy.app.timers.1.py Cleanup: pep8 for examples 2019-11-01 10:53:47 +11:00
bpy.app.timers.2.py Cleanup: pep8 for examples 2019-11-01 10:53:47 +11:00
bpy.app.timers.3.py Cleanup: pep8 for examples 2019-11-01 10:53:47 +11:00
bpy.app.timers.4.py Cleanup: pep8 for examples 2019-11-01 10:53:47 +11:00
bpy.app.timers.5.py Docs: use float in bpy.app.timer examples 2018-11-28 06:09:42 +11:00
bpy.app.translations.py Cleanup: Python API Docs: Text formating 2020-09-28 20:11:06 -04:00
bpy.data.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.msgbus.1.py Documentation: added bpy.msgbus description and examples 2020-03-06 14:29:03 +01:00
bpy.msgbus.2.py Documentation: added bpy.msgbus description and examples 2020-03-06 14:29:03 +01:00
bpy.msgbus.3.py Documentation: added bpy.msgbus description and examples 2020-03-06 14:29:03 +01:00
bpy.ops.1.py Update "Overriding Context" API example 2019-05-24 19:21:30 -03:00
bpy.ops.2.py Cleanup: operator execution types didn't read well on one line 2020-10-09 12:14:22 +11:00
bpy.ops.3.py style cleanup 2012-06-19 22:17:19 +00:00
bpy.ops.py Cleanup: API docs 2015-09-08 19:42:58 +10:00
bpy.props.1.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.props.2.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.props.3.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.props.4.py Cleanup: pep8 function indentation 2018-06-26 19:58:56 +02:00
bpy.props.5.py Cleanup: pep8 function indentation 2018-06-26 19:58:56 +02:00
bpy.props.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.AddonPreferences.1.py Addons: deprecate 'wiki_url' 2020-03-05 11:45:22 +11:00
bpy.types.BlendDataLibraries.load.py picky style edits with screen/view/drawing, also remove own bad example doc. 2011-08-25 15:49:52 +00:00
bpy.types.BlendDataLibraries.write.py Docs: example for writing blend file libraries 2016-03-04 07:56:04 +11:00
bpy.types.bpy_prop_collection.foreach_get.py Cleanup: pep8 2014-09-17 18:36:17 +10:00
bpy.types.bpy_prop_collection.foreach_set.py Code cleanup: style 2014-02-13 08:52:12 +11:00
bpy.types.bpy_struct.is_property_set.py PyDoc: expanded documentation for bpy_struct.is_property_set 2020-12-08 20:52:31 +11:00
bpy.types.bpy_struct.keyframe_insert.1.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.types.bpy_struct.keyframe_insert.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.types.Depsgraph.1.py Cleanup: trailing space, remove tabs, pep8 2019-09-10 06:17:59 +10:00
bpy.types.Depsgraph.2.py Depsgraph examples: don't assign to names of built-in Python objects 2019-05-23 10:29:49 +02:00
bpy.types.Depsgraph.3.py Depsgraph examples: don't assign to names of built-in Python objects 2019-05-23 10:29:49 +02:00
bpy.types.Depsgraph.4.py Depsgraph examples: don't assign to names of built-in Python objects 2019-05-23 10:29:49 +02:00
bpy.types.Depsgraph.5.py Depsgraph examples: don't assign to names of built-in Python objects 2019-05-23 10:29:49 +02:00
bpy.types.Depsgraph.6.py Cleanup: pep8 for examples 2019-11-01 10:53:47 +11:00
bpy.types.Depsgraph.7.py Cleanup: clang-format, trailing space 2021-03-22 14:25:42 +11:00
bpy.types.ID.user_clear.1.py - include enum names and descriptions in sphinx generated documentation 2011-09-15 16:15:24 +00:00
bpy.types.Menu.1.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.types.Menu.2.py Python / Cleanup: rename INFO_MT to TOPBAR_MT/VIEW3D_MT to reflect actual location. 2018-08-29 16:25:50 +02:00
bpy.types.Menu.3.py PyAPI Doc: Fix presets menu example. 2019-06-26 15:35:34 +02:00
bpy.types.Menu.4.py Cleanup: pep8 function indentation 2018-06-26 19:58:56 +02:00
bpy.types.Menu.py Cleanup: rst style 2016-02-15 19:43:08 +11:00
bpy.types.Mesh.py Cleanup: API docs 2015-09-08 19:42:58 +10:00
bpy.types.NodeTree.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.types.Object.py Cleanup: unused imports 2019-03-17 21:00:56 +11:00
bpy.types.Operator.1.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.Operator.2.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.Operator.3.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.Operator.4.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.Operator.5.py Cleanup: spelling, grammar, and other corrections 2019-06-21 10:18:53 +10:00
bpy.types.Operator.6.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.Operator.py Cleanup: pep8 function indentation 2018-06-26 19:58:56 +02:00
bpy.types.Panel.1.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.types.Panel.2.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
bpy.types.Panel.py Cleanup: API docs 2015-09-08 19:42:58 +10:00
bpy.types.PropertyGroup.py Docs: update examples for 2.8x 2019-03-22 00:07:06 +11:00
bpy.types.RenderEngine.py Docs: PyAPI: Replace use of the bgl module in the RenderEngine example 2021-05-14 18:29:23 -03:00
bpy.types.UIList.1.py PyAPI Doc: Minor updates to UIList examples... 2019-06-26 15:06:18 +02:00
bpy.types.UIList.2.py Cleanup: trailing space, remove tabs, pep8 2019-09-10 06:17:59 +10:00
bpy.types.WindowManager.popup_menu.py UI: text keyword argument to label 2018-08-28 12:34:51 +10:00
gpu.1.py PyDoc: Fix warnings from out of bounds include statement 2020-06-02 18:21:42 -04:00
gpu.2.py PyDocs: GPU Module: Examples: convert all gl_FragColor variables to FragColor 2020-10-14 11:18:36 -04:00
gpu.3.py PyDoc: Fix warnings from out of bounds include statement 2020-06-02 18:21:42 -04:00
gpu.4.py Documentation: Replace the bgl API in the gpu module exemples 2021-04-30 10:50:50 -03:00
gpu.5.py PyDoc: Fix warnings from out of bounds include statement 2020-06-02 18:21:42 -04:00
gpu.6.py Documentation: Replace the bgl API in the gpu module exemples 2021-04-30 10:50:50 -03:00
gpu.7.py PyAPI: use keyword only arguments 2021-06-09 03:05:44 +10:00
gpu.8.py PyAPI: use keyword only arguments 2021-06-09 03:05:44 +10:00
gpu.9.py Documentation: Replace the bgl API in the gpu module exemples 2021-04-30 10:50:50 -03:00
gpu.10.py PyDocs: GPU Module: Examples: convert all gl_FragColor variables to FragColor 2020-10-14 11:18:36 -04:00
mathutils.Color.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
mathutils.Euler.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
mathutils.kdtree.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
mathutils.Matrix.LocRotScale.py Mathutils: add a Matrix.LocRotScale constructor for combining channels. 2021-05-17 19:12:40 +03:00
mathutils.Matrix.py Mathutils: add a Matrix.LocRotScale constructor for combining channels. 2021-05-17 19:12:40 +03:00
mathutils.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
mathutils.Quaternion.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00
mathutils.Vector.py Python API Docs: fix some examples 2019-06-06 17:13:02 +02:00