Source file spline.ml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
open Point_lib
open Point_lib.Infix
module P = Point_lib
type point = Ctypes.point
type abscissa = float
type 'a t' = { sa : 'a; sb : 'a; sc : 'a; sd : 'a }
type t = point t'
let inter_depth = ref 15
let debug = false
let pt_f fmt p = Format.fprintf fmt "{@[ %.20g,@ %.20g @]}" p.x p.y
let print fmt pt =
Format.fprintf fmt "@[{ %a,@ %a,@ %a,@ %a }@]@." pt_f pt.sa pt_f pt.sb pt_f
pt.sc pt_f pt.sd
let create a b c d = { sa = a; sb = b; sc = c; sd = d }
let create_with_offset _offs a b c d = create a b c d
let explode s = (s.sa, s.sb, s.sc, s.sd)
let reverse _conv { sa; sb; sc; sd } = { sa = sd; sb = sc; sc = sb; sd = sa }
let right_control_point t = t.sc
let right_point t = t.sd
let left_point t = t.sa
let left_control_point t = t.sb
let cubic a b c d t =
t
*. ( t
*. ((t *. (d +. (3. *. (b -. c)) -. a)) +. (3. *. (c -. (2. *. b) +. a)))
+. (3. *. (b -. a)) )
+. a
let point_of s t =
{
x = cubic s.sa.x s.sb.x s.sc.x s.sd.x t;
y = cubic s.sa.y s.sb.y s.sc.y s.sd.y t;
}
let point_of_s s t =
assert (0. <= t && t <= 1.);
point_of s t
let direction s t =
((t ** 2.) */ s.sd)
+/ (((2. *. t) -. (3. *. (t ** 2.))) */ s.sc)
+/ ((1. -. (4. *. t) +. (3. *. (t ** 2.))) */ s.sb)
+/ (-.((1. -. t) ** 2.) */ s.sa)
let apply_x f s = f s.sa.x s.sb.x s.sc.x s.sd.x
let apply_y f s = f s.sa.y s.sb.y s.sc.y s.sd.y
let apply4 f s = f s.sa s.sb s.sc s.sd
let f4 f a b c d = f (f a b) (f c d)
let bounding_box s =
let x_max = apply_x (f4 Stdlib.max) s in
let y_max = apply_y (f4 Stdlib.max) s in
let x_min = apply_x (f4 Stdlib.min) s in
let y_min = apply_y (f4 Stdlib.min) s in
(x_min, y_min, x_max, y_max)
let middle a b =
{ x = (a.x *. 0.5) +. (b.x *. 0.5); y = (a.y *. 0.5) +. (b.y *. 0.5) }
let bisect middle a =
let b = a in
let b = { b with sd = middle b.sd b.sc } in
let b = { b with sc = middle b.sc b.sb } in
let b = { b with sd = middle b.sd b.sc } in
let b = { b with sb = middle b.sb b.sa } in
let b = { b with sc = middle b.sc b.sb } in
let b = { b with sd = middle b.sd b.sc } in
let c = a in
let c = { c with sa = middle c.sa c.sb } in
let c = { c with sb = middle c.sb c.sc } in
let c = { c with sa = middle c.sa c.sb } in
let c = { c with sc = middle c.sc c.sd } in
let c = { c with sb = middle c.sb c.sc } in
let c = { c with sa = middle c.sa c.sb } in
(b, c)
let bisect_p a = bisect (fun a b -> (a *. 0.5) +. (b *. 0.5)) a
let bisect a = bisect middle a
let rec precise_bounding_box_aux ~min ~max ~cmp cmin s =
let cmin' = min s.sb s.sc in
if cmp cmin cmin' <= 0 then cmin
else
let cmin' = min (min s.sa s.sd) cmin' in
let cmax' = apply4 (f4 max) s in
if cmp cmin' cmax' = 0 then cmin
else
let sa, sb = bisect_p s in
let cmin = min sa.sd cmin in
precise_bounding_box_aux ~min ~max ~cmp
(precise_bounding_box_aux ~min ~max ~cmp cmin sa)
sb
let precise_bounding_box s =
let f ~min ~max ~cmp ~map s =
let s = { sa = map s.sa; sb = map s.sb; sc = map s.sc; sd = map s.sd } in
let cmin = min s.sa s.sd in
precise_bounding_box_aux ~min ~max ~cmp cmin s
in
( f ~min ~max ~cmp:(fun a b -> compare a b) s ~map:(fun p -> p.x),
f ~min ~max ~cmp:(fun a b -> compare a b) s ~map:(fun p -> p.y),
f ~min:max ~max:min ~cmp:(fun a b -> -compare a b) s ~map:(fun p -> p.x),
f ~min:max ~max:min ~cmp:(fun a b -> -compare a b) s ~map:(fun p -> p.y) )
let test_in amin amax bmin bmax = amin <= bmax && bmin <= amax
let is_intersect a b =
let ax_min, ay_min, ax_max, ay_max = bounding_box a in
let bx_min, by_min, bx_max, by_max = bounding_box b in
test_in ax_min ax_max bx_min bx_max && test_in ay_min ay_max by_min by_max
let _is_intersect_precise a b =
let ax_min, ay_min, ax_max, ay_max = precise_bounding_box a in
let bx_min, by_min, bx_max, by_max = precise_bounding_box b in
test_in ax_min ax_max bx_min bx_max && test_in ay_min ay_max by_min by_max
let intersect_fold f acc a b =
let rec aux acc a b t1 t2 dt = function
| 0 ->
if is_intersect a b then f (t1 + (dt / 2), t2 + (dt / 2)) acc else acc
| n ->
if is_intersect a b then
let n = n - 1 and dt = dt / 2 in
let a1, a2 = bisect a and b1, b2 = bisect b in
let acc = aux acc a1 b1 t1 t2 dt n in
let acc = aux acc a1 b2 t1 (t2 + dt) dt n in
let acc = aux acc a2 b1 (t1 + dt) t2 dt n in
let acc = aux acc a2 b2 (t1 + dt) (t2 + dt) dt n in
acc
else acc
in
let nmax = int_of_float (2. ** float_of_int (!inter_depth + 1)) in
aux acc a b 0 0 nmax !inter_depth
exception Found of int * int
let one_intersection a b =
let nmax = 2. ** float_of_int (!inter_depth + 1) in
let f_from_i x = float_of_int x *. (1. /. nmax) in
try
intersect_fold (fun (x, y) () -> raise (Found (x, y))) () a b;
raise Not_found
with Found (t1, t2) -> (f_from_i t1, f_from_i t2)
module UF = Unionfind
let intersection a b =
if a = b then []
else
let rem_noise delta mdelta = function
| [] -> []
| noisy ->
let uf = UF.init noisy in
let link sel msel =
let sorted =
List.fast_sort (fun x y -> compare (sel x) (sel y)) noisy
in
let rec pass bef = function
| [] -> ()
| e :: l ->
if sel bef - sel e <= delta then (
if abs (msel e - msel bef) <= mdelta then UF.union e bef uf;
pass bef l )
else ()
in
ignore
(List.fold_left
(fun acc bef ->
pass bef acc;
bef :: acc)
[] sorted)
in
link fst snd;
link snd fst;
UF.fold_classes (fun x acc -> x :: acc) [] uf
in
let nmax = 2. ** float_of_int (!inter_depth + 1) in
let l = intersect_fold (fun x acc -> x :: acc) [] a b in
if debug then
Format.printf "@[%a@]@."
(fun fmt ->
List.iter (fun (f1, f2) -> Format.fprintf fmt "%i,%i" f1 f2))
l;
let l = rem_noise (2 * !inter_depth) (16 * !inter_depth) l in
let f_from_i x = x *. (1. /. nmax) in
let res = List.rev_map (fun (x, y) -> (f_from_i x, f_from_i y)) l in
if debug then
Format.printf "@[%a@]@."
(fun fmt -> List.iter (pt_f fmt))
(List.map (fun (t1, t2) -> point_of a t1 -/ point_of b t2) res);
res
type split = Min | Max | InBetween of t * t
let split s t =
assert (0. <= t && t <= 1.);
if t = 1. then Max
else if t = 0. then Min
else
let t0 = t in
let _1t0 = 1. -. t0 in
let b1 = (t0 */ s.sb) +/ (_1t0 */ s.sa) in
let c1 =
(t0 *. t0 */ s.sc) +/ (2. *. t0 *. _1t0 */ s.sb) +/ (_1t0 *. _1t0 */ s.sa)
in
let d1 = point_of s t0 in
let a2 = d1 in
let c2 = (_1t0 */ s.sc) +/ (t0 */ s.sd) in
let b2 =
(_1t0 *. _1t0 */ s.sb) +/ (2. *. _1t0 *. t0 */ s.sc) +/ (t0 *. t0 */ s.sd)
in
InBetween
( { s with sb = b1; sd = d1; sc = c1 },
{ s with sa = a2; sb = b2; sc = c2 } )
let norm2 a b = (a *. a) +. (b *. b)
let is_possible (axmin, aymin, axmax, aymax) (bxmin, bymin, bxmax, bymax) =
match (axmin > bxmax, aymin > bymax, axmax < bxmin, aymax < bymin) with
| true, true, _, _ -> norm2 (axmin -. bxmax) (aymin -. bymax)
| _, _, true, true -> norm2 (axmax -. bxmin) (aymax -. bymin)
| true, _, _, true -> norm2 (axmin -. bxmax) (aymax -. bymin)
| _, true, true, _ -> norm2 (axmax -. bxmin) (aymin -. bymax)
| false, true, false, _ -> norm2 0. (aymin -. bymax)
| false, _, false, true -> norm2 0. (aymax -. bymin)
| true, false, _, false -> norm2 (axmin -. bxmax) 0.
| _, false, true, false -> norm2 (axmax -. bxmin) 0.
| false, false, false, false -> 0.
let dist_min_point ({ x = px; y = py } as p) s =
let is_possible_at a = is_possible (bounding_box a) (px, py, px, py) in
let nmax = 2. ** float_of_int (!inter_depth + 1) in
let rec aux a ((min, _) as pmin) t1 dt = function
| 0 ->
let t1 = float_of_int (t1 + (dt / 2)) /. nmax in
let pt1 = point_of s t1 in
let dist = P.dist2 pt1 p in
if dist < min then (dist, t1) else pmin
| n ->
let dt = dt / 2 in
let af, al = bisect a in
let dist_af = is_possible_at af in
let dist_al = is_possible_at al in
let doit ((min, _) as pmin) dist am t =
if dist < min then aux am pmin t dt (n - 1) else pmin
in
if dist_af < dist_al then
let pmin = doit pmin dist_af af t1 in
doit pmin dist_al al (t1 + dt)
else
let pmin = doit pmin dist_al al (t1 + dt) in
doit pmin dist_af af t1
in
let pmin = (P.dist2 (left_point s) p, 0.) in
aux s pmin 0 (int_of_float nmax) !inter_depth
let dist_min_spline s1 s2 =
let is_possible_at a b = is_possible (bounding_box a) (bounding_box b) in
let nmax = 2. ** float_of_int (!inter_depth + 1) in
let rec aux a b ((min, _) as pmin) t1 t2 dt = function
| 0 ->
let t1 = float_of_int (t1 + (dt / 2)) /. nmax in
let t2 = float_of_int (t2 + (dt / 2)) /. nmax in
let ap = point_of s1 t1 in
let bp = point_of s2 t2 in
let dist = norm2 (ap.x -. bp.x) (ap.y -. bp.y) in
if dist < min then (dist, (t1, t2)) else pmin
| n ->
let n = n - 1 in
let dt = dt / 2 in
let af, al = bisect a in
let bf, bl = bisect b in
let doit dist am bm t1 t2 ((min, _) as pmin) =
if dist < min then aux am bm pmin t1 t2 dt n else pmin
in
let l =
[
(af, bf, t1, t2);
(af, bl, t1, t2 + dt);
(al, bf, t1 + dt, t2);
(al, bl, t1 + dt, t2 + dt);
]
in
let l =
List.map
(fun (am, bm, t1, t2) ->
let dist = is_possible_at am bm in
(dist, doit dist am bm t1 t2))
l
in
let l = List.fast_sort (fun (da, _) (db, _) -> compare da db) l in
List.fold_left (fun pmin (_, doit) -> doit pmin) pmin l
in
let pmin = (P.dist2 (left_point s1) (left_point s2), (0., 0.)) in
aux s1 s2 pmin 0 0 (int_of_float nmax) !inter_depth
let translate t a =
{ sa = a.sa +/ t; sb = a.sb +/ t; sc = a.sc +/ t; sd = a.sd +/ t }
let transform t a =
{
sa = P.transform t a.sa;
sb = P.transform t a.sb;
sc = P.transform t a.sc;
sd = P.transform t a.sd;
}