Skip to content
/ ocaml-gr Public

[wip]…Low level bindigs to the GR plotting framework (gr-framework.org)

License

Notifications You must be signed in to change notification settings

mseri/ocaml-gr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lowlevel bindigs to the GR plotting framework

Based on version 0.37.0, the one installed by hombrew on osx (brew install libgr) at the time of creating the bindings.

To install, first install libGR and set the GRDIR env variable, then run opam install gr.

The documentation is published here: online documentation.

Currently libGr is only looked via GRDIR or through the default library paths of your system. You can customise this by unsetting GRDIR and specifying the path to libGR.so (or libGR.dylib) with the environment variable LIBGRPATH.

The tests are only compiling the examples. You can run them as follows:

$ GRDIR=~/gr dune exec examples/example_simple.exe
$ GRDIR=~/gr dune exec examples/example_complex.exe
$ GRDIR=~/gr dune exec examples/example_lowlevel.exe
$ GRDIR=~/gr dune exec examples/example_dynamic.exe

Make sure that GRDIR or LIBGRPATH are pointing to the right path.

Disclaimer

Very incomplete: I don't know how to deal with the ``meta thingy'' in ctypes, and I have yet to bind the GKS library.

At some point I would like to add a high level interface, but I cannot predict when I will be able to put in thee time.

Contributions are welcome.