blob: c6af84dba9b6c48ad08aec8bd34315735197a246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  | 
(** Signature for points *)
module type P = sig
  type t
  val empty : t
  val get_coord : t -> Gg.v2
  (** Copy a point and all thoses properties to the given location *)
  val copy : t -> Gg.v2 -> t
end
module Make(Point:P) : sig
  module type BUILDER = sig
    type t
    val repr
      : t -> (module Repr.M with type t = Point.t and type repr = 's) -> 's -> 's
  end
  type t 
  (** Return the identifier for this path *)
  val id
    : t -> int
  (** Create a path from a builder *)
  val to_fixed
    : (module BUILDER with type t = 'a) -> 'a -> t
  (** Represent the path *)
  val repr
    : t -> (module Repr.M with type t = Point.t and type repr = 's) -> 's -> 's
  (** Return the distance between a given point and the curve. May return
      None if the point is out of the curve *)
  val distance
    : Gg.v2 -> t -> (Gg.v2 * float * Point.t * Point.t) option
  val map_point
    : t -> (Point.t -> Point.t) -> t
  type bezier =
    { p0:Point.t    (* The starting point *)
    ; p1:Point.t    (* The end point *)
    ; ctrl0:Gg.v2   (* The control point *)
    ; ctrl1:Gg.v2 } (* The control point *)
  type path =
    | Empty
    | Line of Point.t * Point.t
    | Curve of bezier
  val path : t -> path array
  val update : t -> path array -> t
end
 
  |