aboutsummaryrefslogtreecommitdiff
path: root/paths.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-01-01 11:08:38 +0100
committerSébastien Dailly <sebastien@chimrod.com>2021-01-01 11:08:38 +0100
commitaf88c8895bba85fe5340b34aafb3dce7650bd01f (patch)
treeee0c9d1bd463242c681c6202a9a57c8110d58f59 /paths.ml
parente25b7797708c19cbaef68c14ebef8738de44c2d9 (diff)
Use first type module instead of functors
Diffstat (limited to 'paths.ml')
-rwxr-xr-xpaths.ml8
1 files changed, 5 insertions, 3 deletions
diff --git a/paths.ml b/paths.ml
index 49bf03a..4ff6c66 100755
--- a/paths.ml
+++ b/paths.ml
@@ -3,8 +3,10 @@
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)
+(* Canva representation *)
module CanvaRepr = Path.FillPrinter.Make(Layer.CanvaPrinter)
-module Fixed_Printer = Fixed.DrawFixed(CanvaRepr)
+
+(* SVG representation *)
+
+module SVGRepr = Path.WireFramePrinter.Make(Layer.Svg)