Divide canvas: merge subpads into one single subpad

Hi!

Forgive me for the bad title. I couldn’t find a better one.

I want to divide a canvas into several pads. I know how to do that:
c->Divide(2, 2);

But I want to be able to merge the first two subpads into one single pad, so that the final picture look like:
Untitled

How can I do that?

I would way there is two ways:

  1. The general one where you create the 3 pads at the exact position you need them. And you do not use Divide()

  2. You first Divide the Canvas with (1,2) then you Divide the pad number 2 in that canvas in (2,1)

I feel more at my ease with the 2nd alternative.

And…

Done, I did it correctly. :slight_smile:
Thank you!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.