Page MenuHome

Implement BMesh.from_object
ClosedPublic

Authored by Philipp Oeser (lichtwerk) on Dec 11 2018, 1:58 PM.

Diff Detail

Repository
rB Blender
Branch
T59069 (branched from blender2.8)
Build Status
Buildable 2616
Build 2616: arc lint + arc unit

Event Timeline

Brecht Van Lommel (brecht) added inline comments.
source/blender/python/bmesh/bmesh_py_types.c
1007–1008

It's not a new issue, but it seems cage mode is not supported regardless of the value of use_render, so this is a bit confusing.

It should just say "cage arg is unsupported when deform=False", and the code could be simplified to:

if (use_cage)
else if (use_render)
else
This revision is now accepted and ready to land.Dec 11 2018, 2:24 PM
Philipp Oeser (lichtwerk) marked an inline comment as done.Dec 11 2018, 3:13 PM
This revision was automatically updated to reflect the committed changes.