Using an AffineTransform to include a Shape's Stroke when clipping
If I have a Shape with a border of width defined by some Stroke width, am I able to include the Stroke border by using a clip defined by a Shape produced from myAffineTransform.createTransformedShape(myShape) ?
I'm not sure that it's possible, since if I scale the x and y values using the matrix represented by myAffineTransform, the growth of the clip boundary would not be consistent. Some regions would be expanded more than others.
Does anyone know whether it's possible to achieve this growth of a clip area by n pixels, and if so, how?

