I have an ellipse with a given major and minor 'radius'. I then apply a 2D skew affine transformation to it. Then, I want to draw a uniform border inside this new shape, as if a circle were rolled along the interior edge of the newly transformed ellipse, and everywhere the circle touched was drawn in a different color. Or as if the new shape had been outlined with a marker.
This essentially divides the ellipse into an "outer" shape which separates the border from the rest of the scene, and an "inner" shape that separates the border from the interior of my shape. See the diagram at the end of my post.
In the case of this diagram, the very edge of the black outline would be the outer shape, and the shape defined by the transition from green to black would be the inner shape.
The outer shape is an ellipse, I'm fairly certain, as it's just an affine transformation of my original ellipse. I'm not sure if the inner shape I want is also an ellipse. If I assume that the inner shape has the same affine transformation as the out shape, and I just adjust the major/minor axis radii, I get something like in the diagram. The inner shape doesn't intuitively match up with outer shape. It's as if I've drawn a completely arbitrary green ellipse inside my black ellipse. The green ellipse seems to have a different rotation even.
So my questions: Is the inner shape I actually want an ellipse? If so, what are its major/minor axes, and does it have a different affine transformation from its parent? If it does have a different transformation, how do I find it? If it's not an ellipse, what is it?
...
I couldn't upload an imagine because I don't have the reputation points (ugh), but this is the code for it in SVG:
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="skewY(30) rotate(-32)">
<ellipse cx="250" cy="225" rx="225" ry="125" style="fill:rgb(0,0,0);"/>
<ellipse cx="250" cy="225" rx="175" ry="75" style="fill:rgb(0,100,50);"/>
</g>
</svg>
Chrome and Firefox can both display this if you put this into a text file with a .svg extention. If someone can post an image of it for me, I'd appreciate it (not all sites like svg extensions... You might need to rasterize it into a png first).
It also makes it very easy to play around with different transformations and settings for the ellipses. The SVG manual is useful for understanding how the transforms and skews are interpreted.