In the centered-solid composition, we have a <Solid> with a rotation of 45 degrees.
but the outline shows no rotation.
We should think about how we can support showing an outline on transformed elements.
In web-renderer, we have a sophisticated algorithm for recursively finding out the transform of something, but it actually leads to layout recalculation. This is undesired.
This might eventually be too complicated to realize. I don't think we can find the 3D transform that is applied to an element, composed of it's own and it's parent.
So we should also ask ourselves - where to draw the line?
In the centered-solid composition, we have a
<Solid>with a rotation of 45 degrees.but the outline shows no rotation.
We should think about how we can support showing an outline on transformed elements.
In
web-renderer, we have a sophisticated algorithm for recursively finding out the transform of something, but it actually leads to layout recalculation. This is undesired.This might eventually be too complicated to realize. I don't think we can find the 3D transform that is applied to an element, composed of it's own and it's parent.
So we should also ask ourselves - where to draw the line?