1

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 内の一意の交差のリストを返す単一のクエリを作成できますか?

4

1 に答える 1

4
 var q = (from f1 in listFoo
          from f2 in listFoo
          let r = Rectangle.Intersect(f1.rect,f2.rect)
          where f1 != f2 && r != Rectangle.Empty
          select r).Distinct();
于 2012-12-09T22:43:33.407 に答える