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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
open Points
exception Not_implemented of string
exception Empty_list
exception View_expected
exception Fig_Too_Many_Colors
exception Division_by_zero
exception Should_Not_Happen
open Common
let black = { r = 0.; g = 0.; b = 0. }
let white = { r = 1.; g = 1.; b = 1. }
let red = { r = 1.; g = 0.; b = 0. }
let green = { r = 0.; g = 1.; b = 0. }
let blue = { r = 0.; g = 0.; b = 1. }
let yellow = { r = 1.; g = 1.; b = 0. }
let cyan = { r = 0.; g = 1.; b = 1. }
let magenta = { r = 1.; g = 0.; b = 1. }
let window_width = ref 640
let window_height = ref 480
let fwindow_width = ref (float !window_width)
let fwindow_height = ref (float !window_height)
let left_margin = ref 10
let right_margin = ref 10
let top_margin = ref 10
let bottom_margin = ref 10
let maxpoints = 3000
let current_view3d : view3 option ref = ref None
let default_view = { Point2.x=0.; y=0.}, { Point2.x=1.; y=1.}
let initialize_view3 v =
match !current_view3d with
| None ->
current_view3d := Some v;
v
| Some v3 -> v3
let reset_view3 () = current_view3d := None
let get_view3 () =
match !current_view3d with
| Some v3 -> v3
| None -> failwith "There should be a view2 here !"
let move_text text pos = text.pos <- pos
let gllist_empty () : gllist = ref None
let rec has_anim sh =
match sh with
| Sheet [] -> false
| Anim _ -> true
| Move3d _ -> true
| Sheet (po :: ssh) -> has_anim po || has_anim (Sheet ssh)
| _ -> false
let rec has_pause sh =
match sh with
| Sheet [] -> false
| Pause _ | Freeze _ -> true
| Sheet (po :: ssh) -> has_pause po || has_pause (Sheet ssh)
| _ -> false
let point (x0, y0) = { Point2.x = x0; y = y0 }
let point3 (x0, y0, z0) = { Point3.x = x0; y = y0; z = z0 }
let text s ?(size = 12) ?(align = CENTER) x0 y0 =
Text
{ pos = point (x0, y0); text = s; size; align; flag = Normal; pix = None }
let latex s ?(size = 18) ?(align = CENTER) x0 y0 =
Text { pos = point (x0, y0); text = s; size; align; flag = Latex; pix = None }
let view x0 y0 x1 y1 = View (Some (point (x0, y0), point (x1, y1)))
let get_view view_ref = User (fun v _ -> view_ref := v)
let view2of3 (p1, p2) =
Some (point (p1.Point3.x, p1.Point3.y), point (p2.Point3.x, p2.Point3.y))
let point_list f x0 x1 ?(step = (x1 -. x0) /. !fwindow_width) () =
let rec loop l x =
if x > x1 then l
else loop ({ Point2.x; y = f x } :: l) (x +. step)
in
loop [] x0
let points_of_list pl = Points pl
let lines_of_list pl = Lines [ pl ]
let poly_of_list pl = Poly pl
let point_plot_f f ?step x0 x1 =
let p =
match step with None -> (x1 -. x0) /. !fwindow_width | Some pp -> pp
in
points_of_list (point_list f x0 x1 ~step:p ())
let line_plot_f f ?step x0 x1 =
let p =
match step with None -> (x1 -. x0) /. !fwindow_width | Some pp -> pp
in
lines_of_list (point_list f x0 x1 ~step:p ())
let plot = line_plot_f
let inside { Point2.x; y } ({ Point2.x = x1; y = y1 }, { Point2.x = x2; y = y2 })
=
(x -. x1) *. (x2 -. x1) >= 0.
&& (x -. x2) *. (x1 -. x2) >= 0.
&& (y -. y1) *. (y2 -. y1) >= 0.
&& (y -. y2) *. (y1 -. y2) >= 0.
let intersect q1 q2 (p1, p2) =
Geom.inter_box (q1, q2) (p1, p2)
let lines_crop lines v =
let rec loop l1 prev acc lacc =
match l1 with
| [] -> if acc = [] then lacc else acc :: lacc
| p :: rest -> begin
match (inside p v, acc) with
| true, [] ->
let new_acc =
match prev with
| None -> [ p ]
| Some p' ->
let p'' = try intersect p p' v with _ -> p' in
[ p; p'' ]
in
loop rest (Some p) new_acc lacc
| false, [] -> loop rest (Some p) [] lacc
| true, _ -> loop rest (Some p) (p :: acc) lacc
| false, _ -> begin
match prev with
| Some p' ->
let p'' = try intersect p p' v with _ -> p' in
loop rest (Some p) [] ((p'' :: acc) :: lacc)
| None -> failwith "point expected in line_crop!"
end
end
in
loop lines None [] []
let adapt_plot f ?step x0 x1 =
let list = point_list f ?step x0 x1 () in
Adapt
( ref (None, None),
fun view ->
match view with
| None -> lines_of_list list
| Some v -> Lines (lines_crop list v) )
let parametric_list fx fy t0 t1 step =
let rec loop list t =
if abs_float (t +. step -. t0) > abs_float (t1 -. t0) then
{ Point2.x = fx t1; y = fy t1 } :: list
else loop ({ Point2.x = fx t; y = fy t } :: list) (t +. step)
in
loop [] t0
let parametric_plot fx fy ?step ?(adapt = true) t0 t1 =
let p =
match step with
| None ->
(t1 -. t0)
/. min
(Geom.curve_length fx fy t0 t1 *. !fwindow_width)
(float maxpoints)
| Some pp -> pp
in
let list = parametric_list fx fy t0 t1 p in
if adapt then
Adapt
( ref (None, None),
fun view ->
match view with
| None -> lines_of_list list
| Some v -> Lines (lines_crop list v) )
else lines_of_list list
let list_plot l x0 x1 =
let n = List.length l in
let dx = (x1 -. x0) /. float n in
let rec loop list plist i =
match list with
| [] -> plist
| y :: ll ->
loop ll
({ Point2.x = x0 +. (float (i + 1) *. dx); y }
:: { Point2.x = x0 +. (float i *. dx); y }
:: plist)
(i + 1)
in
Lines [ loop l [] 0 ]
let just_a_dot x y = points_of_list [ point (x, y) ]
let diamond ?(size = 0.01) x y =
let epsilon = size /. 2. in
Poly
[
point (x -. epsilon, y);
point (x, y +. epsilon);
point (x +. epsilon, y);
point (x, y -. epsilon);
point (x -. epsilon, y);
]
let box x0 y0 x1 y1 =
Poly
[
{ x = x0; y = y0 };
{ x = x1; y = y0 };
{ x = x1; y = y1 };
{ x = x0; y = y1 };
]
let find_view l =
let rec loop xmax xmin ymax ymin l =
match l with
| (x, y) :: ll ->
loop (max xmax x) (min xmin x) (max ymax y) (min ymin y) ll
| [] -> view xmin ymin xmax ymax
in
match l with
| [] -> failwith "List should not be empty"
| (x, y) :: ll -> loop x y x y ll
let dot_plot ?(dot = just_a_dot) ?view l =
let rec loop list sh =
match list with (x, y) :: ll -> loop ll (dot x y :: sh) | [] -> sh
in
let v = match view with Some vv -> vv | None -> find_view l in
v :: loop l []
let label_dot_plot ?(dot = just_a_dot) ?(offset = 0.005) ?view l =
let rec loop list sh =
match list with
| (x, y, label) :: ll ->
let text = text label (x +. (2. *. offset)) y ~align:LEFT in
loop ll (dot x y :: text :: sh)
| [] -> sh
in
let v =
match view with
| Some vv -> vv
| None ->
let coord_list = List.rev_map (fun (x, y, _) -> (x, y)) l in
find_view coord_list
in
v :: loop l []
let matrix_plot_f f ?(width = !window_width / 4) ?(height = !window_height / 4)
x0 y0 x1 y1 =
let fm = Array.make_matrix height width 0. in
let dx = (x1 -. x0) /. float width and dy = (y1 -. y0) /. float height in
let zmin = ref (f (x0 +. (dx /. 2.)) (y0 +. (dy /. 2.))) in
let zmax = ref !zmin in
for i = 0 to height - 1 do
for j = 0 to width - 1 do
let z =
f (x0 +. ((float j +. 0.5) *. dx)) (y0 +. ((float i +. 0.5) *. dy))
in
fm.(i).(j) <- z;
if z < !zmin then zmin := z;
if z > !zmax then zmax := z
done
done;
let dz = if !zmax = !zmin then 1. else !zmax -. !zmin in
let m = Array.make_matrix height width 0 in
for i = 0 to height - 1 do
for j = 0 to width - 1 do
m.(i).(j) <- int_of_float (255. *. (fm.(i).(j) -. !zmin) /. dz)
done
done;
Matrix m
let grid_plot f ?(wire = true) ?(width = !window_width / 20)
?(height = !window_height / 20) x0 y0 x1 y1 =
let fm = Array.make_matrix (height + 1) (width + 1) 0. in
let dx = (x1 -. x0) /. float width and dy = (y1 -. y0) /. float height in
let zmin = ref (f x0 y0) in
let zmax = ref !zmin in
for i = 0 to height do
for j = 0 to width do
let z = f (x0 +. (float j *. dx)) (y0 +. (float i *. dy)) in
fm.(i).(j) <- z;
if z < !zmin then zmin := z;
if z > !zmax then zmax := z
done
done;
Grid ((fm, (point3 (x0, y0, !zmin), point3 (x1, y1, !zmax)), wire), ref None)
let surf3d_plot fx fy fz ?(width = 40) ?(height = 40) ?(wire = true) u0 v0 u1 v1
=
let mx = Array.make_matrix (height + 3) (width + 3) 0.
and my = Array.make_matrix (height + 3) (width + 3) 0.
and mz = Array.make_matrix (height + 3) (width + 3) 0. in
let du = (u1 -. u0) /. float width and dv = (v1 -. v0) /. float height in
let zmin = ref (fz u0 v0)
and xmin = ref (fx u0 v0)
and ymin = ref (fy u0 v0) in
let zmax = ref !zmin and xmax = ref !xmin and ymax = ref !ymin in
for i = -1 to height + 1 do
let mxi = mx.(i + 1) and myi = my.(i + 1) and mzi = mz.(i + 1) in
for j = -1 to width + 1 do
let x = fx (u0 +. (float j *. du)) (v0 +. (float i *. dv))
and y = fy (u0 +. (float j *. du)) (v0 +. (float i *. dv))
and z = fz (u0 +. (float j *. du)) (v0 +. (float i *. dv)) in
mxi.(j + 1) <- x;
myi.(j + 1) <- y;
mzi.(j + 1) <- z;
if z < !zmin then zmin := z;
if z > !zmax then zmax := z;
if x < !xmin then xmin := x;
if x > !xmax then xmax := x;
if y < !ymin then ymin := y;
if y > !ymax then ymax := y
done
done;
Surf3d
( ( mx,
my,
mz,
(point3 (!xmin, !ymin, !zmin), point3 (!xmax, !ymax, !zmax)),
wire ),
ref None )
let axis x0 y0 =
Axis
{
center = point (x0, y0);
view = None;
ticks = None;
window_size = (!window_width, !window_height);
}
let color r g b = Color { r; g; b }
let pause t = Pause t
let freeze t = Freeze t
let translate v t =
Move3d { move = Translate v; time = { min = 0.; max = t }; init_time = None }
let rotate x y z th t =
let quat = Geom.q_rotation x y z th in
Move3d { move = Rotate quat; time = { min = 0.; max = t }; init_time = None }
let zoom z z0 t0 t1 =
Move3d
{ move = Zoom (z, z0); time = { min = t0; max = t1 }; init_time = None }
let rec get_points2 = function
| Points points -> points
| Lines points -> List.flatten points
| Poly points -> points
| View (Some (p1, p2)) -> [ p1; p2 ]
| View None -> []
| Axis a -> [ a.center ]
| Color _ -> []
| Text t -> [ t.pos ]
| Matrix _ -> []
| Grid _ -> []
| Surf3d _ -> []
| Curve3d _ -> []
| Move3d _ -> []
| Pause _ -> []
| Freeze _ -> []
| Clear _ -> []
| Adapt (a, _) -> ( match !a with _, Some p -> get_points2 p | _ -> [])
| User _ -> []
| Anim _ -> []
| Sheet _ -> []