Fixed typo Python API
`mathutils.geometry.barycentric_transform` used `tri_a[1-3]` for the target triangle, but in fact they are `tri_b[1-3]`
This commit is contained in:
@@ -954,12 +954,12 @@ PyDoc_STRVAR(M_Geometry_barycentric_transform_doc,
|
||||
" :type tri_a2: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_a3: source triangle vertex.\n"
|
||||
" :type tri_a3: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_a1: target triangle vertex.\n"
|
||||
" :type tri_a1: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_a2: target triangle vertex.\n"
|
||||
" :type tri_a2: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_a3: target triangle vertex.\n"
|
||||
" :type tri_a3: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_b1: target triangle vertex.\n"
|
||||
" :type tri_b1: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_b2: target triangle vertex.\n"
|
||||
" :type tri_b2: :class:`mathutils.Vector`\n"
|
||||
" :arg tri_b3: target triangle vertex.\n"
|
||||
" :type tri_b3: :class:`mathutils.Vector`\n"
|
||||
" :return: The transformed point\n"
|
||||
" :rtype: :class:`mathutils.Vector`'s\n"
|
||||
);
|
||||
|
Reference in New Issue
Block a user