patmo141 / odc_public

Addon for Blender meant to streamline dental CAD and design workflows
98 stars 43 forks source link

object.to_mesh() leaves copy in bpy.data.meshes #45

Open patmo141 opened 7 years ago

patmo141 commented 7 years ago

Temporary meshes get saved causing file sizes to grow. Need to search code for all uses of the

s-leger commented 7 years ago

Use bmesh module instead to replace your mesh data right on datablock. See https://github.com/s-leger/archipack/blob/master/bmesh_utils.py#L129 as reference.