summaryrefslogtreecommitdiff
path: root/path/point.mli
blob: c897195fcf1dfbf416cd37d3cccca1ec9013c3ec (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
type t

val empty : t

val (+): t -> Gg.v2 -> t

val get_coord : t -> Gg.v2

val get_stamp : t -> float

val create: angle:float -> width:float -> stamp:float -> x:float -> y:float -> t

val copy : t -> Gg.v2 -> t

val set_angle : t -> float -> t

val get_angle : t -> float

val set_width: t -> float -> t

val get_width: t -> float

val get_coord'
  : t -> Gg.v2