This module provides access to blenders bmesh data structures.
Rotate the edge and return the newly created edge. If rotating the edge fails, None will be returned.
Parameters: |
|
---|---|
Returns: | The newly rotated edge. |
Return type: | BMEdge |
Split an edge, return the newly created data.
Parameters: |
|
---|---|
Returns: | The newly created (edge, vert) pair. |
Return type: | tuple |
Flip the faces direction.
Parameters: | face (BMFace) – Face to flip. |
---|
Joins a sequence of faces.
Parameters: | faces (BMFace) – Sequence of faces. |
---|---|
Returns: | The newly created face or None on failure. |
Return type: | BMFace |
Split an edge, return the newly created data.
Parameters: |
|
---|
Collapse a vertex into an edge.
Parameters: |
|
---|---|
Returns: | The resulting edge from the collapse operation. |
Return type: | BMEdge |
Split an edge, return the newly created data.
Parameters: |
|
---|---|
Returns: | The resulting edge from the collapse operation. |
Return type: | BMEdge |
Dissolve this vertex (will be removed).
Parameters: | vert (BMVert) – The vert to be dissolved. |
---|---|
Returns: | True when the vertex dissolve is successful. |
Return type: | boolean |