Search code examples
c#wpf.net-4.0collision

WPF C# Finding the corners of a transformed RectangleGeometry


I'm trying to do some hit testing on a Rect I've drawn with several RenderTransforms pushed to the Canvas' DrawingContext. I've applied the same rotate/scale/translate transforms to a RectangleGeometry so I can get the bounds of the final drawing. However, the .Bounds property on RectangleGeometry returns the axis-aligned bounding box, while I need the oriented bounding box.

In short, I need some way to find the corners of the actual transformed rectangle so I can perform hit/collision testing on it.


Solution

  • Apply the transforms to the points of the rectangle.