0

I'm working on a program where I need to merge two devDept.Eyeshot.Entities.Regions.

Is there a method or function built in EyeShot to do this automatically, or should I do it manually?

Gudarzi
  • 486
  • 3
  • 7
  • 22

1 Answers1

1

Do you mean Union? You can do boolean operations between Region entities using:

Region[] result = devDept.Eyeshot.Region.Union(r1, r2);
abenci
  • 8,422
  • 19
  • 69
  • 134