aboutsummaryrefslogtreecommitdiff
path: root/paths.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2020-12-30 11:41:01 +0100
committerSébastien Dailly <sebastien@chimrod.com>2020-12-30 11:41:01 +0100
commite25b7797708c19cbaef68c14ebef8738de44c2d9 (patch)
tree6d778a7bca390c496ee95cfb337f2f26fe0aa5c3 /paths.ml
parentfae31bdb659b4b14322136e045ea565d38bbd04f (diff)
Refactor
Diffstat (limited to 'paths.ml')
-rwxr-xr-xpaths.ml6
1 files changed, 6 insertions, 0 deletions
diff --git a/paths.ml b/paths.ml
index 82eca48..49bf03a 100755
--- a/paths.ml
+++ b/paths.ml
@@ -1,4 +1,10 @@
(** Common module for ensuring that the function is evaluated only once *)
module Path_Builder = Path.Builder.Make(Path.Point)
+module Fixed = Path.Fixed.Make(Path.Point)
+module SVGRepr = Path.WireFramePrinter.Make(Layer.Svg)
+module SVG_Printer = Fixed.DrawFixed(SVGRepr)
+
+module CanvaRepr = Path.FillPrinter.Make(Layer.CanvaPrinter)
+module Fixed_Printer = Fixed.DrawFixed(CanvaRepr)