Can someone please explain to me how coordinate transformations work in draw2d?
I have a hierarchical diagram where a figure can contain figures which also contain figures. At first I added internal figures by using the request's getLocation, fetching the host figure of the EditPolicy and appliying hostFigure.translateToRelative(location) but does not work! neither combinations of translateToParent and other things.
At the end I copied the implementation from the Logic example, which uses getConstraintFor, a method provided by the policy which does the translation itself. I checked this could but also could not understand how it works.
I read in a number of threads in the eclipse forums on this subject, but still don't understand why a simple method like translateToAbsolute does not behave as expected. Could anyone please explan? Thanks
does not work? In what way doestranslateToAbsolute(..)not work as you expect it to? – p12t Oct 18 '11 at 7:36Rectangles you provide as layout constraints for theXYLayoutare expected to be relative to the parent figure. But theXYLayoutwill offset those withgetClientArea().getLocation(). So the final location assigned to the child figures may actually be absolute coordinates (or rather relative to your root figure). This basically means the layout managers only emulate a local coordinate system, so you don't have to care which figures in the hierarchy actually have their own coordinate system and which don't. I hope this explanation makes sense to you =) – p12t Oct 28 '11 at 9:25