aboutsummaryrefslogtreecommitdiff
path: root/path/point.mli
diff options
context:
space:
mode:
Diffstat (limited to 'path/point.mli')
-rwxr-xr-xpath/point.mli13
1 files changed, 13 insertions, 0 deletions
diff --git a/path/point.mli b/path/point.mli
new file mode 100755
index 0000000..068f4c1
--- /dev/null
+++ b/path/point.mli
@@ -0,0 +1,13 @@
+type t
+
+val (+): t -> Gg.v2 -> t
+
+val get_coord : t -> Gg.v2
+
+val create: float -> float -> t
+
+val add_point_in_path
+ : (float * float) -> t list -> Shapes.Bezier.t list -> t list * Shapes.Bezier.t list
+
+val get_coord'
+ : t -> Gg.v2