addam / Export-Paper-Model-from-Blender

Python addon for creating paper models in Blender (development version)
https://blenderartists.org/t/export-paper-model/476597
409 stars 54 forks source link

create flat blender object ? #43

Closed wrnice closed 8 years ago

wrnice commented 8 years ago

Hello !

I am trying to create an unfolded mesh inside blender, as a new object, not as a svg file. Is it possible using your wonderful script ? Or do you know a way to achieve this ?

The goal is to prototype fabric and plastic film shapes for real construction projects.

Thanks !

addam commented 8 years ago

Hi, unfolding the mesh in 3d is possible using the other script from this repository, object_convert_to_armature.py. The process consists basically of three steps:

  1. Choose which edges should be cut to unfold the net
  2. Actually cut the edges, creating doubled vertices as necessary
  3. Flatten the mesh using an armature

Step 1. is done by the Unfold button in Paper Model tab. Step 2. has to be done by hand and using the Edge Split operator; read the details on the blender wiki, it is actually not hard. The last step is done by Convert to Armature. An armature will hopefully allow you to do everything you need.

This process is a bit complicated because I want my scripts not to modify mesh data if not necessary; because of that, you have to split the edges yourself.

wrnice commented 8 years ago

Thank you ! This will do just what is needed !