1

I am trying to build this shape. what is the more efficient way to make these blue rounded polygons? I would like to create rectangles with convex edges and so rounded corners.

enter image description here

Grobby
  • 514
  • 7
  • 26

1 Answers1

2

I suggest you this: if the exact shape is important, trace the bitmap to svg, then import the svg and import it to Blender, convert to mesh, clean the mesh... done! Here it goes:

Open Inkscape, paste the png and trace it like this:

enter image description here

you need to clean the traced paths, delete whatever is not your desired shapes...

then delete the bitmap, save the svg and import it in Blender: scale the imported curve enough (I did 50x), and put "geometry to the center" using the toolbox function (left panel).

enter image description here

then, convert curve to mesh, and change material color if you wish:

enter image description here

enter image description here

Then, convert all mesh triangles (many) to simple ngons, using limited dissolve:

enter image description here

there you are! Of course you have many vertices...

enter image description here

Of course you could also just keep the vector/curves....

m.ardito
  • 11,967
  • 2
  • 23
  • 36