Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2021-02-18 11:09:31 +0300
committerJeroen Bakker <jeroen@blender.org>2021-02-18 11:09:31 +0300
commit1bcc8f84105a7715655bc42ec12eca41d06c38cf (patch)
tree80f30a61aa55c13f7153a04565b09ecccb3e3c81 /source/blender/python
parent450ea1b755cb9ea71b0949792a2d1ffb39f3c3d9 (diff)
Cleanup: Python: naming mismatch in bvh.ray_cast.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/mathutils/mathutils_bvhtree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/mathutils/mathutils_bvhtree.c b/source/blender/python/mathutils/mathutils_bvhtree.c
index 0f3e54dc41f..1acbcc006ca 100644
--- a/source/blender/python/mathutils/mathutils_bvhtree.c
+++ b/source/blender/python/mathutils/mathutils_bvhtree.c
@@ -333,8 +333,8 @@ PyDoc_STRVAR(py_bvhtree_ray_cast_doc,
"\n"
" Cast a ray onto the mesh.\n"
"\n"
- " :arg co: Start location of the ray in object space.\n"
- " :type co: :class:`Vector`\n"
+ " :arg origin: Start location of the ray in object space.\n"
+ " :type origin: :class:`Vector`\n"
" :arg direction: Direction of the ray in object space.\n"
" :type direction: :class:`Vector`\n" PYBVH_FIND_GENERIC_DISTANCE_DOC
PYBVH_FIND_GENERIC_RETURN_DOC);