|
Blender V4.3
|
#include <Python.h>#include "DNA_anim_types.h"#include "BLI_listbase.h"#include "BLI_math_base.h"#include "BLI_string.h"#include "BKE_animsys.h"#include "BKE_fcurve_driver.h"#include "BKE_global.hh"#include "BKE_idtype.hh"#include "RNA_access.hh"#include "RNA_prototypes.hh"#include "bpy_rna_driver.hh"#include "bpy_intern_string.hh"#include "bpy_driver.hh"#include "bpy_rna.hh"#include "BPY_extern.hh"#include <opcode.h>Go to the source code of this file.
Macros | |
| #define | USE_RNA_AS_PYOBJECT |
| #define | USE_BYTECODE_WHITELIST |
| #define | OK_OP(op) |
Functions | |
| int | bpy_pydriver_create_dict () |
| static void | bpy_pydriver_namespace_update_frame (const float evaltime) |
| static void | bpy_pydriver_namespace_update_self (PathResolvedRNA *anim_rna) |
| static void | bpy_pydriver_namespace_clear_self () |
| static PyObject * | bpy_pydriver_depsgraph_as_pyobject (Depsgraph *depsgraph) |
| static void | bpy_pydriver_namespace_update_depsgraph (Depsgraph *depsgraph) |
| void | BPY_driver_exit () |
| void | BPY_driver_reset () |
| static void | pydriver_error (ChannelDriver *driver, const PathResolvedRNA *anim_rna) |
| static bool | is_opcode_secure (const int opcode) |
| bool | BPY_driver_secure_bytecode_test_ex (PyObject *expr_code, PyObject *py_namespace_array[], const bool verbose, const char *error_prefix) |
| bool | BPY_driver_secure_bytecode_test (PyObject *expr_code, PyObject *py_namespace, const bool verbose) |
| float | BPY_driver_exec (PathResolvedRNA *anim_rna, ChannelDriver *driver, ChannelDriver *driver_orig, const AnimationEvalContext *anim_eval_context) |
Variables | ||
| PyObject * | bpy_pydriver_Dict = nullptr | |
| static PyObject * | bpy_pydriver_Dict__whitelist = nullptr | |
| struct { | ||
| float evaltime = FLT_MAX | ||
| PyObject * self = nullptr | ||
| BPy_StructRNA * depsgraph = nullptr | ||
| } | g_pydriver_state_prev | |
This file defines the 'BPY_driver_exec' to execute python driver expressions, called by the animation system, there are also some utility functions to deal with the name-space used for driver execution.
Definition in file bpy_driver.cc.
| #define OK_OP | ( | op | ) |
Referenced by is_opcode_secure().
| #define USE_BYTECODE_WHITELIST |
Definition at line 40 of file bpy_driver.cc.
| #define USE_RNA_AS_PYOBJECT |
Definition at line 38 of file bpy_driver.cc.
| float BPY_driver_exec | ( | PathResolvedRNA * | anim_rna, |
| ChannelDriver * | driver, | ||
| ChannelDriver * | driver_orig, | ||
| const AnimationEvalContext * | anim_eval_context ) |
This evaluates Python driver expressions, driver_orig->expression is a Python expression that should evaluate to a float number, which is returned.
Definition at line 482 of file bpy_driver.cc.
References BLI_listbase_count(), BPY_driver_secure_bytecode_test_ex(), bpy_pydriver_create_dict(), bpy_pydriver_Dict, bpy_pydriver_Dict__whitelist, bpy_pydriver_namespace_clear_self(), bpy_pydriver_namespace_update_depsgraph(), bpy_pydriver_namespace_update_frame(), bpy_pydriver_namespace_update_self(), BPY_update_rna_module(), DriverVar::curval, AnimationEvalContext::depsgraph, DRIVER_FLAG_PYTHON_BLOCKED, DRIVER_FLAG_RECOMPILE, DRIVER_FLAG_RENAMEVAR, DRIVER_FLAG_USE_SELF, driver_get_variable_value(), DVAR_TYPE_SINGLE_PROP, AnimationEvalContext::eval_time, ChannelDriver::expr_comp, ChannelDriver::expression, ListBase::first, ChannelDriver::flag, float, G, G_FLAG_SCRIPT_AUTOEXEC, G_FLAG_SCRIPT_AUTOEXEC_FAIL, G_FLAG_SCRIPT_AUTOEXEC_FAIL_QUIET, DriverVar::name, DriverVar::next, printf, pydriver_error(), pyrna_driver_get_variable_value(), SNPRINTF, DriverVar::targets, DriverVar::type, UNLIKELY, and ChannelDriver::variables.
Referenced by evaluate_driver_python().
| void BPY_driver_exit | ( | ) |
Run on exit to free any cached data.
Definition at line 235 of file bpy_driver.cc.
References bpy_pydriver_Dict, bpy_pydriver_Dict__whitelist, FLT_MAX, and g_pydriver_state_prev.
Referenced by BPY_driver_reset(), and BPY_python_end().
| void BPY_driver_reset | ( | ) |
Update function, it gets rid of python-drivers global dictionary: bpy.app.driver_namespace, forcing BPY_driver_exec to recreate it. Use this when loading a new .blend file so any variables setup by the previous blend file are cleared.
Definition at line 258 of file bpy_driver.cc.
References BPY_driver_exit().
Referenced by BPY_python_reset().
| bool BPY_driver_secure_bytecode_test | ( | PyObject * | expr_code, |
| PyObject * | py_namespace, | ||
| const bool | verbose ) |
Definition at line 465 of file bpy_driver.cc.
References BPY_driver_secure_bytecode_test_ex(), bpy_pydriver_create_dict(), bpy_pydriver_Dict, bpy_pydriver_Dict__whitelist, and verbose.
Referenced by bpy_driver_secure_code_test().
| bool BPY_driver_secure_bytecode_test_ex | ( | PyObject * | expr_code, |
| PyObject * | py_namespace_array[], | ||
| const bool | verbose, | ||
| const char * | error_prefix ) |
Definition at line 389 of file bpy_driver.cc.
References is_opcode_secure(), UNLIKELY, and verbose.
Referenced by BPY_driver_exec(), and BPY_driver_secure_bytecode_test().
| int bpy_pydriver_create_dict | ( | ) |
For faster execution we keep a special dictionary for py-drivers, with the needed modules and aliases.
Definition at line 52 of file bpy_driver.cc.
References arg_str, bpy_pydriver_Dict, bpy_pydriver_Dict__whitelist, and mod().
Referenced by bpy_app_driver_dict_get(), BPY_driver_exec(), and BPY_driver_secure_bytecode_test().
|
static |
Definition at line 203 of file bpy_driver.cc.
References depsgraph, pyrna_struct_CreatePyObject(), and RNA_pointer_create().
Referenced by bpy_pydriver_namespace_update_depsgraph().
|
static |
Definition at line 194 of file bpy_driver.cc.
References bpy_intern_str_self, bpy_pydriver_Dict, and g_pydriver_state_prev.
Referenced by BPY_driver_exec().
|
static |
Adds a variable depsgraph to the name-space. This can then be used to obtain evaluated data-blocks, and the current view layer and scene. See #75553.
Definition at line 213 of file bpy_driver.cc.
References BLI_assert, bpy_intern_str_depsgraph, bpy_pydriver_depsgraph_as_pyobject(), bpy_pydriver_Dict, PointerRNA::data, depsgraph, g_pydriver_state_prev, BPy_StructRNA::ptr, and UNLIKELY.
Referenced by BPY_driver_exec().
|
static |
Definition at line 170 of file bpy_driver.cc.
References bpy_intern_str_frame, bpy_pydriver_Dict, evaltime, and g_pydriver_state_prev.
Referenced by BPY_driver_exec().
|
static |
Definition at line 181 of file bpy_driver.cc.
References bpy_intern_str_self, bpy_pydriver_Dict, g_pydriver_state_prev, pyrna_driver_is_equal_anim_rna(), and pyrna_driver_self_from_anim_rna().
Referenced by BPY_driver_exec().
|
static |
Definition at line 304 of file bpy_driver.cc.
References CALL, OK_OP, and SWAP.
Referenced by BPY_driver_secure_bytecode_test_ex().
|
static |
Error return function for BPY_driver_exec.
| anim_rna | Used to show the target when printing the error to give additional context. |
Definition at line 280 of file bpy_driver.cc.
References BKE_idtype_idcode_to_name(), DRIVER_FLAG_INVALID, ChannelDriver::expression, ChannelDriver::flag, GS, PointerRNA::owner_id, PathResolvedRNA::prop, PathResolvedRNA::prop_index, PathResolvedRNA::ptr, and RNA_property_identifier().
Referenced by BPY_driver_exec().
| PyObject* bpy_pydriver_Dict = nullptr |
For PyDrivers (drivers using one-line Python expressions to express relationships between targets).
Definition at line 46 of file bpy_driver.cc.
Referenced by bpy_app_driver_dict_get(), BPY_driver_exec(), BPY_driver_exit(), BPY_driver_secure_bytecode_test(), bpy_pydriver_create_dict(), bpy_pydriver_namespace_clear_self(), bpy_pydriver_namespace_update_depsgraph(), bpy_pydriver_namespace_update_frame(), and bpy_pydriver_namespace_update_self().
|
static |
Definition at line 49 of file bpy_driver.cc.
Referenced by BPY_driver_exec(), BPY_driver_exit(), BPY_driver_secure_bytecode_test(), and bpy_pydriver_create_dict().
| BPy_StructRNA* depsgraph = nullptr |
Definition at line 167 of file bpy_driver.cc.
Referenced by bpy_pydriver_depsgraph_as_pyobject(), and bpy_pydriver_namespace_update_depsgraph().
Definition at line 162 of file bpy_driver.cc.
Referenced by action_flip_pchan_cache_init(), bpy_pydriver_namespace_update_frame(), draw_seq_waveform_overlay(), eval_fmodifier_influence(), evaluate_fcurve(), evaluate_fcurve_driver(), evaluate_fcurve_ex(), evaluate_fcurve_only_curve(), evaluate_time_fmodifiers(), evaluate_value_fmodifiers(), fcm_cycles_time(), fcm_envelope_evaluate(), fcm_fn_generator_evaluate(), fcm_generator_evaluate(), fcm_limits_time(), fcm_noise_evaluate(), fcm_stepped_time(), fcurve_eval_keyframes(), fcurve_eval_keyframes_extrapolate(), fcurve_eval_keyframes_interpolate(), fcurve_eval_samples(), fcurve_samplingcb_evalcurve(), nlasnapshot_from_action(), and nlastrip_evaluate_meta().
| struct { ... } g_pydriver_state_prev |
Referenced by BPY_driver_exit(), bpy_pydriver_namespace_clear_self(), bpy_pydriver_namespace_update_depsgraph(), bpy_pydriver_namespace_update_frame(), and bpy_pydriver_namespace_update_self().
| PyObject* self = nullptr |
Definition at line 166 of file bpy_driver.cc.
Referenced by _BaseMathObject_CheckCallback(), _BaseMathObject_RaiseFrozenExc(), _BaseMathObject_RaiseNotFrozenExc(), _BaseMathObject_ReadCallback(), _BaseMathObject_ReadIndexCallback(), _BaseMathObject_WriteCallback(), _BaseMathObject_WriteIndexCallback(), _bpy_names(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::active_jitter(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::active_smoothing(), AdjacencyIterator_init(), AdjacencyIterator_is_incoming_get(), AdjacencyIterator_iter(), AdjacencyIterator_iternext(), AdjacencyIterator_object_get(), app_translations_free(), app_translations_py_messages_register(), app_translations_py_messages_unregister(), CocoaAppDelegate::application:openFile:, BackboneStretcherShader___init__(), BaseMathObject_clear(), BaseMathObject_dealloc(), BaseMathObject_freeze(), BaseMathObject_is_frozen_get(), BaseMathObject_is_gc(), BaseMathObject_is_tracked(), BaseMathObject_is_valid_get(), BaseMathObject_is_wrapped_get(), BaseMathObject_owner_get(), BaseMathObject_traverse(), BBox_dealloc(), BBox_init(), BBox_repr(), BezierCurveShader___init__(), BinaryPredicate0D___call__(), BinaryPredicate0D___dealloc__(), BinaryPredicate0D___init__(), BinaryPredicate0D___repr__(), BinaryPredicate0D_name_get(), BinaryPredicate1D___call__(), BinaryPredicate1D___dealloc__(), BinaryPredicate1D___init__(), BinaryPredicate1D___repr__(), BinaryPredicate1D_name_get(), BKE_collider_cache_create(), BKE_collision_objects_create(), BKE_object_is_deform_modified(), BKE_object_is_modified(), BlenderTextureShader___init__(), bm_dealloc_editmode_warn(), bpy_batch_remove(), bpy_bm_elem_copy_from(), bpy_bm_elem_hash(), bpy_bm_elem_hflag_get(), bpy_bm_elem_hflag_set(), bpy_bm_elem_hide_set(), bpy_bm_elem_index_get(), bpy_bm_elem_index_set(), bpy_bm_elem_select_set(), bpy_bm_generic_invalidate(), bpy_bm_generic_valid_check(), bpy_bm_hash(), bpy_bm_is_valid_get(), bpy_bmdeformvert_ass_subscript(), bpy_bmdeformvert_clear(), bpy_bmdeformvert_contains(), BPy_BMDeformVert_CreatePyObject(), bpy_bmdeformvert_get(), bpy_bmdeformvert_items(), bpy_bmdeformvert_keys(), bpy_bmdeformvert_len(), bpy_bmdeformvert_subscript(), bpy_bmdeformvert_values(), bpy_bmedge_calc_face_angle(), bpy_bmedge_calc_face_angle_signed(), bpy_bmedge_calc_length(), bpy_bmedge_calc_tangent(), BPy_BMEdge_CreatePyObject(), bpy_bmedge_dealloc(), bpy_bmedge_is_boundary_get(), bpy_bmedge_is_contiguous_get(), bpy_bmedge_is_convex_get(), bpy_bmedge_is_manifold_get(), bpy_bmedge_is_wire_get(), bpy_bmedge_normal_update(), bpy_bmedge_other_vert(), bpy_bmedge_repr(), BPy_BMEdgeSeq_CreatePyObject(), bpy_bmedgeseq_get(), bpy_bmedgeseq_get__method(), bpy_bmedgeseq_new(), bpy_bmedgeseq_remove(), BPy_BMEditSel_Assign(), BPy_BMEditSel_CreatePyObject(), BPy_BMEditSelIter_CreatePyObject(), bpy_bmeditseliter_next(), bpy_bmeditselseq_active_get(), bpy_bmeditselseq_add(), bpy_bmeditselseq_clear(), bpy_bmeditselseq_contains(), bpy_bmeditselseq_discard(), bpy_bmeditselseq_iter(), bpy_bmeditselseq_length(), bpy_bmeditselseq_remove(), bpy_bmeditselseq_subscript(), bpy_bmeditselseq_subscript_int(), bpy_bmeditselseq_subscript_slice(), bpy_bmeditselseq_validate(), bpy_bmelem_ass_subscript(), bpy_bmelem_subscript(), bpy_bmelemseq_contains(), BPy_BMElemSeq_CreatePyObject(), bpy_bmelemseq_dealloc(), bpy_bmelemseq_elem_get(), bpy_bmelemseq_ensure_lookup_table(), bpy_bmelemseq_index_update(), bpy_bmelemseq_iter(), bpy_bmelemseq_layers_get(), bpy_bmelemseq_length(), bpy_bmelemseq_sort(), bpy_bmelemseq_subscript(), bpy_bmelemseq_subscript_int(), bpy_bmelemseq_subscript_slice(), bpy_bmesh_calc_loop_triangles(), bpy_bmesh_calc_volume(), bpy_bmesh_clear(), bpy_bmesh_copy(), BPy_BMesh_CreatePyObject(), bpy_bmesh_dealloc(), bpy_bmesh_free(), bpy_bmesh_from_mesh(), bpy_bmesh_from_object(), bpy_bmesh_is_wrapped_get(), bpy_bmesh_normal_update(), bpy_bmesh_op_CreatePyObject(), bpy_bmesh_op_doc_get(), bpy_bmesh_op_repr(), bpy_bmesh_repr(), bpy_bmesh_select_flush(), bpy_bmesh_select_flush_mode(), bpy_bmesh_select_history_get(), bpy_bmesh_select_history_set(), bpy_bmesh_select_mode_get(), bpy_bmesh_select_mode_set(), bpy_bmesh_to_mesh(), bpy_bmesh_transform(), bpy_bmface_calc_area(), bpy_bmface_calc_center_bounds(), bpy_bmface_calc_center_mean(), bpy_bmface_calc_center_median_weighted(), bpy_bmface_calc_perimeter(), bpy_bmface_calc_tangent_edge(), bpy_bmface_calc_tangent_edge_diagonal(), bpy_bmface_calc_tangent_edge_pair(), bpy_bmface_calc_tangent_vert_diagonal(), bpy_bmface_copy(), bpy_bmface_copy_from_face_interp(), BPy_BMFace_CreatePyObject(), bpy_bmface_dealloc(), bpy_bmface_material_index_get(), bpy_bmface_material_index_set(), bpy_bmface_normal_flip(), bpy_bmface_normal_get(), bpy_bmface_normal_set(), bpy_bmface_normal_update(), bpy_bmface_repr(), bpy_bmfaceseq_active_get(), bpy_bmfaceseq_active_set(), BPy_BMFaceSeq_CreatePyObject(), bpy_bmfaceseq_get(), bpy_bmfaceseq_get__method(), bpy_bmfaceseq_new(), bpy_bmfaceseq_remove(), BPy_BMIter_CreatePyObject(), bpy_bmiter_next(), bpy_bmlayeraccess_collection_get(), BPy_BMLayerAccess_CreatePyObject(), bpy_bmlayercollection_active_get(), bpy_bmlayercollection_contains(), BPy_BMLayerCollection_CreatePyObject(), bpy_bmlayercollection_get(), bpy_bmlayercollection_is_singleton_get(), bpy_bmlayercollection_items(), bpy_bmlayercollection_iter(), bpy_bmlayercollection_keys(), bpy_bmlayercollection_length(), bpy_bmlayercollection_new(), bpy_bmlayercollection_remove(), bpy_bmlayercollection_subscript(), bpy_bmlayercollection_subscript_int(), bpy_bmlayercollection_subscript_slice(), bpy_bmlayercollection_subscript_str(), bpy_bmlayercollection_values(), bpy_bmlayercollection_verify(), bpy_bmlayeritem_copy_from(), BPy_BMLayerItem_CreatePyObject(), bpy_bmlayeritem_get(), bpy_bmlayeritem_name_get(), bpy_bmloop_calc_angle(), bpy_bmloop_calc_normal(), bpy_bmloop_calc_tangent(), bpy_bmloop_copy_from_face_interp(), BPy_BMLoop_CreatePyObject(), bpy_bmloop_dealloc(), bpy_bmloop_edge_get(), bpy_bmloop_face_get(), bpy_bmloop_is_convex_get(), bpy_bmloop_link_loop_next_get(), bpy_bmloop_link_loop_prev_get(), bpy_bmloop_link_loop_radial_next_get(), bpy_bmloop_link_loop_radial_prev_get(), bpy_bmloop_repr(), bpy_bmloop_vert_get(), BPy_BMLoopSeq_CreatePyObject(), bpy_bmloopseq_get(), BPy_BMLoopUV_CreatePyObject(), bpy_bmloopuv_pin_uv_get(), bpy_bmloopuv_pin_uv_set(), bpy_bmloopuv_select_edge_get(), bpy_bmloopuv_select_edge_set(), bpy_bmloopuv_select_get(), bpy_bmloopuv_select_set(), bpy_bmloopuv_uv_get(), bpy_bmloopuv_uv_set(), BPy_BMO_call(), bpy_bmvert_calc_edge_angle(), bpy_bmvert_calc_shell_factor(), bpy_bmvert_co_get(), bpy_bmvert_co_set(), bpy_bmvert_copy_from_face_interp(), bpy_bmvert_copy_from_vert_interp(), BPy_BMVert_CreatePyObject(), bpy_bmvert_dealloc(), bpy_bmvert_is_boundary_get(), bpy_bmvert_is_manifold_get(), bpy_bmvert_is_wire_get(), bpy_bmvert_normal_get(), bpy_bmvert_normal_set(), bpy_bmvert_normal_update(), bpy_bmvert_repr(), BPy_BMVertSeq_CreatePyObject(), bpy_bmvertseq_get(), bpy_bmvertseq_new(), bpy_bmvertseq_remove(), BPy_BMVertSkin_CreatePyObject(), bpy_bmvertskin_flag_get(), bpy_bmvertskin_flag_set(), bpy_bmvertskin_radius_get(), bpy_bmvertskin_radius_set(), BPy_BoolProperty(), BPy_BoolVectorProperty(), bpy_class_free(), BPy_CollectionProperty(), bpy_context_temp_override(), BPy_EnumProperty(), BPy_FloatProperty(), BPy_FloatVectorProperty(), BPy_Group_Iter_same_size_or_raise_error(), BPy_Group_IterItems_next(), BPy_Group_IterKeys_next(), BPy_Group_IterValues_next(), BPy_Group_View_len(), BPy_Group_ViewItems_Contains(), BPy_Group_ViewItems_iter(), BPy_Group_ViewKeys_Contains(), BPy_Group_ViewKeys_iter(), BPy_Group_ViewValues_Contains(), BPy_Group_ViewValues_iter(), BPy_IDArray_ass_slice(), BPy_IDArray_ass_subscript(), BPy_IDArray_get_typecode(), BPy_IDArray_getbuffer(), BPy_IDArray_GetItem(), BPy_IDArray_Len(), BPy_IDArray_repr(), BPy_IDArray_SetItem(), BPy_IDArray_slice(), BPy_IDArray_subscript(), BPy_IDArray_to_list(), BPy_IDGroup_clear(), BPy_IDGroup_Contains(), BPy_IDGroup_get(), BPy_IDGroup_GetName(), BPy_IDGroup_hash(), BPy_IDGroup_items(), BPy_IDGroup_iter(), BPy_IDGroup_Iter_clear(), BPy_IDGroup_Iter_dealloc(), BPy_IDGroup_Iter_is_gc(), BPy_IDGroup_Iter_repr(), BPy_IDGroup_Iter_traverse(), BPy_IDGroup_keys(), BPy_IDGroup_Map_GetItem(), BPy_IDGroup_Map_Len(), BPy_IDGroup_Map_SetItem(), BPy_IDGroup_pop(), BPy_IDGroup_repr(), BPy_IDGroup_SetName(), BPy_IDGroup_to_dict(), BPy_IDGroup_update(), BPy_IDGroup_values(), BPy_IDGroup_View_clear(), BPy_IDGroup_View_dealloc(), BPy_IDGroup_View_is_gc(), BPy_IDGroup_View_repr(), BPy_IDGroup_View_reversed(), BPy_IDGroup_View_traverse(), BPy_IDIDPropertyUIManager_as_dict(), BPy_IDPropertyUIManager_clear(), BPy_IDPropertyUIManager_hash(), BPy_IDPropertyUIManager_repr(), BPy_IDPropertyUIManager_update(), BPy_IDPropertyUIManager_update_from(), BPy_IntProperty(), BPy_IntVectorProperty(), bpy_lib_dealloc(), bpy_lib_dir(), bpy_lib_enter(), bpy_lib_exit(), bpy_lib_exit_warn_idname(), bpy_lib_exit_warn_type(), bpy_lib_load(), bpy_lib_write(), bpy_orphans_purge(), BPy_PointerProperty(), bpy_prop_boolean_array_get_fn(), bpy_prop_boolean_array_set_fn(), bpy_prop_boolean_get_fn(), bpy_prop_boolean_set_fn(), bpy_prop_deferred_clear(), bpy_prop_deferred_data_CreatePyObject(), bpy_prop_deferred_data_or_srna(), bpy_prop_deferred_dealloc(), bpy_prop_deferred_function_get(), bpy_prop_deferred_keywords_get(), bpy_prop_deferred_repr(), bpy_prop_deferred_traverse(), bpy_prop_enum_get_fn(), bpy_prop_enum_itemf_fn(), bpy_prop_enum_set_fn(), bpy_prop_float_array_get_fn(), bpy_prop_float_array_set_fn(), bpy_prop_float_get_fn(), bpy_prop_float_set_fn(), bpy_prop_int_array_get_fn(), bpy_prop_int_array_set_fn(), bpy_prop_int_get_fn(), bpy_prop_int_set_fn(), bpy_prop_pointer_poll_fn(), bpy_prop_string_get_fn(), bpy_prop_string_length_fn(), bpy_prop_string_set_fn(), bpy_prop_string_visit_for_search_fn(), bpy_prop_update_fn(), BPy_RemoveProperty(), bpy_rna_context_temp_override__tp_dealloc(), bpy_rna_context_temp_override_enter(), bpy_rna_context_temp_override_exit(), bpy_rna_data_context_clear(), bpy_rna_data_context_dealloc(), bpy_rna_data_context_enter(), bpy_rna_data_context_exit(), bpy_rna_data_context_traverse(), bpy_rna_region_as_string(), bpy_rna_region_from_string(), bpy_rna_uilayout_introspect(), BPy_StringProperty(), bpy_types_module_dir(), bpy_types_module_getattro(), bpy_user_map(), bpy_wm_capabilities(), BPy_Wrap_GetItems_View_WithID(), BPy_Wrap_GetKeys_View_WithID(), BPy_Wrap_GetValues_View_WithID(), BPyGPUBatch_CreatePyObject(), BPyGPUFrameBuffer__tp_dealloc(), BPyGPUFrameBuffer_CreatePyObject(), BPyGPUIndexBuf_CreatePyObject(), BPyGPUOffScreen__tp_dealloc(), BPyGPUOffScreen_CreatePyObject(), BPyGPUShader_CreatePyObject(), BPyGPUShaderCreateInfo_CreatePyObject(), BPyGPUStageInterfaceInfo_CreatePyObject(), BPyGPUTexture__tp_dealloc(), BPyGPUTexture_CreatePyObject(), BPyGPUUniformBuf__tp_dealloc(), BPyGPUUniformBuf_CreatePyObject(), BPyGPUVertBuf_CreatePyObject(), BPyGPUVertFormat_CreatePyObject(), Buffer_ass_item(), Buffer_ass_slice(), Buffer_ass_subscript(), Buffer_dealloc(), Buffer_dimensions(), Buffer_item(), Buffer_len(), Buffer_repr(), Buffer_slice(), Buffer_subscript(), Buffer_to_list(), Buffer_to_list_recursive(), bvhtree_update_from_cloth(), CalligraphicShader___init__(), Chain_init(), Chain_push_viewedge_back(), Chain_push_viewedge_front(), ChainingIterator___init__(), ChainingIterator_init(), ChainingIterator_is_incrementing_get(), ChainingIterator_next_vertex_get(), ChainingIterator_object_get(), ChainingIterator_traverse(), ChainingTimeStampF1D___init__(), ChainPredicateIterator_dealloc(), ChainPredicateIterator_init(), ChainSilhouetteIterator_init(), Color_ass_item(), Color_ass_slice(), Color_ass_subscript(), Color_channel_get(), Color_channel_hsv_get(), Color_channel_hsv_set(), Color_channel_set(), Color_copy(), Color_CreatePyObject(), Color_CreatePyObject_cb(), Color_CreatePyObject_wrap(), Color_deepcopy(), Color_from_aces_to_scene_linear(), Color_from_rec709_linear_to_scene_linear(), Color_from_scene_linear_to_aces(), Color_from_scene_linear_to_rec709_linear(), Color_from_scene_linear_to_srgb(), Color_from_scene_linear_to_xyz_d65(), Color_from_srgb_to_scene_linear(), Color_from_xyz_d65_to_scene_linear(), Color_hash(), Color_hsv_get(), Color_hsv_set(), Color_item(), Color_neg(), Color_repr(), Color_slice(), Color_str(), Color_subscript(), Color_to_tuple_ex(), ColorNoiseShader___init__(), ConstantColorShader___init__(), ConstantThicknessShader___init__(), ConstrainedIncreasingThicknessShader___init__(), ContourUP1D___init__(), Curvature2DAngleF0D___init__(), Curvature2DAngleF1D___init__(), CurveNatureF0D___init__(), CurveNatureF1D___init__(), CurvePoint_fedge_get(), CurvePoint_first_svertex_get(), CurvePoint_first_svertex_set(), CurvePoint_init(), CurvePoint_second_svertex_get(), CurvePoint_second_svertex_set(), CurvePoint_t2d_get(), CurvePoint_t2d_set(), CurvePointIterator_init(), CurvePointIterator_object_get(), CurvePointIterator_t_get(), CurvePointIterator_u_get(), DensityF0D___init__(), DensityF1D___init__(), DensityLowerThanUP1D___init__(), EqualToChainingTimeStampUP1D___init__(), EqualToTimeStampUP1D___init__(), Euler_ass_item(), Euler_ass_slice(), Euler_ass_subscript(), Euler_axis_get(), Euler_axis_set(), Euler_copy(), Euler_CreatePyObject(), Euler_CreatePyObject_cb(), Euler_CreatePyObject_wrap(), Euler_deepcopy(), Euler_hash(), Euler_item(), Euler_make_compatible(), Euler_order_get(), Euler_order_set(), euler_order_str(), Euler_repr(), Euler_rotate(), Euler_rotate_axis(), Euler_slice(), Euler_str(), Euler_subscript(), Euler_to_matrix(), Euler_to_quaternion(), Euler_to_tuple_ex(), Euler_zero(), blender::ed::sculpt_paint::AddOperationExecutor::execute(), blender::ed::sculpt_paint::CombOperationExecutor::execute(), blender::ed::sculpt_paint::CurvesEffectOperationExecutor::execute(), blender::ed::sculpt_paint::DeleteOperationExecutor::execute(), blender::ed::sculpt_paint::DensityAddOperationExecutor::execute(), blender::ed::sculpt_paint::DensitySubtractOperationExecutor::execute(), blender::ed::sculpt_paint::greasepencil::EraseOperationExecutor::execute(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::execute(), blender::ed::sculpt_paint::PinchOperationExecutor::execute(), blender::ed::sculpt_paint::PuffOperationExecutor::execute(), blender::ed::sculpt_paint::SelectionPaintOperationExecutor::execute(), blender::ed::sculpt_paint::SlideOperationExecutor::execute(), blender::ed::sculpt_paint::SmoothOperationExecutor::execute(), blender::ed::sculpt_paint::SnakeHookOperatorExecutor::execute(), ExternalContourUP1D___init__(), FalseBP1D___init__(), FalseUP0D___init__(), FalseUP1D___init__(), FEdge_first_svertex_get(), FEdge_first_svertex_set(), FEdge_id_get(), FEdge_id_set(), FEdge_init(), FEdge_is_smooth_get(), FEdge_is_smooth_set(), FEdge_nature_get(), FEdge_nature_set(), FEdge_next_fedge_get(), FEdge_next_fedge_set(), FEdge_previous_fedge_get(), FEdge_previous_fedge_set(), FEdge_second_svertex_get(), FEdge_second_svertex_set(), FEdge_sq_item(), FEdge_viewedge_get(), FEdge_viewedge_set(), FEdgeSharp_face_mark_left_get(), FEdgeSharp_face_mark_left_set(), FEdgeSharp_face_mark_right_get(), FEdgeSharp_face_mark_right_set(), FEdgeSharp_init(), FEdgeSharp_material_index_left_get(), FEdgeSharp_material_index_left_set(), FEdgeSharp_material_index_right_get(), FEdgeSharp_material_index_right_set(), FEdgeSharp_material_left_get(), FEdgeSharp_material_right_get(), FEdgeSharp_mathutils_get(), FEdgeSharp_mathutils_get_index(), FEdgeSharp_mathutils_set(), FEdgeSharp_mathutils_set_index(), FEdgeSharp_normal_left_get(), FEdgeSharp_normal_left_set(), FEdgeSharp_normal_right_get(), FEdgeSharp_normal_right_set(), FEdgeSmooth_face_mark_get(), FEdgeSmooth_face_mark_set(), FEdgeSmooth_init(), FEdgeSmooth_material_get(), FEdgeSmooth_material_index_get(), FEdgeSmooth_material_index_set(), FEdgeSmooth_mathutils_get(), FEdgeSmooth_mathutils_get_index(), FEdgeSmooth_mathutils_set(), FEdgeSmooth_mathutils_set_index(), FEdgeSmooth_normal_get(), FEdgeSmooth_normal_set(), foreach_attr_type(), foreach_getset(), foreach_parse_args(), FrsCurve_init(), FrsCurve_is_empty_get(), FrsCurve_push_vertex_back(), FrsCurve_push_vertex_front(), FrsCurve_segments_size_get(), FrsMaterial_ambient_get(), FrsMaterial_ambient_set(), FrsMaterial_dealloc(), FrsMaterial_diffuse_get(), FrsMaterial_diffuse_set(), FrsMaterial_emission_get(), FrsMaterial_emission_set(), FrsMaterial_hash(), FrsMaterial_init(), FrsMaterial_line_get(), FrsMaterial_line_set(), FrsMaterial_mathutils_get(), FrsMaterial_mathutils_get_index(), FrsMaterial_mathutils_set(), FrsMaterial_mathutils_set_index(), FrsMaterial_priority_get(), FrsMaterial_priority_set(), FrsMaterial_repr(), FrsMaterial_shininess_get(), FrsMaterial_shininess_set(), FrsMaterial_specular_get(), FrsMaterial_specular_set(), FrsNoise_dealloc(), FrsNoise_init(), FrsNoise_repr(), FrsNoise_smoothNoise1(), FrsNoise_smoothNoise2(), FrsNoise_smoothNoise3(), FrsNoise_turbulence1(), FrsNoise_turbulence2(), FrsNoise_turbulence3(), FrsNoise_turbulence_smooth(), Freestyle::BlenderStrokeRenderer::get_stroke_mesh_id(), Freestyle::BlenderStrokeRenderer::get_stroke_vertex_z(), GetCompleteViewMapDensityF1D___init__(), GetCurvilinearAbscissaF0D___init__(), GetDirectionalViewMapDensityF1D___init__(), GetOccludeeF0D___init__(), GetOccludeeF1D___init__(), GetOccludersF0D___init__(), GetOccludersF1D___init__(), GetParameterF0D___init__(), GetProjectedXF0D___init__(), GetProjectedXF1D___init__(), GetProjectedYF0D___init__(), GetProjectedYF1D___init__(), GetProjectedZF0D___init__(), GetProjectedZF1D___init__(), GetShapeF0D___init__(), GetShapeF1D___init__(), GetSteerableViewMapDensityF1D___init__(), GetViewMapGradientNormF0D___init__(), GetViewMapGradientNormF1D___init__(), GetXF0D___init__(), GetXF1D___init__(), GetYF0D___init__(), GetYF1D___init__(), GetZF0D___init__(), GetZF1D___init__(), GuidingLinesShader___init__(), Id_dealloc(), Id_first_get(), Id_first_set(), Id_init(), Id_repr(), Id_second_get(), Id_second_set(), idp_array_py_type(), IncreasingColorShader___init__(), IncreasingThicknessShader___init__(), IncrementChainingTimeStampF1D___init__(), BlenderWindowDelegate::initWithSystemCocoa:windowCocoa:, COCOA_VIEW_CLASS::initWithSystemCocoa:windowCocoa:frame:, integration_type_get(), integration_type_get(), integration_type_get(), integration_type_get(), integration_type_get(), integration_type_get(), integration_type_get(), integration_type_get(), integration_type_set(), integration_type_set(), integration_type_set(), integration_type_set(), integration_type_set(), integration_type_set(), integration_type_set(), integration_type_set(), Interface0D_dealloc(), Interface0D_get_fedge(), Interface0D_id_get(), Interface0D_init(), Interface0D_name_get(), Interface0D_nature_get(), Interface0D_point_2d_get(), Interface0D_point_3d_get(), Interface0D_projected_x_get(), Interface0D_projected_y_get(), Interface0D_projected_z_get(), Interface0D_repr(), Interface0DIterator_at_last_get(), Interface0DIterator_init(), Interface0DIterator_iter(), Interface0DIterator_iternext(), Interface0DIterator_object_get(), Interface0DIterator_t_get(), Interface0DIterator_u_get(), Interface1D_dealloc(), Interface1D_id_get(), Interface1D_init(), Interface1D_length_2d_get(), Interface1D_name_get(), Interface1D_nature_get(), Interface1D_points_begin(), Interface1D_points_end(), Interface1D_repr(), Interface1D_time_stamp_get(), Interface1D_time_stamp_set(), Interface1D_vertices_begin(), Interface1D_vertices_end(), intersection_skip_self(), intersection_skip_self_local(), intersection_skip_self_shadow(), intersection_skip_shadow_link(), Iterator_dealloc(), Iterator_decrement(), Iterator_increment(), Iterator_init(), Iterator_is_begin_get(), Iterator_is_end_get(), Iterator_name_get(), Iterator_repr(), Length2DBP1D___init__(), lineart_bounding_area_next(), LocalAverageDepthF0D___init__(), LocalAverageDepthF1D___init__(), MaterialF0D___init__(), mathutils_matrix_col_check(), mathutils_matrix_col_get(), mathutils_matrix_col_get_index(), mathutils_matrix_col_set(), mathutils_matrix_col_set_index(), mathutils_matrix_row_check(), mathutils_matrix_row_get(), mathutils_matrix_row_get_index(), mathutils_matrix_row_set(), mathutils_matrix_row_set_index(), mathutils_matrix_translation_check(), mathutils_matrix_translation_get(), mathutils_matrix_translation_get_index(), mathutils_matrix_translation_set(), mathutils_matrix_translation_set_index(), mathutils_rna_generic_check(), mathutils_rna_matrix_get(), mathutils_rna_matrix_set(), mathutils_rna_vector_get(), mathutils_rna_vector_get_index(), mathutils_rna_vector_set(), mathutils_rna_vector_set_index(), matrix__apply_to_copy(), Matrix_adjugate(), Matrix_adjugated(), matrix_as_3x3(), Matrix_ass_item_col(), Matrix_ass_item_row(), Matrix_ass_slice(), Matrix_ass_subscript(), Matrix_col_get(), Matrix_copy(), Matrix_copy_notest(), Matrix_CreatePyObject(), Matrix_CreatePyObject_alloc(), Matrix_CreatePyObject_cb(), Matrix_CreatePyObject_wrap(), Matrix_decompose(), Matrix_deepcopy(), Matrix_determinant(), matrix_determinant_internal(), Matrix_hash(), Matrix_identity(), matrix_identity_internal(), Matrix_invert(), matrix_invert_args_check(), matrix_invert_internal(), matrix_invert_is_compat(), Matrix_invert_safe(), matrix_invert_safe_internal(), Matrix_inverted(), Matrix_inverted_noargs(), Matrix_inverted_safe(), matrix_is_identity(), Matrix_is_identity_get(), Matrix_is_negative_get(), Matrix_is_orthogonal_axis_vectors_get(), Matrix_is_orthogonal_get(), Matrix_item_col(), Matrix_item_row(), Matrix_len(), Matrix_lerp(), Matrix_median_scale_get(), Matrix_normalize(), Matrix_normalized(), Matrix_repr(), Matrix_resize_4x4(), Matrix_rotate(), Matrix_row_get(), Matrix_slice(), Matrix_str(), Matrix_subscript(), Matrix_to_2x2(), Matrix_to_3x3(), Matrix_to_4x4(), Matrix_to_euler(), Matrix_to_NxN(), Matrix_to_quaternion(), Matrix_to_scale(), Matrix_to_translation(), Matrix_translation_get(), Matrix_translation_set(), Matrix_transpose(), Matrix_transposed(), matrix_unit_internal(), Matrix_zero(), MatrixAccess_ass_subscript(), MatrixAccess_clear(), MatrixAccess_dealloc(), MatrixAccess_iter(), MatrixAccess_len(), MatrixAccess_slice(), MatrixAccess_subscript(), MatrixAccess_traverse(), NonTVertex_init(), NonTVertex_svertex_get(), NonTVertex_svertex_set(), Normal2DF0D___init__(), Normal2DF1D___init__(), Operators_dealloc(), Orientation2DF1D___init__(), Orientation3DF1D___init__(), orientedViewEdgeIterator_init(), orientedViewEdgeIterator_iter(), orientedViewEdgeIterator_iternext(), orientedViewEdgeIterator_object_get(), PolygonalizationShader___init__(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::process_extension_sample(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::process_start_sample(), prop_subscript_ass_array_int(), py_bvhtree__tp_dealloc(), py_bvhtree_find_nearest(), py_bvhtree_find_nearest_range(), py_bvhtree_nearest_point_cb(), py_bvhtree_nearest_point_range_cb(), py_bvhtree_overlap(), py_bvhtree_ray_cast(), py_bvhtree_raycast_cb(), py_imbuf_channels_get(), py_imbuf_copy(), Py_ImBuf_CreatePyObject(), py_imbuf_crop(), py_imbuf_dealloc(), py_imbuf_deepcopy(), py_imbuf_filepath_get(), py_imbuf_filepath_set(), py_imbuf_free(), py_imbuf_hash(), py_imbuf_planes_get(), py_imbuf_ppm_get(), py_imbuf_ppm_set(), py_imbuf_repr(), py_imbuf_resize(), py_imbuf_size_get(), py_imbuf_valid_check(), py_kdtree_balance(), py_kdtree_find(), py_kdtree_find_n(), py_kdtree_find_range(), py_kdtree_insert(), pygpu_batch__tp_clear(), pygpu_batch__tp_dealloc(), pygpu_batch__tp_is_gc(), pygpu_batch__tp_traverse(), pygpu_batch_draw(), pygpu_batch_draw_instanced(), pygpu_batch_draw_range(), pygpu_batch_is_program_or_error(), pygpu_batch_program_set(), pygpu_batch_program_use_begin(), pygpu_batch_program_use_end(), pygpu_batch_vertbuf_add(), pygpu_buffer__bf_getbuffer(), pygpu_buffer__mp_ass_subscript(), pygpu_buffer__mp_subscript(), pygpu_buffer__sq_ass_item(), pygpu_buffer__sq_item(), pygpu_buffer__sq_length(), pygpu_buffer__tp_clear(), pygpu_buffer__tp_dealloc(), pygpu_buffer__tp_is_gc(), pygpu_buffer__tp_repr(), pygpu_buffer__tp_traverse(), pygpu_buffer_ass_slice(), pygpu_buffer_dimensions_get(), pygpu_buffer_dimensions_set(), pygpu_buffer_slice(), pygpu_buffer_to_list(), pygpu_buffer_to_list_recursive(), pygpu_framebuffer_bind(), pygpu_framebuffer_clear(), pygpu_framebuffer_free_safe(), pygpu_framebuffer_is_bound(), pygpu_framebuffer_read_color(), pygpu_framebuffer_read_depth(), pygpu_framebuffer_stack_context__tp_dealloc(), pygpu_framebuffer_stack_context_enter(), pygpu_framebuffer_stack_context_exit(), pygpu_framebuffer_viewport_get(), pygpu_framebuffer_viewport_set(), pygpu_IndexBuf__tp_dealloc(), pygpu_interface_info__tp_dealloc(), pygpu_interface_info__tp_new(), pygpu_interface_info_flat(), pygpu_interface_info_get_args(), pygpu_interface_info_name_get(), pygpu_interface_info_no_perspective(), pygpu_interface_info_smooth(), pygpu_matrix_stack_context_enter(), pygpu_matrix_stack_context_exit(), pygpu_offscreen_bind(), pygpu_offscreen_color_texture_get(), pygpu_offscreen_draw_view3d(), pygpu_offscreen_free(), pygpu_offscreen_height_get(), pygpu_offscreen_stack_context__tp_dealloc(), pygpu_offscreen_stack_context_enter(), pygpu_offscreen_stack_context_exit(), pygpu_offscreen_texture_color_get(), pygpu_offscreen_unbind(), pygpu_offscreen_width_get(), pygpu_shader__tp_dealloc(), pygpu_shader_attr_from_name(), pygpu_shader_attrs_info_get(), pygpu_shader_bind(), pygpu_shader_format_calc(), pygpu_shader_image(), pygpu_shader_info__tp_dealloc(), pygpu_shader_info_compute_source(), pygpu_shader_info_define(), pygpu_shader_info_fragment_out(), pygpu_shader_info_fragment_source(), pygpu_shader_info_image(), pygpu_shader_info_local_group_size(), pygpu_shader_info_push_constant(), pygpu_shader_info_sampler(), pygpu_shader_info_typedef_source(), pygpu_shader_info_uniform_buf(), pygpu_shader_info_vertex_in(), pygpu_shader_info_vertex_out(), pygpu_shader_info_vertex_source(), pygpu_shader_name(), pygpu_shader_program_get(), pygpu_shader_uniform_block(), pygpu_shader_uniform_block_from_name(), pygpu_shader_uniform_bool(), pygpu_shader_uniform_float(), pygpu_shader_uniform_from_name(), pygpu_shader_uniform_int(), pygpu_shader_uniform_sampler(), pygpu_shader_uniform_vector_float(), pygpu_shader_uniform_vector_int(), pygpu_texture_clear(), pygpu_texture_format_get(), pygpu_texture_height_get(), pygpu_texture_read(), pygpu_texture_width_get(), pygpu_uniformbuffer_update(), pygpu_vertbuf__tp_dealloc(), pygpu_vertbuf_attr_fill(), pygpu_vertformat__tp_dealloc(), pygpu_vertformat_attr_add(), PyKDTree__tp_dealloc(), PyKDTree__tp_init(), pyprop_array_foreach_getset(), pyrna_dir_members_py(), pyrna_func_call(), pyrna_func_doc_get(), pyrna_func_error_prefix(), pyrna_func_repr(), pyrna_invalidate(), pyrna_prop_array_ass_subscript(), pyrna_prop_array_bool(), pyrna_prop_array_contains(), pyrna_prop_array_dealloc(), pyrna_prop_array_foreach_get(), pyrna_prop_array_foreach_set(), pyrna_prop_array_getattro(), pyrna_prop_array_iter(), pyrna_prop_array_length(), pyrna_prop_array_repr(), pyrna_prop_array_subscript(), pyrna_prop_array_subscript_int(), pyrna_prop_array_subscript_slice(), pyrna_prop_array_to_py_index(), pyrna_prop_as_bytes(), pyrna_prop_collection_ass_subscript(), pyrna_prop_collection_ass_subscript_int(), pyrna_prop_collection_bool(), pyrna_prop_collection_contains(), pyrna_prop_collection_find(), pyrna_prop_collection_foreach_get(), pyrna_prop_collection_foreach_set(), pyrna_prop_collection_get(), pyrna_prop_collection_getattro(), pyrna_prop_collection_idprop_add(), pyrna_prop_collection_idprop_clear(), pyrna_prop_collection_idprop_move(), pyrna_prop_collection_idprop_remove(), pyrna_prop_collection_items(), pyrna_prop_collection_iter(), pyrna_prop_collection_iter_CreatePyObject(), pyrna_prop_collection_iter_dealloc(), pyrna_prop_collection_iter_next(), pyrna_prop_collection_keys(), pyrna_prop_collection_length(), pyrna_prop_collection_setattro(), pyrna_prop_collection_string_subscript_supported_or_error(), pyrna_prop_collection_string_subscript_unsupported_error(), pyrna_prop_collection_subscript(), pyrna_prop_collection_subscript_int(), pyrna_prop_collection_subscript_slice(), pyrna_prop_collection_subscript_str(), pyrna_prop_collection_subscript_str_lib_pair(), pyrna_prop_collection_subscript_str_lib_pair_ptr(), pyrna_prop_collection_type_check(), pyrna_prop_collection_values(), pyrna_prop_dealloc(), pyrna_prop_dir(), pyrna_prop_hash(), pyrna_prop_path_from_id(), pyrna_prop_repr(), pyrna_prop_repr_ex(), pyrna_prop_str(), pyrna_prop_update(), pyrna_prop_validity_check(), pyrna_py_from_array_index(), pyrna_py_to_prop_array_index(), pyrna_struct_as_instance(), pyrna_struct_as_pointer(), pyrna_struct_as_srna(), pyrna_struct_ass_subscript(), pyrna_struct_contains(), pyrna_struct_dealloc(), pyrna_struct_dir(), pyrna_struct_driver_add(), pyrna_struct_driver_remove(), pyrna_struct_get(), pyrna_struct_get_data(), pyrna_struct_get_id_data(), pyrna_struct_get_rna_type(), pyrna_struct_getattro(), pyrna_struct_hash(), pyrna_struct_id_properties_clear(), pyrna_struct_id_properties_ensure(), pyrna_struct_id_properties_ui(), pyrna_struct_is_property_hidden(), pyrna_struct_is_property_overridable_library(), pyrna_struct_is_property_readonly(), pyrna_struct_is_property_set(), pyrna_struct_items(), pyrna_struct_keyframe_delete(), pyrna_struct_keyframe_insert(), pyrna_struct_keys(), pyrna_struct_path_from_id(), pyrna_struct_path_resolve(), pyrna_struct_pop(), pyrna_struct_property_overridable_library_set(), pyrna_struct_property_unset(), pyrna_struct_repr(), pyrna_struct_setattro(), pyrna_struct_str(), pyrna_struct_subscript(), pyrna_struct_type_recast(), pyrna_struct_values(), QuantitativeInvisibilityF0D___init__(), QuantitativeInvisibilityF1D___init__(), QuantitativeInvisibilityUP1D___init__(), quat__apply_to_copy(), Quaternion_angle_get(), Quaternion_angle_set(), Quaternion_ass_item(), Quaternion_ass_slice(), Quaternion_ass_subscript(), Quaternion_axis_get(), Quaternion_axis_set(), Quaternion_axis_vector_get(), Quaternion_axis_vector_set(), Quaternion_conjugate(), Quaternion_conjugated(), Quaternion_copy(), Quaternion_CreatePyObject(), Quaternion_CreatePyObject_cb(), Quaternion_CreatePyObject_wrap(), Quaternion_cross(), Quaternion_deepcopy(), Quaternion_dot(), Quaternion_hash(), Quaternion_identity(), Quaternion_invert(), Quaternion_inverted(), Quaternion_item(), Quaternion_magnitude_get(), Quaternion_make_compatible(), Quaternion_neg(), Quaternion_negate(), Quaternion_normalize(), Quaternion_normalized(), Quaternion_repr(), Quaternion_rotate(), Quaternion_rotation_difference(), Quaternion_slerp(), Quaternion_slice(), Quaternion_str(), Quaternion_subscript(), Quaternion_to_axis_angle(), Quaternion_to_euler(), Quaternion_to_exponential_map(), Quaternion_to_matrix(), Quaternion_to_swing_twist(), Quaternion_to_tuple_ext(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::randomize_color(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::randomize_opacity(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::randomize_radius(), blender::ed::sculpt_paint::greasepencil::PaintOperationExecutor::randomize_rotation(), ReadCompleteViewMapPixelF0D___init__(), ReadMapPixelF0D___init__(), ReadSteerableViewMapPixelF0D___init__(), Freestyle::BlenderStrokeRenderer::RenderStrokeRepBasic(), thread::run(), SameShapeIdBP1D___init__(), SamplingShader___init__(), ShapeIdF0D___init__(), ShapeUP1D___init__(), SmoothingShader___init__(), SpatialNoiseShader___init__(), srna_from_self(), SShape_add_edge(), SShape_add_vertex(), SShape_bbox_get(), SShape_bbox_set(), SShape_compute_bbox(), SShape_dealloc(), SShape_edges_get(), SShape_id_get(), SShape_id_set(), SShape_init(), SShape_name_get(), SShape_name_set(), SShape_repr(), SShape_vertices_get(), Stroke_compute_sampling(), Stroke_id_get(), Stroke_id_set(), Stroke_init(), Stroke_insert_vertex(), Stroke_iter(), Stroke_length_2d_get(), Stroke_length_2d_set(), Stroke_medium_type_get(), Stroke_medium_type_set(), Stroke_remove_all_vertices(), Stroke_remove_vertex(), Stroke_resample(), Stroke_reversed(), Stroke_sq_item(), Stroke_sq_length(), Stroke_stroke_vertices_begin(), Stroke_stroke_vertices_end(), Stroke_stroke_vertices_size(), Stroke_texture_id_get(), Stroke_texture_id_set(), Stroke_tips_get(), Stroke_tips_set(), Stroke_update_length(), StrokeAttribute_alpha_get(), StrokeAttribute_alpha_set(), StrokeAttribute_color_get(), StrokeAttribute_color_set(), StrokeAttribute_dealloc(), StrokeAttribute_get_attribute_real(), StrokeAttribute_get_attribute_vec2(), StrokeAttribute_get_attribute_vec3(), StrokeAttribute_has_attribute_real(), StrokeAttribute_has_attribute_vec2(), StrokeAttribute_has_attribute_vec3(), StrokeAttribute_init(), StrokeAttribute_mathutils_get(), StrokeAttribute_mathutils_get_index(), StrokeAttribute_mathutils_set(), StrokeAttribute_mathutils_set_index(), StrokeAttribute_repr(), StrokeAttribute_set_attribute_real(), StrokeAttribute_set_attribute_vec2(), StrokeAttribute_set_attribute_vec3(), StrokeAttribute_thickness_get(), StrokeAttribute_thickness_set(), StrokeAttribute_visible_get(), StrokeAttribute_visible_set(), StrokeShader___dealloc__(), StrokeShader___init__(), StrokeShader___repr__(), StrokeShader_name_get(), StrokeShader_shade(), StrokeTextureStepShader___init__(), StrokeVertex_attribute_get(), StrokeVertex_attribute_set(), StrokeVertex_curvilinear_abscissa_get(), StrokeVertex_curvilinear_abscissa_set(), StrokeVertex_init(), StrokeVertex_mathutils_get(), StrokeVertex_mathutils_get_index(), StrokeVertex_mathutils_set(), StrokeVertex_mathutils_set_index(), StrokeVertex_point_get(), StrokeVertex_point_set(), StrokeVertex_stroke_length_get(), StrokeVertex_stroke_length_set(), StrokeVertex_u_get(), StrokeVertexIterator_at_last_get(), StrokeVertexIterator_decremented(), StrokeVertexIterator_incremented(), StrokeVertexIterator_init(), StrokeVertexIterator_iter(), StrokeVertexIterator_iternext(), StrokeVertexIterator_object_get(), StrokeVertexIterator_reversed(), StrokeVertexIterator_t_get(), StrokeVertexIterator_u_get(), SVertex_add_fedge(), SVertex_add_normal(), SVertex_curvatures_get(), SVertex_id_get(), SVertex_id_set(), SVertex_init(), SVertex_mathutils_get(), SVertex_mathutils_get_index(), SVertex_mathutils_set(), SVertex_mathutils_set_index(), SVertex_normals_get(), SVertex_normals_size_get(), SVertex_point_2d_get(), SVertex_point_2d_set(), SVertex_point_3d_get(), SVertex_point_3d_set(), SVertex_viewvertex_get(), SVertexIterator_init(), SVertexIterator_object_get(), SVertexIterator_t_get(), SVertexIterator_u_get(), ThicknessNoiseShader___init__(), TimeStampF1D___init__(), TipRemoverShader___init__(), TrueBP1D___init__(), TrueUP0D___init__(), TrueUP1D___init__(), TVertex_back_svertex_get(), TVertex_back_svertex_set(), TVertex_front_svertex_get(), TVertex_front_svertex_set(), TVertex_get_mate(), TVertex_get_svertex(), TVertex_id_get(), TVertex_id_set(), TVertex_init(), UnaryFunction0D___dealloc__(), UnaryFunction0D_name_get(), UnaryFunction0DDouble___call__(), UnaryFunction0DDouble___dealloc__(), UnaryFunction0DDouble___init__(), UnaryFunction0DDouble___repr__(), UnaryFunction0DEdgeNature___call__(), UnaryFunction0DEdgeNature___dealloc__(), UnaryFunction0DEdgeNature___init__(), UnaryFunction0DEdgeNature___repr__(), UnaryFunction0DFloat___call__(), UnaryFunction0DFloat___dealloc__(), UnaryFunction0DFloat___init__(), UnaryFunction0DFloat___repr__(), UnaryFunction0DId___call__(), UnaryFunction0DId___dealloc__(), UnaryFunction0DId___init__(), UnaryFunction0DId___repr__(), UnaryFunction0DMaterial___call__(), UnaryFunction0DMaterial___dealloc__(), UnaryFunction0DMaterial___init__(), UnaryFunction0DMaterial___repr__(), UnaryFunction0DUnsigned___call__(), UnaryFunction0DUnsigned___dealloc__(), UnaryFunction0DUnsigned___init__(), UnaryFunction0DUnsigned___repr__(), UnaryFunction0DVec2f___call__(), UnaryFunction0DVec2f___dealloc__(), UnaryFunction0DVec2f___init__(), UnaryFunction0DVec2f___repr__(), UnaryFunction0DVec3f___call__(), UnaryFunction0DVec3f___dealloc__(), UnaryFunction0DVec3f___init__(), UnaryFunction0DVec3f___repr__(), UnaryFunction0DVectorViewShape___call__(), UnaryFunction0DVectorViewShape___dealloc__(), UnaryFunction0DVectorViewShape___init__(), UnaryFunction0DVectorViewShape___repr__(), UnaryFunction0DViewShape___call__(), UnaryFunction0DViewShape___dealloc__(), UnaryFunction0DViewShape___init__(), UnaryFunction0DViewShape___repr__(), UnaryFunction1D___dealloc__(), UnaryFunction1D_name_get(), UnaryFunction1DDouble___call__(), UnaryFunction1DDouble___dealloc__(), UnaryFunction1DDouble___init__(), UnaryFunction1DDouble___repr__(), UnaryFunction1DEdgeNature___call__(), UnaryFunction1DEdgeNature___dealloc__(), UnaryFunction1DEdgeNature___init__(), UnaryFunction1DEdgeNature___repr__(), UnaryFunction1DFloat___call__(), UnaryFunction1DFloat___dealloc__(), UnaryFunction1DFloat___init__(), UnaryFunction1DFloat___repr__(), UnaryFunction1DUnsigned___call__(), UnaryFunction1DUnsigned___dealloc__(), UnaryFunction1DUnsigned___init__(), UnaryFunction1DUnsigned___repr__(), UnaryFunction1DVec2f___call__(), UnaryFunction1DVec2f___dealloc__(), UnaryFunction1DVec2f___init__(), UnaryFunction1DVec2f___repr__(), UnaryFunction1DVec3f___call__(), UnaryFunction1DVec3f___dealloc__(), UnaryFunction1DVec3f___init__(), UnaryFunction1DVec3f___repr__(), UnaryFunction1DVectorViewShape___call__(), UnaryFunction1DVectorViewShape___dealloc__(), UnaryFunction1DVectorViewShape___init__(), UnaryFunction1DVectorViewShape___repr__(), UnaryFunction1DVoid___call__(), UnaryFunction1DVoid___dealloc__(), UnaryFunction1DVoid___init__(), UnaryFunction1DVoid___repr__(), UnaryPredicate0D___call__(), UnaryPredicate0D___dealloc__(), UnaryPredicate0D___init__(), UnaryPredicate0D___repr__(), UnaryPredicate0D_name_get(), UnaryPredicate1D___call__(), UnaryPredicate1D___dealloc__(), UnaryPredicate1D___init__(), UnaryPredicate1D___repr__(), UnaryPredicate1D_name_get(), blender::ed::view3d::geometry_nodes_gizmos::TransformGizmos::update_rotate_transform_and_target_property(), blender::ed::view3d::geometry_nodes_gizmos::TransformGizmos::update_scale_transform_and_target_property(), blender::ed::view3d::geometry_nodes_gizmos::DialGizmo::update_target_property(), blender::ed::view3d::geometry_nodes_gizmos::LinearGizmo::update_target_property(), blender::ed::view3d::geometry_nodes_gizmos::TransformGizmos::update_translate_transform_and_target_property(), vec__apply_to_copy(), Vector_angle(), Vector_angle_signed(), Vector_ass_item(), vector_ass_item_internal(), Vector_ass_slice(), Vector_ass_subscript(), Vector_axis_get(), Vector_axis_set(), Vector_copy(), Vector_CreatePyObject(), Vector_CreatePyObject_alloc(), Vector_CreatePyObject_cb(), Vector_CreatePyObject_wrap(), Vector_cross(), Vector_deepcopy(), Vector_dot(), Vector_hash(), Vector_item(), vector_item_internal(), Vector_len(), Vector_length_get(), Vector_length_set(), Vector_length_squared_get(), Vector_lerp(), Vector_neg(), Vector_negate(), Vector_normalize(), Vector_normalized(), Vector_orthogonal(), Vector_project(), Vector_reflect(), Vector_repr(), Vector_resize(), Vector_resize_2d(), Vector_resize_3d(), Vector_resize_4d(), Vector_resized(), Vector_rotate(), Vector_rotation_difference(), Vector_slerp(), Vector_slice(), Vector_str(), Vector_subscript(), Vector_swizzle_get(), Vector_swizzle_set(), Vector_to_2d(), Vector_to_3d(), Vector_to_4d(), Vector_to_track_quat(), Vector_to_tuple(), Vector_to_tuple_ex(), Vector_zero(), VertexOrientation2DF0D___init__(), VertexOrientation3DF0D___init__(), ViewEdge_chaining_time_stamp_get(), ViewEdge_chaining_time_stamp_set(), ViewEdge_first_fedge_get(), ViewEdge_first_fedge_set(), ViewEdge_first_viewvertex_get(), ViewEdge_first_viewvertex_set(), ViewEdge_id_get(), ViewEdge_id_set(), ViewEdge_init(), ViewEdge_is_closed_get(), ViewEdge_last_fedge_get(), ViewEdge_last_fedge_set(), ViewEdge_last_viewvertex_get(), ViewEdge_last_viewvertex_set(), ViewEdge_nature_get(), ViewEdge_nature_set(), ViewEdge_occludee_get(), ViewEdge_occludee_set(), ViewEdge_qi_get(), ViewEdge_qi_set(), ViewEdge_update_fedges(), ViewEdge_viewshape_get(), ViewEdge_viewshape_set(), ViewEdgeIterator_begin_get(), ViewEdgeIterator_begin_set(), ViewEdgeIterator_change_orientation(), ViewEdgeIterator_current_edge_get(), ViewEdgeIterator_current_edge_set(), ViewEdgeIterator_init(), ViewEdgeIterator_object_get(), ViewEdgeIterator_orientation_get(), ViewEdgeIterator_orientation_set(), ViewMap_dealloc(), ViewMap_get_closest_fedge(), ViewMap_get_closest_viewedge(), ViewMap_init(), ViewMap_repr(), ViewMap_scene_bbox_get(), ViewMap_scene_bbox_set(), ViewMapGradientNormBP1D___init__(), ViewShape_add_edge(), ViewShape_add_vertex(), ViewShape_dealloc(), ViewShape_edges_get(), ViewShape_edges_set(), ViewShape_id_get(), ViewShape_init(), ViewShape_library_path_get(), ViewShape_name_get(), ViewShape_repr(), ViewShape_sshape_get(), ViewShape_sshape_set(), ViewShape_vertices_get(), ViewShape_vertices_set(), ViewVertex_edges_begin(), ViewVertex_edges_end(), ViewVertex_edges_iterator(), ViewVertex_nature_get(), ViewVertex_nature_set(), WithinImageBoundaryUP1D___init__(), ZDiscontinuityF0D___init__(), and ZDiscontinuityF1D___init__().