How to do boolean operation without merging?

I've been using boolean methods of Region. As stated in the documentation, &, |, -, and ^ often do merge. + is stated that it usually do not merge. I'd like to know if there's a way to prevent merge 100% when doing boolean operations.

Comments

  • Hi d1k,

    "+" isn't a boolean operation. I just joins the shapes from one layer and another. Hence merging is not required.

    But the operations do merging as the implementation is based on an edge representation of the whole layer and merging is a consequence of that scheme. So whenever there is a non-trivial case (e.g. one input being empty), merging will happen. There is no way to actually avoid this.

    Matthias

Sign In or Register to comment.