aboutsummaryrefslogtreecommitdiff
path: root/path/repr.ml
diff options
context:
space:
mode:
Diffstat (limited to 'path/repr.ml')
-rwxr-xr-xpath/repr.ml13
1 files changed, 7 insertions, 6 deletions
diff --git a/path/repr.ml b/path/repr.ml
index 55a2920..17fd914 100755
--- a/path/repr.ml
+++ b/path/repr.ml
@@ -1,18 +1,19 @@
module type M = sig
- type t
- type repr
+ type point
+
+ type t
(* Start a new path. *)
val start
- : t -> repr -> repr
+ : point -> t -> t
val line_to
- : t -> t -> repr -> repr
+ : point -> point -> t -> t
val quadratic_to
- : (t * Gg.v2 * Gg.v2 * t) -> repr -> repr
+ : (point * Gg.v2 * Gg.v2 * point) -> t -> t
val stop
- : repr -> repr
+ : t -> t
end