Rectangle を含むクラスがあり、これらのオブジェクトでリストを埋めます。これが私がやろうとしていることの例です:
class Foo
{
Rectangle rect;
public Foo(Rectangle r) { rect = r; }
}
List<Foo> listFoo = new List<Foo>();
// Call the next three Rectangles 'A' 'B' and 'C'.
listFoo.Add(new Foo(new Rectangle(0, 0, 5, 5))); // Rect 'A' intersects with B
listFoo.Add(new Foo(new Rectangle(3, 3, 5, 5))); // Rect 'B' intersects with A & C
listFoo.Add(new Foo(new Rectangle(6, 6, 5, 5))); // Rect 'C' intersects with B
var query = ???;
foreach (Rectangle r in query)
{
// Should give two results
// Rectangle(3, 3, 2, 2); A & B
// Rectangle(6, 6, 2, 2); B & C
}
Rectangle.Intersect() を使用して、.Intersect(A,B) や .Intersect(B,A) などからの重複なしで、listFoo 内の一意の交差のリストを返す単一のクエリを作成できますか?