An obvious question about the CDK rendering code is : "Why not scale text with AffineTransform?" So, of course this is possible, and works quite nicely - but there is a cost.
One of the goals of the rendering code is to start from models of any scale, and render them as consistently sized diagrams on screen. By 'scale' here I simply mean the average distance between points. So the CDK layout code might use a distance of (say) 1 between two carbon atoms, but a file with a structure made in some other chemical editor might have an average atom-atom distance of 100. These are unitless values, by the way.
Now, what we could have done was transform the coordinates in the model to a consistent scale, then rendered these transformed coordinates. What we chose to do, however, was to calculate a single transform for the model and draw with this. If you use this transform to scale the graphics object before drawing you get this for a model scale of 10:
Comments
The font size is smaller because the scale is smaller. The world distance between A-B is more in the second one, so a smaller scale is needed to put it on screen.
Say the A-B distance is 10 or 100, then the scale necessary to draw a line on screen of 300px is either 30 or 3, respectively. The font size is scaled by the same amount.
1. how is the font specified, binary or vector? Binary fonts cannot be scaled without loss of quality
2. does the user have preferences? some like big atom symbols some not. Either way, they should have a choice
3. can the description of the molecule be converted to a vector description? this is a must nowadays, also the conversion must be identical to what's onscreen. It's so annoying to have the SVG output of a nice formula change the font used and fine-positioning lost
what follows is that normal bitmapped fonts cannot be used. also, as you say, no absolute measure of font size will suffice because what should be constant within the molecule is the ratio font size/bond length. there is no way to accomplish this except with a vector font and an independent measure like height of A divided by the distance of C-C in ethane. If this metric is set to a reasonable value, this value can be changed then by the user.
what do you say?
Ralf Stephan
(written with JCP in mind)
The difficulty - as always - is implementing it! Since I made this post, I've learned a few things about drawing fonts in chemical reactions, and it is possible to have nicely scaled fonts - but I did end up using AffineTransforms in combination with FontMetrics, and various other tricks.
One important point that was brought up by Egon was the need for scaling the font as a proportion (like 50%, 120%, etc) rather than some magic number. I agree that should be part of a high-level API, but in my experience it is usually necessary to say "12pt" or other exact measures.
Basically, I will have to take another look at the font management in the CDK. It looks like you've been doing some great work reviving the project (I'm following on github) so perhaps this is a good time to push through all the CDK-graphics changes.
gilleain