I develop a tool which works with process diagrams. I need to write an export feature for the tool, that will save current process in Visio VDX format.
I found that Visio saves shapes coordinates in a kind of format which is not easy to understand. For example: PinX 1.476377952755906; PinY 9.448818897637793
My tool operates with shapes and connectors on a discrete net, where coordinates starts from 0,0 and can be only integer, equal or more than zero.
So the question is, how to represent Visio coordinates in VDX file in more understandable format, like millimeters for example.
Dan.