WPF C# Finding the corners of a transformed Rectan

2019-03-03 14:20发布

问题:

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.

回答1:

Apply the transforms to the points of the rectangle.