Just wondering if this is possible in wpf,
Say we have a Path object p1 with geometry = g1 (same as p1.Data).
Similarly if we have another Path object p2 with geometry = g2 (same as p2.Data).
Now if we would like to know what is g2-g1 (same as p2.Data - p1.Data) is it possible.
How about g1+g2?
Please let me know if you have any suggestions.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Use a CombinedGeometry object, which I'm doing to make a single mask out of shapes drawn with the DrawTools library.
|
|||
|
|