How to develop an Osirix Plugin - part 4: Plot


Core Plot is a popular open source plotting framework in Objective C. It was used by osirixnewby.

If one wants to use its new version in osirixplugin, there is a problem - this framework is written for 64bit architecture and uses (ARC) Automatic Reference Counting. It cannot be used in code written for 32 bit architecture.

Older version of Core Plot - 1.5.1 is available. I compiled the source code for 32bit architecture overcoming some issues:

To run Core Plot in an Osirix plugin i looked at the DatePlot example.

[top]