package oplot

  1. Overview
  2. Docs

Source file make_core.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(* Constructing Oplot's main module *)

module Make (Graphics : Make_graphics.GRAPHICS) = struct
  include Common
  include Oplotdef
  include Renderinit
  include Sysinit
  module Oplotmain = Oplotmain.Make (Graphics)
  include Oplotmain
  module Isocurve = Isocurve
  include Addons
end


(*
   Local Variables:
   compile-command:"cd ..;dune build"
   End:
*)