Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/bmesh/bmesh_py_utils.c
| Show First 20 Lines • Show All 432 Lines • ▼ Show 20 Lines | |||||
| " Face split with optional intermediate points.\n" | " Face split with optional intermediate points.\n" | ||||
| "\n" | "\n" | ||||
| " :arg face: The face to cut.\n" | " :arg face: The face to cut.\n" | ||||
| " :type face: :class:`bmesh.types.BMFace`\n" | " :type face: :class:`bmesh.types.BMFace`\n" | ||||
| " :arg vert_a: First vertex to cut in the face (face must contain the vert).\n" | " :arg vert_a: First vertex to cut in the face (face must contain the vert).\n" | ||||
| " :type vert_a: :class:`bmesh.types.BMVert`\n" | " :type vert_a: :class:`bmesh.types.BMVert`\n" | ||||
| " :arg vert_b: Second vertex to cut in the face (face must contain the vert).\n" | " :arg vert_b: Second vertex to cut in the face (face must contain the vert).\n" | ||||
| " :type vert_b: :class:`bmesh.types.BMVert`\n" | " :type vert_b: :class:`bmesh.types.BMVert`\n" | ||||
| " :arg coords: Optional argument to define points inbetween *vert_a* and *vert_b*.\n" | " :arg coords: Optional argument to define points in between *vert_a* and *vert_b*.\n" | ||||
| " :type coords: sequence of float triplets\n" | " :type coords: sequence of float triplets\n" | ||||
| " :arg use_exist: .Use an existing edge if it exists (Only used when *coords* argument is empty or omitted)\n" | " :arg use_exist: .Use an existing edge if it exists (Only used when *coords* argument is empty or omitted)\n" | ||||
| " :type use_exist: boolean\n" | " :type use_exist: boolean\n" | ||||
| " :arg example: Newly created edge will copy settings from this one.\n" | " :arg example: Newly created edge will copy settings from this one.\n" | ||||
| " :type example: :class:`bmesh.types.BMEdge`\n" | " :type example: :class:`bmesh.types.BMEdge`\n" | ||||
| " :return: The newly created face or None on failure.\n" | " :return: The newly created face or None on failure.\n" | ||||
| " :rtype: (:class:`bmesh.types.BMFace`, :class:`bmesh.types.BMLoop`) pair\n" | " :rtype: (:class:`bmesh.types.BMFace`, :class:`bmesh.types.BMLoop`) pair\n" | ||||
| ); | ); | ||||
| ▲ Show 20 Lines • Show All 399 Lines • Show Last 20 Lines | |||||