-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-ed177d17d6.log
1093 lines (1038 loc) · 93.2 KB
/
1.5.0-DEV-ed177d17d6.log
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Julia Version 1.5.0-DEV.158
Commit ed177d17d6 (2020-01-27 16:45 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed Libgcrypt_jll ─────────────── v1.8.5+0
Installed Xorg_libXdmcp_jll ─────────── v1.1.3+0
Installed Xorg_libXfixes_jll ────────── v5.0.3+0
Installed Xorg_libXrandr_jll ────────── v1.5.2+0
Installed Xorg_util_macros_jll ──────── v1.19.2+0
Installed Parsers ───────────────────── v0.3.10
Installed ColorSchemes ──────────────── v3.5.0
Installed GLMakie ───────────────────── v0.0.13
Installed SortingAlgorithms ─────────── v0.3.1
Installed AbstractNumbers ───────────── v0.2.1
Installed Xorg_kbproto_jll ──────────── v1.0.7+0
Installed GLFW ──────────────────────── v3.2.1
Installed PlotUtils ─────────────────── v0.6.2
Installed OpenSpecFun_jll ───────────── v0.5.3+1
Installed BinaryProvider ────────────── v0.5.8
Installed OffsetArrays ──────────────── v1.0.2
Installed Packing ───────────────────── v0.3.0
Installed Xorg_libXinerama_jll ──────── v1.1.4+0
Installed Xorg_inputproto_jll ───────── v2.3.2+0
Installed Tables ────────────────────── v0.2.11
Installed GeometryTypes ─────────────── v0.7.7
Installed UnicodeFun ────────────────── v0.4.0
Installed ColorVectorSpace ──────────── v0.8.2
Installed ImageMagick ───────────────── v1.1.2
Installed OrderedCollections ────────── v1.1.0
Installed WeakRefStrings ────────────── v0.6.2
Installed IteratorInterfaceExtensions ─ v1.0.0
Installed SpecialFunctions ──────────── v0.9.0
Installed Contour ───────────────────── v0.5.1
Installed StatsBase ─────────────────── v0.32.0
Installed DocStringExtensions ───────── v0.8.1
Installed ColorTypes ────────────────── v0.9.1
Installed DataStructures ────────────── v0.17.9
Installed FileIO ────────────────────── v1.2.1
Installed StructArrays ──────────────── v0.4.1
Installed Zlib_jll ──────────────────── v1.2.11+7
Installed Xorg_libXcursor_jll ───────── v1.2.0+0
Installed Xorg_libxcb_jll ───────────── v1.13.0+0
Installed Graphics ──────────────────── v1.0.1
Installed DataValueInterfaces ───────── v1.0.0
Installed Zstd_jll ──────────────────── v1.4.4+0
Installed MappedArrays ──────────────── v0.2.2
Installed ColorBrewer ───────────────── v0.4.0
Installed Observables ───────────────── v0.2.3
Installed FixedPointNumbers ─────────── v0.7.1
Installed Xorg_libXi_jll ────────────── v1.7.10+0
Installed GLFW_jll ──────────────────── v3.3.0+1
Installed Missings ──────────────────── v0.4.3
Installed MeshIO ────────────────────── v0.3.1
Installed Xorg_libpthread_stubs_jll ─── v0.1.0+0
Installed Xorg_xtrans_jll ───────────── v1.4.0+0
Installed Xorg_libXext_jll ──────────── v1.3.4+0
Installed Xorg_randrproto_jll ───────── v1.5.0+0
Installed X11_jll ───────────────────── v1.6.8+5
Installed Xorg_libXau_jll ───────────── v1.0.9+0
Installed StaticArrays ──────────────── v0.12.1
Installed JSON ──────────────────────── v0.21.0
Installed Xorg_glproto_jll ──────────── v1.4.17+0
Installed Xorg_fixesproto_jll ───────── v5.0.0+0
Installed TableTraits ───────────────── v1.0.0
Installed Xorg_renderproto_jll ──────── v0.11.1+0
Installed PooledArrays ──────────────── v0.5.3
Installed Xorg_xextproto_jll ────────── v7.3.0+0
Installed Libtiff_jll ───────────────── v4.0.10+0
Installed DataAPI ───────────────────── v1.1.0
Installed FreeType ──────────────────── v2.1.1
Installed AbstractPlotting ──────────── v0.9.17
Installed Xorg_libX11_jll ───────────── v1.6.8+0
Installed PaddedViews ───────────────── v0.5.1
Installed Libiconv_jll ──────────────── v1.16.0+0
Installed ModernGL ──────────────────── v1.1.2
Installed Xorg_xcb_proto_jll ────────── v1.13.0+0
Installed Requires ──────────────────── v1.0.0
Installed libpng_jll ────────────────── v1.6.37+2
Installed Xorg_xineramaproto_jll ────── v1.2.1+0
Installed Libgpg_error_jll ──────────── v1.36.0+0
Installed FreeTypeAbstraction ───────── v0.4.2
Installed Xorg_xproto_jll ───────────── v7.0.31+0
Installed NaNMath ───────────────────── v0.3.3
Installed IntervalSets ──────────────── v0.3.2
Installed Libglvnd_jll ──────────────── v1.2.0+2
Installed FFMPEG ────────────────────── v0.2.4
Installed JpegTurbo_jll ─────────────── v2.0.1+0
Installed Xorg_libXrender_jll ───────── v0.9.10+0
Installed Colors ────────────────────── v0.11.2
Installed XML2_jll ──────────────────── v2.9.9+1
Installed Reexport ──────────────────── v0.2.0
Installed ImageCore ─────────────────── v0.8.11
Installed Showoff ───────────────────── v0.3.1
Installed XSLT_jll ──────────────────── v1.1.33+0
Installed ImageMagick_jll ───────────── v6.9.10-12+0
Installed SignedDistanceFields ──────── v0.4.0
Updating `~/.julia/environments/v1.5/Project.toml`
[e9467ef8] + GLMakie v0.0.13
Updating `~/.julia/environments/v1.5/Manifest.toml`
[85c772de] + AbstractNumbers v0.2.1
[537997a7] + AbstractPlotting v0.9.17
[b99e7846] + BinaryProvider v0.5.8
[a2cac450] + ColorBrewer v0.4.0
[35d6a980] + ColorSchemes v3.5.0
[3da002f7] + ColorTypes v0.9.1
[c3611d14] + ColorVectorSpace v0.8.2
[5ae59095] + Colors v0.11.2
[d38c429a] + Contour v0.5.1
[9a962f9c] + DataAPI v1.1.0
[864edb3b] + DataStructures v0.17.9
[e2d170a0] + DataValueInterfaces v1.0.0
[ffbed154] + DocStringExtensions v0.8.1
[c87230d0] + FFMPEG v0.2.4
[5789e2e9] + FileIO v1.2.1
[53c48c17] + FixedPointNumbers v0.7.1
[b38be410] + FreeType v2.1.1
[663a7486] + FreeTypeAbstraction v0.4.2
[f7f18e0c] + GLFW v3.2.1
[0656b61e] + GLFW_jll v3.3.0+1
[e9467ef8] + GLMakie v0.0.13
[4d00f742] + GeometryTypes v0.7.7
[a2bd30eb] + Graphics v1.0.1
[a09fc81d] + ImageCore v0.8.11
[6218d12a] + ImageMagick v1.1.2
[c73af94c] + ImageMagick_jll v6.9.10-12+0
[8197267c] + IntervalSets v0.3.2
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] + JSON v0.21.0
[aacddb02] + JpegTurbo_jll v2.0.1+0
[d4300ac3] + Libgcrypt_jll v1.8.5+0
[7e76a0d4] + Libglvnd_jll v1.2.0+2
[7add5ba3] + Libgpg_error_jll v1.36.0+0
[94ce4f54] + Libiconv_jll v1.16.0+0
[89763e89] + Libtiff_jll v4.0.10+0
[dbb5928d] + MappedArrays v0.2.2
[7269a6da] + MeshIO v0.3.1
[e1d29d7a] + Missings v0.4.3
[66fc600b] + ModernGL v1.1.2
[77ba4419] + NaNMath v0.3.3
[510215fc] + Observables v0.2.3
[6fe1bfb0] + OffsetArrays v1.0.2
[efe28fd5] + OpenSpecFun_jll v0.5.3+1
[bac558e1] + OrderedCollections v1.1.0
[19eb6ba3] + Packing v0.3.0
[5432bcbf] + PaddedViews v0.5.1
[69de0a69] + Parsers v0.3.10
[995b91a9] + PlotUtils v0.6.2
[2dfb63ee] + PooledArrays v0.5.3
[189a3867] + Reexport v0.2.0
[ae029012] + Requires v1.0.0
[992d4aef] + Showoff v0.3.1
[73760f76] + SignedDistanceFields v0.4.0
[a2af1166] + SortingAlgorithms v0.3.1
[276daf66] + SpecialFunctions v0.9.0
[90137ffa] + StaticArrays v0.12.1
[2913bbd2] + StatsBase v0.32.0
[09ab397b] + StructArrays v0.4.1
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v0.2.11
[1cfade01] + UnicodeFun v0.4.0
[ea10d353] + WeakRefStrings v0.6.2
[546b0b6d] + X11_jll v1.6.8+5
[02c8fc9c] + XML2_jll v2.9.9+1
[aed1982a] + XSLT_jll v1.1.33+0
[cf2f014d] + Xorg_fixesproto_jll v5.0.0+0
[41595b7c] + Xorg_glproto_jll v1.4.17+0
[84d6cd60] + Xorg_inputproto_jll v2.3.2+0
[060dd47b] + Xorg_kbproto_jll v1.0.7+0
[4f6342f7] + Xorg_libX11_jll v1.6.8+0
[0c0b7dd1] + Xorg_libXau_jll v1.0.9+0
[935fb764] + Xorg_libXcursor_jll v1.2.0+0
[a3789734] + Xorg_libXdmcp_jll v1.1.3+0
[1082639a] + Xorg_libXext_jll v1.3.4+0
[d091e8ba] + Xorg_libXfixes_jll v5.0.3+0
[a51aa0fd] + Xorg_libXi_jll v1.7.10+0
[d1454406] + Xorg_libXinerama_jll v1.1.4+0
[ec84b674] + Xorg_libXrandr_jll v1.5.2+0
[ea2f1a96] + Xorg_libXrender_jll v0.9.10+0
[14d82f49] + Xorg_libpthread_stubs_jll v0.1.0+0
[c7cfdc94] + Xorg_libxcb_jll v1.13.0+0
[0e394dc1] + Xorg_randrproto_jll v1.5.0+0
[21e99dc2] + Xorg_renderproto_jll v0.11.1+0
[7c09cfe3] + Xorg_util_macros_jll v1.19.2+0
[c2e9c405] + Xorg_xcb_proto_jll v1.13.0+0
[d13bc2ba] + Xorg_xextproto_jll v7.3.0+0
[6a3da44c] + Xorg_xineramaproto_jll v1.2.1+0
[46797783] + Xorg_xproto_jll v7.0.31+0
[c5fb5394] + Xorg_xtrans_jll v1.4.0+0
[83775a58] + Zlib_jll v1.2.11+7
[3161d3a3] + Zstd_jll v1.4.4+0
[b53b4c65] + libpng_jll v1.6.37+2
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building ModernGL → `~/.julia/packages/ModernGL/rVuW2/deps/build.log`
Updating `/tmp/jl_ITW8tJ/Project.toml`
[no changes]
Updating `/tmp/jl_ITW8tJ/Manifest.toml`
[no changes]
Building FreeType → `~/.julia/packages/FreeType/2dE5w/deps/build.log`
Updating `/tmp/jl_f6pOKd/Project.toml`
[no changes]
Updating `/tmp/jl_f6pOKd/Manifest.toml`
[no changes]
Building FFMPEG ──→ `~/.julia/packages/FFMPEG/guN1x/deps/build.log`
Updating `/tmp/jl_aTIzki/Project.toml`
[no changes]
Updating `/tmp/jl_aTIzki/Manifest.toml`
[no changes]
Building GLMakie ─→ `~/.julia/packages/GLMakie/tywRm/deps/build.log`
Updating `/tmp/jl_9h4wh7/Project.toml`
[no changes]
Updating `/tmp/jl_9h4wh7/Manifest.toml`
[no changes]
Testing GLMakie
Installed ArrayInterface ──────────── v2.3.1
Installed QuadGK ──────────────────── v2.3.1
Installed DiffResults ─────────────── v1.0.2
Installed IterTools ───────────────── v1.3.0
Installed Makie ───────────────────── v0.9.5
Installed Loess ───────────────────── v0.5.0
Installed NamedArrays ─────────────── v0.9.3
Installed IntelOpenMP_jll ─────────── v2018.0.3+0
Installed MakieGallery ────────────── v0.1.1
Installed Parameters ──────────────── v0.12.0
Installed FFTW_jll ────────────────── v3.3.9+3
Installed Distances ───────────────── v0.8.2
Installed Combinatorics ───────────── v1.0.0
Installed CategoricalArrays ───────── v0.7.7
Installed DiffRules ───────────────── v1.0.0
Installed MKL_jll ─────────────────── v2019.0.117+2
Installed Arpack_jll ──────────────── v3.5.0+2
Installed AxisAlgorithms ──────────── v1.0.0
Installed Compat ──────────────────── v2.2.0
Installed Rmath ───────────────────── v0.6.0
Installed CatIndices ──────────────── v0.2.1
Installed TiledIteration ──────────── v0.2.4
Installed LineSearches ────────────── v7.0.1
Installed ImageTransformations ────── v0.8.3
Installed WoodburyMatrices ────────── v0.5.0
Installed PDMats ──────────────────── v0.9.11
Installed SimpleTraits ────────────── v0.9.1
Installed StatsMakie ──────────────── v0.0.6
Installed IdentityRanges ──────────── v0.3.1
Installed Arpack ──────────────────── v0.4.0
Installed ImageFiltering ──────────── v0.6.11
Installed ImageAxes ───────────────── v0.6.2
Installed StatsFuns ───────────────── v0.9.3
Installed KernelDensity ───────────── v0.5.1
Installed AbstractFFTs ────────────── v0.5.0
Installed OpenBLAS_jll ────────────── v0.3.7+4
Installed NLSolversBase ───────────── v7.6.0
Installed CommonSubexpressions ────── v0.2.0
Installed FFTViews ────────────────── v0.3.1
Installed RangeArrays ─────────────── v0.3.2
Installed ComputationalResources ──── v0.3.0
Installed CustomUnitRanges ────────── v1.0.0
Installed Polynomials ─────────────── v0.6.0
Installed CoordinateTransformations ─ v0.5.0
Installed Widgets ─────────────────── v0.6.2
Installed FiniteDiff ──────────────── v2.1.0
Installed MacroTools ──────────────── v0.5.3
Installed Interpolations ──────────── v0.12.7
Installed ImageMetadata ───────────── v0.9.0
Installed IndirectArrays ──────────── v0.5.1
Installed PositiveFactorizations ──── v0.2.3
Installed FFTW ────────────────────── v1.2.0
Installed Optim ───────────────────── v0.20.0
Installed FreqTables ──────────────── v0.3.1
Installed Ratios ──────────────────── v0.3.1
Installed Highlights ──────────────── v0.4.5
Installed ForwardDiff ─────────────── v0.10.9
Installed SyntaxTree ──────────────── v1.0.1
Installed Rotations ───────────────── v0.13.0
Installed Distributions ───────────── v0.22.3
Installed Documenter ──────────────── v0.24.4
Installed FillArrays ──────────────── v0.8.4
Installed RecipesBase ─────────────── v0.7.0
Installed InvertedIndices ─────────── v1.0.0
Installed AxisArrays ──────────────── v0.3.3
Updating `/tmp/jl_IbEho7/Project.toml`
[ee78f7c6] + Makie v0.9.5
[dbd62bd0] + MakieGallery v0.1.1
Updating `/tmp/jl_IbEho7/Manifest.toml`
[621f4979] + AbstractFFTs v0.5.0
[7d9fca2a] + Arpack v0.4.0
[68821587] + Arpack_jll v3.5.0+2
[4fba245c] + ArrayInterface v2.3.1
[13072b0f] + AxisAlgorithms v1.0.0
[39de3d68] + AxisArrays v0.3.3
[aafaddc9] + CatIndices v0.2.1
[324d7699] + CategoricalArrays v0.7.7
[861a8166] + Combinatorics v1.0.0
[bbf7d656] + CommonSubexpressions v0.2.0
[34da2185] + Compat v2.2.0
[ed09eef8] + ComputationalResources v0.3.0
[150eb455] + CoordinateTransformations v0.5.0
[dc8bdbbb] + CustomUnitRanges v1.0.0
[163ba53b] + DiffResults v1.0.2
[b552c78f] + DiffRules v1.0.0
[b4f34e82] + Distances v0.8.2
[31c24e10] + Distributions v0.22.3
[e30172f5] + Documenter v0.24.4
[4f61f5a4] + FFTViews v0.3.1
[7a1cc6ca] + FFTW v1.2.0
[f5851436] + FFTW_jll v3.3.9+3
[1a297f60] + FillArrays v0.8.4
[6a86dc24] + FiniteDiff v2.1.0
[f6369f11] + ForwardDiff v0.10.9
[da1fdf0e] + FreqTables v0.3.1
[eafb193a] + Highlights v0.4.5
[bbac6d45] + IdentityRanges v0.3.1
[2803e5a7] + ImageAxes v0.6.2
[6a3955dd] + ImageFiltering v0.6.11
[bc367c6b] + ImageMetadata v0.9.0
[02fcd773] + ImageTransformations v0.8.3
[9b13fd28] + IndirectArrays v0.5.1
[1d5cc7b8] + IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] + Interpolations v0.12.7
[41ab1584] + InvertedIndices v1.0.0
[c8e1da08] + IterTools v1.3.0
[5ab0869b] + KernelDensity v0.5.1
[d3d80556] + LineSearches v7.0.1
[4345ca2d] + Loess v0.5.0
[856f044c] + MKL_jll v2019.0.117+2
[1914dd2f] + MacroTools v0.5.3
[ee78f7c6] + Makie v0.9.5
[dbd62bd0] + MakieGallery v0.1.1
[d41bc354] + NLSolversBase v7.6.0
[86f7a689] + NamedArrays v0.9.3
[4536629a] + OpenBLAS_jll v0.3.7+4
[429524aa] + Optim v0.20.0
[90014a1f] + PDMats v0.9.11
[d96e819e] + Parameters v0.12.0
[f27b6e38] + Polynomials v0.6.0
[85a6dd25] + PositiveFactorizations v0.2.3
[1fd47b50] + QuadGK v2.3.1
[b3c3ace0] + RangeArrays v0.3.2
[c84ed2f1] + Ratios v0.3.1
[3cdcf5f2] + RecipesBase v0.7.0
[79098fc4] + Rmath v0.6.0
[6038ab10] + Rotations v0.13.0
[699a6c99] + SimpleTraits v0.9.1
[4c63d2b9] + StatsFuns v0.9.3
[65254759] + StatsMakie v0.0.6
[a4af3ec5] + SyntaxTree v1.0.1
[06e1c1a7] + TiledIteration v0.2.4
[cc8bc4a8] + Widgets v0.6.2
[efce3f68] + WoodburyMatrices v0.5.0
[8bb1440f] + DelimitedFiles
[9fa8497b] + Future
[1a1011a3] + SharedArrays
[4607b0f0] + SuiteSparse
Building Rmath → `~/.julia/packages/Rmath/BoBag/deps/build.log`
Updating `/tmp/jl_YyCqjq/Project.toml`
[no changes]
Updating `/tmp/jl_YyCqjq/Manifest.toml`
[no changes]
Building FFTW ─→ `~/.julia/packages/FFTW/qqcBj/deps/build.log`
Updating `/tmp/jl_ljKlm5/Project.toml`
[no changes]
Updating `/tmp/jl_ljKlm5/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_IbEho7/Project.toml`
[537997a7] AbstractPlotting v0.9.17
[3da002f7] ColorTypes v0.9.1
[5ae59095] Colors v0.11.2
[5789e2e9] FileIO v1.2.1
[53c48c17] FixedPointNumbers v0.7.1
[f7f18e0c] GLFW v3.2.1
[e9467ef8] GLMakie v0.0.13
[4d00f742] GeometryTypes v0.7.7
[ee78f7c6] Makie v0.9.5
[dbd62bd0] MakieGallery v0.1.1
[7269a6da] MeshIO v0.3.1
[66fc600b] ModernGL v1.1.2
[510215fc] Observables v0.2.3
[90137ffa] StaticArrays v0.12.1
[37e2e46d] LinearAlgebra
[d6f4376e] Markdown
[de0858da] Printf
[9e88b42a] Serialization
[ Info: starting from index 1
┌ Warning: Package MakieGallery does not have GLMakie in its dependencies:
│ - If you have MakieGallery checked out for development and have
│ added GLMakie as a dependency but haven't updated your primary
│ environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with MakieGallery
└ Loading GLMakie into MakieGallery from project dependency, future warnings for MakieGallery are suppressed.
WARNING: using GLMakie.loadasset in module MakieGallery conflicts with an existing identifier.
WARNING: using GLMakie.assetpath in module MakieGallery conflicts with an existing identifier.
[ Info: Caching fonts, this may take a while. Needed only on first run!
Running tutorial_simple_scatter
Running tutorial_markersize
Running tutorial_simple_line
Running tutorial_adding_to_a_scene
Running tutorial_removing_from_a_scene
Running tutorial_adjusting_scene_limits
Running tutorial_basic_theming
Running tutorial_heatmap
Running tutorial_linesegments
Running tutorial_barplot
Running tutorial_title
Running tutorial_plot_transformation
┌ Warning: Example Animated time series failed
│ exception =
│ LoadError: UndefVarError: frame_start not defined
│ in expression starting at animated_time_series:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
f0 = 1/2; fs = 100;
winsec = 4; hopsec = 1/60
nwin = round(Integer, winsec*fs)
nhop = round(Integer, hopsec*fs)
# do the loop
frame_start = -winsec
frame_time = collect((0:(nwin-1)) * (1/fs))
aframe = sin.(2*pi*f0.*(frame_start .+ frame_time))
scene = lines(frame_start .+ frame_time, aframe)
center!(scene)
lineplot = scene[end]
fix = 0
record(scene, "/home/pkgeval/.julia/packages/GLMakie/tywRm/test/test_recordings/tmp/animated_time_series.mp4", 1:50) do i
global frame_start
aframe .= sin.(2*pi*f0.*(frame_start .+ frame_time))
# append!(aframe, randn(nhop)); deleteat!(aframe, 1:nhop)
lineplot[1] = frame_start .+ frame_time
lineplot[2] = aframe
AbstractPlotting.update_limits!(scene)
AbstractPlotting.update!(scene)
sleep(hopsec)
frame_start += hopsec
end
Running animated_time_series
┌ Warning: Error thrown when evaluating Animated time series
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Animated time series: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running test_heatmap___image_overlap
Running animation
Running barplot_1
Running poly_and_colormap
Running quiver_1
Running arrows_on_hemisphere
Running image_1
Running scatter_colormap
Running fem_polygon_2d
Running fem_mesh_2d
Running colored_triangle
Running heatmap_interpolation
Running colored_triangle_1
Running subscenes
Running scale_plot
Running polygons
Running contour_function
Running hbox_1
Running customize_axes
Running contour_1
Running heatmap_1
Running animated_scatter
Running text_annotation
┌ Warning: Example Text rotation failed
│ exception =
│ LoadError: syntax: `global posis`: posis is a local variable in its enclosing scope
│ in expression starting at text_rotation:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
scene = Scene()
pos = (500, 500)
posis = Point2f0[]
for r in range(0, stop = 2pi, length = 20)
global pos, posis
p = pos .+ (sin(r)*100.0, cos(r) * 100)
push!(posis, p)
t = text!(
scene, "test",
position = p,
textsize = 50,
rotation = 1.5pi - r,
align = (:center, :center)
)
end
scatter!(scene, posis, markersize = 10)
Running text_rotation
┌ Warning: Error thrown when evaluating Text rotation
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Text rotation: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
┌ Warning: Example The famous iris example failed
│ exception =
│ LoadError: syntax: `global i`: i is a local variable in its enclosing scope
│ in expression starting at the_famous_iris_example:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
using DataFrames, RDatasets # do Pkg.add.(["DataFrames", "RDatasets"]) if you don't have these packages installed
iris = dataset("datasets", "iris")
x = iris[!, :SepalWidth]
y = iris[!, :SepalLength]
scene = Scene()
colors = [:red, :green, :blue]
i = 1 #color incrementer
for sp in unique(iris[!, :Species])
idx = iris[!, :Species] .== sp
sel = iris[idx, [:SepalWidth, :SepalLength]]
scatter!(scene, sel[:,1], sel[:,2], color = colors[i], limits = FRect(1.5, 4.0, 3.0, 4.0))
global i = i+1
end
scene
axis = scene[Axis] # get axis
xlabel!(scene, "Sepal width")
ylabel!(scene, "Sepal length")
scene
Running the_famous_iris_example
┌ Warning: Error thrown when evaluating The famous iris example
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
The famous iris example: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running chess_game
Running linesegments___colors
┌ Warning: Example Parallel Prefix Sum failed
│ exception =
│ LoadError: TypeError: in import, expected Symbol, got Core.SlotNumber
│ in expression starting at parallel_prefix_sum:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
import Base: getindex, setindex!, length, size
import Base.+
using GeometryTypes
function prefix_sum(y, func)
l = length(y)
k = ceil(Int, log2(l))
for j=1:k, i=2^j:2^j:min(l, 2^k)
y[i] = func(y[i-2^(j-1)], y[i])
end
for j=(k-1):-1:1, i=3*2^(j-1):2^j:min(l, 2^k)
y[i] = func(y[i-2^(j-1)], y[i])
end
y
end
mutable struct AccessArray <: AbstractArray{Nothing, 1}
length::Int
read::Vector
history::Vector
end
function AccessArray(length, read = [], history = [])
AccessArray(length, read, history)
end
length(A::AccessArray) = A.length
size(A::AccessArray) = (A.length,)
function getindex(A::AccessArray, i)
push!(A.read, i)
return
end
function setindex!(A::AccessArray, x, i)
push!(A.history, (A.read, [i]))
A.read = []
end
+(a::Nothing, b::Nothing)=a
A = prefix_sum(AccessArray(8), +)
function render(A::AccessArray)
olast = depth = 0
for y in A.history
(any(y[1] .≤ olast)) && (depth += 1)
olast = maximum(y[2])
end
maxdepth = depth
olast = depth = 0
C = []
for y in A.history
(any(y[1] .≤ olast)) && (depth += 1)
push!(C, ((y...,), A.length, maxdepth, depth))
olast = maximum(y[2])
end
msize = 0.1
outsize = 0.15
x1 = Point2f0.(first.(first.(first.(C))), last.(C) .+ outsize .+ 0.05)
x2 = Point2f0.(last.(first.(first.(C))), last.(C) .+ outsize .+ 0.05)
x3 = Point2f0.(first.(last.(first.(C))), last.(C) .+ 1)
connections = Point2f0[]
yoff = Point2f0(0, msize / 2)
ooff = Point2f0(0, outsize / 2 + 0.05)
for i = 1:length(x3)
push!(connections, x3[i] .- ooff, x1[i] .+ yoff, x3[i] .- ooff, x2[i] .+ yoff)
end
node_theme = Theme(
markersize = msize, strokewidth = 3,
strokecolor = :black, color = (:white, 0.0),
axis = (
ticks = (ranges = (1:8, 1:5),),
names = (axisnames = ("Array Index", "Depth"),),
frame = (axis_position = :none,)
)
)
s = scatter(node_theme, x1)
scatter!(node_theme, x2)
scatter!(x3, color = :white, markersize = 0.2, strokewidth = 4, strokecolor = :black)
scatter!(x3, color = :red, marker = '+', markersize = outsize)
linesegments!(connections, color = :red)
s
end
render(A)
Running parallel_prefix_sum
┌ Warning: Error thrown when evaluating Parallel Prefix Sum
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Parallel Prefix Sum: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running streamplot_animation
┌ Warning: Example Line with varying colors failed
│ exception =
│ LoadError: ArgumentError: Package MakieGallery does not have ColorSchemes in its dependencies:
│ - If you have MakieGallery checked out for development and have
│ added ColorSchemes as a dependency but haven't updated your primary
│ environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with MakieGallery
│ in expression starting at line_with_varying_colors:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
using ColorSchemes # colormaps galore
t = range(0, stop=1, length=500) # time steps
θ = (6π) .* t # angles
x = t .* cos.(θ) # x coords of spiral
y = t .* sin.(θ) # y coords of spiral
p1 = lines(
x,
y,
color = t,
colormap = ColorSchemes.magma.colors,
linewidth=8)
cm = colorlegend(
p1[end], # access the plot of Scene p1
raw = true, # without axes or grid
camera = campixel!, # gives a concrete bounding box in pixels
# so that the `vbox` gives you the right size
width = ( # make the colorlegend longer so it looks nicer
30, # the width
540 # the height
)
)
scene_final = vbox(p1, cm) # put the colorlegend and the plot together in a `vbox`
Running line_with_varying_colors
┌ Warning: Error thrown when evaluating Line with varying colors
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Line with varying colors: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running viridis_color_scheme
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: limits of scene contain non finite values: Float32[Inf, Inf, 0.0] .. Float32[NaN, NaN, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/3uXXp/src/scenes.jl:562
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: Founds 0 width in scene limits: Float32[2.118122, 0.0, 0.0] .. Float32[2.118122, 0.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/3uXXp/src/scenes.jl:576
┌ Warning: Founds 0 width in scene limits: Float32[2.118122, 0.0, 0.0] .. Float32[2.118122, 0.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/3uXXp/src/scenes.jl:576
Running timeseries_1
Running line_changing_colour
Running line_changing_colour_with_observables
Running streamplot_1
Running categorical_heatmap
Running arc_1
Running transforming_lines
Running orthographic_camera
WARNING: both GeometryTypes and AbstractPlotting export "volume"; uses of it in module MakieGallery must be qualified
┌ Warning: Example Volume Function failed
│ exception =
│ LoadError: UndefVarError: volume not defined
│ in expression starting at volume_function:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
volume(rand(32, 32, 32), algorithm = :mip)
Running volume_function
┌ Warning: Error thrown when evaluating Volume Function
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Volume Function: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running textured_mesh
Running load_mesh
Running colored_mesh
Running wireframe_of_a_mesh
Running wireframe_of_sphere
Running wireframe_of_a_surface
Running surface_1
e = MethodError(AbstractPlotting.convert_arguments, (AbstractPlotting.SurfaceLike(), 28.284271247461902, 28.284271247461902, Float32[-0.00035133312 0.029723454 0.036204062 0.015032071 -0.017235346 -0.0393116 -0.040076062 -0.022292167 0.0033533801 0.026424648 0.041425724 0.048028607 0.048886936 0.04730866 0.045859322 0.045859322 0.04730866 0.048886936 0.048028607 0.041425724 0.026424648 0.0033533801 -0.022292167 -0.040076062 -0.0393116 -0.017235346 0.015032071 0.036204062 0.029723454 -0.00035133312; 0.029723454 0.03540573 0.009532101 -0.025446052 -0.04237465 -0.030822452 -0.00059381395 0.029876927 0.04692684 0.04730866 0.035771616 0.019607991 0.0046265693 -0.006086259 -0.011507325 -0.011507325 -0.006086259 0.0046265693 0.019607991 0.035771616 0.04730866 0.04692684 0.029876927 -0.00059381395 -0.030822452 -0.04237465 -0.025446052 0.009532101 0.03540573 0.029723454; 0.036204062 0.009532101 -0.02794796 -0.042301573 -0.022292167 0.01520512 0.04360354 0.04730866 0.028353216 -0.0006903301 -0.027350157 -0.045269974 -0.05426471 -0.057372477 -0.05793753 -0.05793753 -0.057372477 -0.05426471 -0.045269974 -0.027350157 -0.0006903301 0.028353216 0.04730866 0.04360354 0.01520512 -0.022292167 -0.042301573 -0.02794796 0.009532101 0.036204062; 0.015032071 -0.025446052 -0.042301573 -0.019036297 0.022807525 0.048028607 0.038915057 0.0046265693 -0.032293417 -0.05426471 -0.05694798 -0.046194226 -0.030855253 -0.017784275 -0.010599353 -0.010599353 -0.017784275 -0.030855253 -0.046194226 -0.05694798 -0.05426471 -0.032293417 0.0046265693 0.038915057 0.048028607 0.022807525 -0.019036297 -0.042301573 -0.025446052 0.015032071; -0.017235346 -0.04237465 -0.022292167 0.022807525 0.04873215 0.03224299 -0.011507325 -0.04878318 -0.05694798 -0.036594573 -0.003096402 0.028007228 0.04912726 0.06022591 0.06449952 0.06449952 0.06022591 0.04912726 0.028007228 -0.003096402 -0.036594573 -0.05694798 -0.04878318 -0.011507325 0.03224299 0.04873215 0.022807525 -0.022292167 -0.04237465 -0.017235346; -0.0393116 -0.030822452 0.01520512 0.048028607 0.03224299 -0.01689729 -0.05426471 -0.049972337 -0.010599353 0.035469495 0.06449952 0.07054497 0.06142463 0.04852842 0.04017237 0.04017237 0.04852842 0.06142463 0.07054497 0.06449952 0.035469495 -0.010599353 -0.049972337 -0.05426471 -0.01689729 0.03224299 0.048028607 0.01520512 -0.030822452 -0.0393116; -0.040076062 -0.00059381395 0.04360354 0.038915057 -0.011507325 -0.05426471 -0.046194226 0.0046263654 0.055060837 0.07054497 0.04852842 0.008876498 -0.027724072 -0.051570915 -0.06236892 -0.06236892 -0.051570915 -0.027724072 0.008876498 0.04852842 0.07054497 0.055060837 0.0046263654 -0.046194226 -0.05426471 -0.011507325 0.038915057 0.04360354 -0.00059381395 -0.040076062; -0.022292167 0.029876927 0.04730866 0.0046265693 -0.04878318 -0.049972337 0.0046263654 0.06022591 0.06584411 0.020187465 -0.0399096 -0.07997556 -0.0913252 -0.08552209 -0.07806207 -0.07806207 -0.08552209 -0.0913252 -0.07997556 -0.0399096 0.020187465 0.06584411 0.06022591 0.0046263654 -0.049972337 -0.04878318 0.0046265693 0.04730866 0.029876927 -0.022292167; 0.0033533801 0.04692684 0.028353216 -0.032293417 -0.05694798 -0.010599353 0.055060837 0.06584411 0.008876498 -0.06236892 -0.0913252 -0.06750391 -0.018740818 0.024102537 0.04664047 0.04664047 0.024102537 -0.018740818 -0.06750391 -0.0913252 -0.06236892 0.008876498 0.06584411 0.055060837 -0.010599353 -0.05694798 -0.032293417 0.028353216 0.04692684 0.0033533801; 0.026424648 0.04730866 -0.0006903301 -0.05426471 -0.036594573 0.035469495 0.07054497 0.020187465 -0.06236892 -0.089905396 -0.037563555 0.04664047 0.106488794 0.12716791 0.12762287 0.12762287 0.12716791 0.106488794 0.04664047 -0.037563555 -0.089905396 -0.06236892 0.020187465 0.07054497 0.035469495 -0.036594573 -0.05426471 -0.0006903301 0.04730866 0.026424648; 0.041425724 0.035771616 -0.027350157 -0.05694798 -0.003096402 0.06449952 0.04852842 -0.0399096 -0.0913252 -0.037563555 0.06866309 0.12716791 0.1027073 0.039213028 -0.006098051 -0.006098051 0.039213028 0.1027073 0.12716791 0.06866309 -0.037563555 -0.0913252 -0.0399096 0.04852842 0.06449952 -0.003096402 -0.05694798 -0.027350157 0.035771616 0.041425724; 0.048028607 0.019607991 -0.045269974 -0.046194226 0.028007228 0.07054497 0.008876498 -0.07997556 -0.06750391 0.04664047 0.12716791 0.0758151 -0.05788517 -0.16331576 -0.20230246 -0.20230246 -0.16331576 -0.05788517 0.0758151 0.12716791 0.04664047 -0.06750391 -0.07997556 0.008876498 0.07054497 0.028007228 -0.046194226 -0.045269974 0.019607991 0.048028607; 0.048886936 0.0046265693 -0.05426471 -0.030855253 0.04912726 0.06142463 -0.027724072 -0.0913252 -0.018740818 0.106488794 0.1027073 -0.05788517 -0.20230246 -0.19162284 -0.104149066 -0.104149066 -0.19162284 -0.20230246 -0.05788517 0.1027073 0.106488794 -0.018740818 -0.0913252 -0.027724072 0.06142463 0.04912726 -0.030855253 -0.05426471 0.0046265693 0.048886936; 0.04730866 -0.006086259 -0.057372477 -0.017784275 0.06022591 0.04852842 -0.051570915 -0.08552209 0.024102537 0.12716791 0.039213028 -0.16331576 -0.19162284 0.07312691 0.37581113 0.37581113 0.07312691 -0.19162284 -0.16331576 0.039213028 0.12716791 0.024102537 -0.08552209 -0.051570915 0.04852842 0.06022591 -0.017784275 -0.057372477 -0.006086259 0.04730866; 0.045859322 -0.011507325 -0.05793753 -0.010599353 0.06449952 0.04017237 -0.06236892 -0.07806207 0.04664047 0.12762287 -0.006098051 -0.20230246 -0.104149066 0.37581113 0.84883064 0.84883064 0.37581113 -0.104149066 -0.20230246 -0.006098051 0.12762287 0.04664047 -0.07806207 -0.06236892 0.04017237 0.06449952 -0.010599353 -0.05793753 -0.011507325 0.045859322; 0.045859322 -0.011507325 -0.05793753 -0.010599353 0.06449952 0.04017237 -0.06236892 -0.07806207 0.04664047 0.12762287 -0.006098051 -0.20230246 -0.104149066 0.37581113 0.84883064 0.84883064 0.37581113 -0.104149066 -0.20230246 -0.006098051 0.12762287 0.04664047 -0.07806207 -0.06236892 0.04017237 0.06449952 -0.010599353 -0.05793753 -0.011507325 0.045859322; 0.04730866 -0.006086259 -0.057372477 -0.017784275 0.06022591 0.04852842 -0.051570915 -0.08552209 0.024102537 0.12716791 0.039213028 -0.16331576 -0.19162284 0.07312691 0.37581113 0.37581113 0.07312691 -0.19162284 -0.16331576 0.039213028 0.12716791 0.024102537 -0.08552209 -0.051570915 0.04852842 0.06022591 -0.017784275 -0.057372477 -0.006086259 0.04730866; 0.048886936 0.0046265693 -0.05426471 -0.030855253 0.04912726 0.06142463 -0.027724072 -0.0913252 -0.018740818 0.106488794 0.1027073 -0.05788517 -0.20230246 -0.19162284 -0.104149066 -0.104149066 -0.19162284 -0.20230246 -0.05788517 0.1027073 0.106488794 -0.018740818 -0.0913252 -0.027724072 0.06142463 0.04912726 -0.030855253 -0.05426471 0.0046265693 0.048886936; 0.048028607 0.019607991 -0.045269974 -0.046194226 0.028007228 0.07054497 0.008876498 -0.07997556 -0.06750391 0.04664047 0.12716791 0.0758151 -0.05788517 -0.16331576 -0.20230246 -0.20230246 -0.16331576 -0.05788517 0.0758151 0.12716791 0.04664047 -0.06750391 -0.07997556 0.008876498 0.07054497 0.028007228 -0.046194226 -0.045269974 0.019607991 0.048028607; 0.041425724 0.035771616 -0.027350157 -0.05694798 -0.003096402 0.06449952 0.04852842 -0.0399096 -0.0913252 -0.037563555 0.06866309 0.12716791 0.1027073 0.039213028 -0.006098051 -0.006098051 0.039213028 0.1027073 0.12716791 0.06866309 -0.037563555 -0.0913252 -0.0399096 0.04852842 0.06449952 -0.003096402 -0.05694798 -0.027350157 0.035771616 0.041425724; 0.026424648 0.04730866 -0.0006903301 -0.05426471 -0.036594573 0.035469495 0.07054497 0.020187465 -0.06236892 -0.089905396 -0.037563555 0.04664047 0.106488794 0.12716791 0.12762287 0.12762287 0.12716791 0.106488794 0.04664047 -0.037563555 -0.089905396 -0.06236892 0.020187465 0.07054497 0.035469495 -0.036594573 -0.05426471 -0.0006903301 0.04730866 0.026424648; 0.0033533801 0.04692684 0.028353216 -0.032293417 -0.05694798 -0.010599353 0.055060837 0.06584411 0.008876498 -0.06236892 -0.0913252 -0.06750391 -0.018740818 0.024102537 0.04664047 0.04664047 0.024102537 -0.018740818 -0.06750391 -0.0913252 -0.06236892 0.008876498 0.06584411 0.055060837 -0.010599353 -0.05694798 -0.032293417 0.028353216 0.04692684 0.0033533801; -0.022292167 0.029876927 0.04730866 0.0046265693 -0.04878318 -0.049972337 0.0046263654 0.06022591 0.06584411 0.020187465 -0.0399096 -0.07997556 -0.0913252 -0.08552209 -0.07806207 -0.07806207 -0.08552209 -0.0913252 -0.07997556 -0.0399096 0.020187465 0.06584411 0.06022591 0.0046263654 -0.049972337 -0.04878318 0.0046265693 0.04730866 0.029876927 -0.022292167; -0.040076062 -0.00059381395 0.04360354 0.038915057 -0.011507325 -0.05426471 -0.046194226 0.0046263654 0.055060837 0.07054497 0.04852842 0.008876498 -0.027724072 -0.051570915 -0.06236892 -0.06236892 -0.051570915 -0.027724072 0.008876498 0.04852842 0.07054497 0.055060837 0.0046263654 -0.046194226 -0.05426471 -0.011507325 0.038915057 0.04360354 -0.00059381395 -0.040076062; -0.0393116 -0.030822452 0.01520512 0.048028607 0.03224299 -0.01689729 -0.05426471 -0.049972337 -0.010599353 0.035469495 0.06449952 0.07054497 0.06142463 0.04852842 0.04017237 0.04017237 0.04852842 0.06142463 0.07054497 0.06449952 0.035469495 -0.010599353 -0.049972337 -0.05426471 -0.01689729 0.03224299 0.048028607 0.01520512 -0.030822452 -0.0393116; -0.017235346 -0.04237465 -0.022292167 0.022807525 0.04873215 0.03224299 -0.011507325 -0.04878318 -0.05694798 -0.036594573 -0.003096402 0.028007228 0.04912726 0.06022591 0.06449952 0.06449952 0.06022591 0.04912726 0.028007228 -0.003096402 -0.036594573 -0.05694798 -0.04878318 -0.011507325 0.03224299 0.04873215 0.022807525 -0.022292167 -0.04237465 -0.017235346; 0.015032071 -0.025446052 -0.042301573 -0.019036297 0.022807525 0.048028607 0.038915057 0.0046265693 -0.032293417 -0.05426471 -0.05694798 -0.046194226 -0.030855253 -0.017784275 -0.010599353 -0.010599353 -0.017784275 -0.030855253 -0.046194226 -0.05694798 -0.05426471 -0.032293417 0.0046265693 0.038915057 0.048028607 0.022807525 -0.019036297 -0.042301573 -0.025446052 0.015032071; 0.036204062 0.009532101 -0.02794796 -0.042301573 -0.022292167 0.01520512 0.04360354 0.04730866 0.028353216 -0.0006903301 -0.027350157 -0.045269974 -0.05426471 -0.057372477 -0.05793753 -0.05793753 -0.057372477 -0.05426471 -0.045269974 -0.027350157 -0.0006903301 0.028353216 0.04730866 0.04360354 0.01520512 -0.022292167 -0.042301573 -0.02794796 0.009532101 0.036204062; 0.029723454 0.03540573 0.009532101 -0.025446052 -0.04237465 -0.030822452 -0.00059381395 0.029876927 0.04692684 0.04730866 0.035771616 0.019607991 0.0046265693 -0.006086259 -0.011507325 -0.011507325 -0.006086259 0.0046265693 0.019607991 0.035771616 0.04730866 0.04692684 0.029876927 -0.00059381395 -0.030822452 -0.04237465 -0.025446052 0.009532101 0.03540573 0.029723454; -0.00035133312 0.029723454 0.036204062 0.015032071 -0.017235346 -0.0393116 -0.040076062 -0.022292167 0.0033533801 0.026424648 0.041425724 0.048028607 0.048886936 0.04730866 0.045859322 0.045859322 0.04730866 0.048886936 0.048028607 0.041425724 0.026424648 0.0033533801 -0.022292167 -0.040076062 -0.0393116 -0.017235346 0.015032071 0.036204062 0.029723454 -0.00035133312]), 0x0000000000006ad4)
┌ Warning: Example Surface with image failed
│ exception =
│ LoadError: No overload for Surface{...} and also no overload for trait AbstractPlotting.SurfaceLike() found! Arguments: (Float64, Float64, Array{Float32,2})
│ in expression starting at surface_with_image:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
N = 30
function xy_data(x, y)
r = sqrt(x^2 + y^2)
r == 0.0 ? 1f0 : (sin(r)/r)
end
r = range(-2, stop = 2, length = N)
surf_func(i) = [Float32(xy_data(x*i, y*i)) for x = r, y = r]
surface(
r, r, surf_func(10),
color = rand(RGBAf0, 124, 124)
)
Running surface_with_image
┌ Warning: Error thrown when evaluating Surface with image
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Surface with image: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
Running line_function
Running meshscatter_function
Running scatter_1
Running marker_sizes
Running record_video
Running 3d_contour_with_2d_contour_slices
Running contour3d_1
Running arrows_3d
Running image_on_surface_sphere
Running arrows_on_sphere
Running surface___contour3d
Running fem_mesh_3d
Running axis___surface
Running fluctuation_3d
Running connected_sphere
Running image_scatter
Running simple_meshscatter
e = MethodError(AbstractPlotting.convert_arguments, (AbstractPlotting.SurfaceLike(), 56.568542494923804, 56.568542494923804, Float32[0.00035131577 -0.016259726 -0.01444247 0.0035321028 0.018204566 0.014794203 -0.0028386945 -0.01821551 -0.01849501 -0.0043828883 0.012907425 0.021745134 0.017758792 0.004607553 -0.010275246 -0.020562788 -0.023556776 -0.020005507 -0.012487909 -0.003761453 0.0041983086 0.010420457 0.0147127 0.017295567 0.018484462 0.018484462 0.017295567 0.0147127 0.010420457 0.0041983086 -0.003761453 -0.012487909 -0.020005507 -0.023556776 -0.020562788 -0.010275246 0.004607553 0.017758792 0.021745134 0.012907425 -0.0043828883 -0.01849501 -0.01821551 -0.0028386945 0.014794203 0.018204566 0.0035321028 -0.01444247 -0.016259726 0.00035131577; -0.016259726 -0.01387697 0.0053719264 0.018966619 0.011865951 -0.007983783 -0.020292958 -0.013675589 0.005147335 0.01996853 0.019776234 0.0059259734 -0.011531194 -0.022340853 -0.02202296 -0.012487909 0.0009974638 0.013331175 0.021571387 0.025149748 0.025060294 0.022873841 0.020053614 0.017659774 0.01632253 0.01632253 0.017659774 0.020053614 0.022873841 0.025060294 0.025149748 0.021571387 0.013331175 0.0009974638 -0.012487909 -0.02202296 -0.022340853 -0.011531194 0.0059259734 0.019776234 0.01996853 0.005147335 -0.013675589 -0.020292958 -0.007983783 0.011865951 0.018966619 0.0053719264 -0.01387697 -0.016259726; -0.01444247 0.0053719264 0.019123144 0.010184294 -0.010859349 -0.020499296 -0.008836244 0.011885626 0.021952132 0.013121961 -0.0063286326 -0.02123587 -0.02202296 -0.009752829 0.0073578074 0.020627826 0.025465608 0.02204173 0.01339554 0.0030911886 -0.006265444 -0.013426791 -0.01821048 -0.020984437 -0.02222187 -0.02222187 -0.020984437 -0.01821048 -0.013426791 -0.006265444 0.0030911886 0.01339554 0.02204173 0.025465608 0.020627826 0.0073578074 -0.009752829 -0.02202296 -0.02123587 -0.0063286326 0.013121961 0.021952132 0.011885626 -0.008836244 -0.020499296 -0.010859349 0.010184294 0.019123144 0.0053719264 -0.01444247; 0.0035321028 0.018966619 0.010184294 -0.011765145 -0.020232828 -0.0055319495 0.01572661 0.021153133 0.0059259734 -0.015050851 -0.023556776 -0.013771146 0.0057866937 0.021571387 0.025060294 0.01632253 0.0012344558 -0.013426791 -0.023349408 -0.027450264 -0.026906032 -0.023760376 -0.01992189 -0.016739573 -0.014983789 -0.014983789 -0.016739573 -0.01992189 -0.023760376 -0.026906032 -0.027450264 -0.023349408 -0.013426791 0.0012344558 0.01632253 0.025060294 0.021571387 0.0057866937 -0.013771146 -0.023556776 -0.015050851 0.0059259734 0.021153133 0.01572661 -0.0055319495 -0.020232828 -0.011765145 0.010184294 0.018966619 0.0035321028; 0.018204566 0.011865951 -0.010859349 -0.020232828 -0.0043828883 0.017367473 0.019776234 0.00053816737 -0.019813443 -0.021439139 -0.003761453 0.017295567 0.025448654 0.01632253 -0.0025196134 -0.01964465 -0.027450264 -0.024766387 -0.014983789 -0.002752221 0.0083798645 0.01672277 0.02208823 0.025052788 0.026317645 0.026317645 0.025052788 0.02208823 0.01672277 0.0083798645 -0.002752221 -0.014983789 -0.024766387 -0.027450264 -0.01964465 -0.0025196134 0.01632253 0.025448654 0.017295567 -0.003761453 -0.021439139 -0.019813443 0.00053816737 0.019776234 0.017367473 -0.0043828883 -0.020232828 -0.010859349 0.011865951 0.018204566; 0.014794203 -0.007983783 -0.020499296 -0.0055319495 0.017367473 0.019172816 -0.0022211075 -0.021829521 -0.01823278 0.0041983086 0.023177419 0.02204173 0.0030911886 -0.01821048 -0.027643016 -0.021332711 -0.004938171 0.012677243 0.025052788 0.030102573 0.029116414 0.024774984 0.01962374 0.015421282 0.013126016 0.013126016 0.015421282 0.01962374 0.024774984 0.029116414 0.030102573 0.025052788 0.012677243 -0.004938171 -0.021332711 -0.027643016 -0.01821048 0.0030911886 0.02204173 0.023177419 0.0041983086 -0.01823278 -0.021829521 -0.0022211075 0.019172816 0.017367473 -0.0055319495 -0.020499296 -0.007983783 0.014794203; -0.0028386945 -0.020292958 -0.008836244 0.01572661 0.019776234 -0.0022211075 -0.022340853 -0.016144805 0.008904703 0.025149748 0.01632253 -0.008111451 -0.026004659 -0.023760376 -0.004938171 0.01672277 0.029127557 0.028320584 0.017591644 0.0030008615 -0.010459127 -0.020355383 -0.026443673 -0.02959776 -0.030856555 -0.030856555 -0.02959776 -0.026443673 -0.020355383 -0.010459127 0.0030008615 0.017591644 0.028320584 0.029127557 0.01672277 -0.004938171 -0.023760376 -0.026004659 -0.008111451 0.01632253 0.025149748 0.008904703 -0.016144805 -0.022340853 -0.0022211075 0.019776234 0.01572661 -0.008836244 -0.020292958 -0.0028386945; -0.01821551 -0.013675589 0.011885626 0.021153133 0.00053816737 -0.021829521 -0.016144805 0.010420457 0.025465608 0.011818511 -0.015092727 -0.027686333 -0.014983789 0.010553268 0.028363535 0.027328702 0.010720332 -0.010459127 -0.026443673 -0.03320884 -0.03190887 -0.026074685 -0.019195296 -0.013639531 -0.0106311785 -0.0106311785 -0.013639531 -0.019195296 -0.026074685 -0.03190887 -0.03320884 -0.026443673 -0.010459127 0.010720332 0.027328702 0.028363535 0.010553268 -0.014983789 -0.027686333 -0.015092727 0.011818511 0.025465608 0.010420457 -0.016144805 -0.021829521 0.00053816737 0.021153133 0.011885626 -0.013675589 -0.01821551; -0.01849501 0.005147335 0.021952132 0.0059259734 -0.019813443 -0.01823278 0.008904703 0.025465608 0.010175026 -0.01821048 -0.026906032 -0.007080706 0.020410376 0.03010992 0.015421282 -0.010459127 -0.02959776 -0.032709654 -0.021700444 -0.0042727594 0.012336447 0.024382586 0.03142887 0.034773786 0.035972595 0.035972595 0.034773786 0.03142887 0.024382586 0.012336447 -0.0042727594 -0.021700444 -0.032709654 -0.02959776 -0.010459127 0.015421282 0.03010992 0.020410376 -0.007080706 -0.026906032 -0.01821048 0.010175026 0.025465608 0.008904703 -0.01823278 -0.019813443 0.0059259734 0.021952132 0.005147335 -0.01849501; -0.0043828883 0.01996853 0.013121961 -0.015050851 -0.021439139 0.0041983086 0.025149748 0.011818511 -0.01821048 -0.026342064 -0.002752221 0.025052788 0.027328702 0.0030008615 -0.02457846 -0.033239134 -0.019195296 0.0057160426 0.026968254 0.036831126 0.03561581 0.027931985 0.018718105 0.011307625 0.0073250216 0.0073250216 0.011307625 0.018718105 0.027931985 0.03561581 0.036831126 0.026968254 0.0057160426 -0.019195296 -0.033239134 -0.02457846 0.0030008615 0.027328702 0.025052788 -0.002752221 -0.026342064 -0.01821048 0.011818511 0.025149748 0.0041983086 -0.021439139 -0.015050851 0.013121961 0.01996853 -0.0043828883; 0.012907425 0.019776234 -0.0063286326 -0.023556776 -0.003761453 0.023177419 0.01632253 -0.015092727 -0.026906032 -0.002752221 0.026317645 0.024774984 -0.0051006 -0.030856555 -0.02791397 -0.0009751506 0.026968254 0.037471216 0.027931985 0.0073250216 -0.013660373 -0.028860014 -0.037285123 -0.040834147 -0.041883763 -0.041883763 -0.040834147 -0.037285123 -0.028860014 -0.013660373 0.0073250216 0.027931985 0.037471216 0.026968254 -0.0009751506 -0.02791397 -0.030856555 -0.0051006 0.024774984 0.026317645 -0.002752221 -0.026906032 -0.015092727 0.01632253 0.023177419 -0.003761453 -0.023556776 -0.0063286326 0.019776234 0.012907425; 0.021745134 0.0059259734 -0.02123587 -0.013771146 0.017295567 0.02204173 -0.008111451 -0.027686333 -0.007080706 0.025052788 0.024774984 -0.00779734 -0.032672733 -0.021700444 0.012336447 0.035972595 0.0303842 0.0032108692 -0.025390638 -0.040834147 -0.040735193 -0.030835731 -0.018370457 -0.008308188 -0.0029350128 -0.0029350128 -0.008308188 -0.018370457 -0.030835731 -0.040735193 -0.040834147 -0.025390638 0.0032108692 0.0303842 0.035972595 0.012336447 -0.021700444 -0.032672733 -0.00779734 0.024774984 0.025052788 -0.007080706 -0.027686333 -0.008111451 0.02204173 0.017295567 -0.013771146 -0.02123587 0.0059259734 0.021745134; 0.017758792 -0.011531194 -0.02202296 0.0057866937 0.025448654 0.0030911886 -0.026004659 -0.014983789 0.020410376 0.027328702 -0.0051006 -0.032672733 -0.019195296 0.018640542 0.037471216 0.018718105 -0.017741356 -0.040834147 -0.03684499 -0.013475913 0.013660335 0.03378541 0.044404335 0.04821337 0.04896043 0.04896043 0.04821337 0.044404335 0.03378541 0.013660335 -0.013475913 -0.03684499 -0.040834147 -0.017741356 0.018718105 0.037471216 0.018640542 -0.019195296 -0.032672733 -0.0051006 0.027328702 0.020410376 -0.014983789 -0.026004659 0.0030911886 0.025448654 0.0057866937 -0.02202296 -0.011531194 0.017758792; 0.004607553 -0.022340853 -0.009752829 0.021571387 0.01632253 -0.01821048 -0.023760376 0.010553268 0.03010992 0.0030008615 -0.030856555 -0.021700444 0.018640542 0.037232827 0.011307625 -0.028860014 -0.041850146 -0.018370457 0.019078122 0.044404335 0.047949914 0.03569885 0.018552657 0.004483572 -0.0029945923 -0.0029945923 0.004483572 0.018552657 0.03569885 0.047949914 0.044404335 0.019078122 -0.018370457 -0.041850146 -0.028860014 0.011307625 0.037232827 0.018640542 -0.021700444 -0.030856555 0.0030008615 0.03010992 0.010553268 -0.023760376 -0.01821048 0.01632253 0.021571387 -0.009752829 -0.022340853 0.004607553; -0.010275246 -0.02202296 0.0073578074 0.025060294 -0.0025196134 -0.027643016 -0.004938171 0.028363535 0.015421282 -0.02457846 -0.02791397 0.012336447 0.037471216 0.011307625 -0.03202868 -0.03906401 -0.0029350128 0.03788674 0.047949914 0.024896896 -0.010582798 -0.03889569 -0.053435627 -0.057705056 -0.0578725 -0.0578725 -0.057705056 -0.053435627 -0.03889569 -0.010582798 0.024896896 0.047949914 0.03788674 -0.0029350128 -0.03906401 -0.03202868 0.011307625 0.037471216 0.012336447 -0.02791397 -0.02457846 0.015421282 0.028363535 -0.004938171 -0.027643016 -0.0025196134 0.025060294 0.0073578074 -0.02202296 -0.010275246; -0.020562788 -0.012487909 0.020627826 0.01632253 -0.01964465 -0.021332711 0.01672277 0.027328702 -0.010459127 -0.033239134 -0.0009751506 0.035972595 0.018718105 -0.028860014 -0.03906401 0.0025702468 0.044404335 0.040002443 -0.0029945923 -0.04464518 -0.0578725 -0.04429047 -0.020222547 0.00035720138 0.0112917675 0.0112917675 0.00035720138 -0.020222547 -0.04429047 -0.0578725 -0.04464518 -0.0029945923 0.040002443 0.044404335 0.0025702468 -0.03906401 -0.028860014 0.018718105 0.035972595 -0.0009751506 -0.033239134 -0.010459127 0.027328702 0.01672277 -0.021332711 -0.01964465 0.01632253 0.020627826 -0.012487909 -0.020562788; -0.023556776 0.0009974638 0.025465608 0.0012344558 -0.027450264 -0.004938171 0.029127557 0.010720332 -0.02959776 -0.019195296 0.026968254 0.0303842 -0.017741356 -0.041850146 -0.0029350128 0.044404335 0.03569885 -0.01812877 -0.05619531 -0.04429047 0.00035720138 0.04292412 0.06544137 0.07088991 0.069946796 0.069946796 0.07088991 0.06544137 0.04292412 0.00035720138 -0.04429047 -0.05619531 -0.01812877 0.03569885 0.044404335 -0.0029350128 -0.041850146 -0.017741356 0.0303842 0.026968254 -0.019195296 -0.02959776 0.010720332 0.029127557 -0.004938171 -0.027450264 0.0012344558 0.025465608 0.0009974638 -0.023556776; -0.020005507 0.013331175 0.02204173 -0.013426791 -0.024766387 0.012677243 0.028320584 -0.010459127 -0.032709654 0.0057160426 0.037471216 0.0032108692 -0.040834147 -0.018370457 0.03788674 0.040002443 -0.01812877 -0.057705056 -0.029351996 0.032917555 0.06931664 0.0600344 0.02590182 -0.0063178763 -0.023635956 -0.023635956 -0.0063178763 0.02590182 0.0600344 0.06931664 0.032917555 -0.029351996 -0.057705056 -0.01812877 0.040002443 0.03788674 -0.018370457 -0.040834147 0.0032108692 0.037471216 0.0057160426 -0.032709654 -0.010459127 0.028320584 0.012677243 -0.024766387 -0.013426791 0.02204173 0.013331175 -0.020005507; -0.012487909 0.021571387 0.01339554 -0.023349408 -0.014983789 0.025052788 0.017591644 -0.026443673 -0.021700444 0.026968254 0.027931985 -0.025390638 -0.03684499 0.019078122 0.047949914 -0.0029945923 -0.05619531 -0.029351996 0.04292412 0.069946796 0.02590182 -0.04075268 -0.08185288 -0.09131752 -0.08819317 -0.08819317 -0.09131752 -0.08185288 -0.04075268 0.02590182 0.069946796 0.04292412 -0.029351996 -0.05619531 -0.0029945923 0.047949914 0.019078122 -0.03684499 -0.025390638 0.027931985 0.026968254 -0.021700444 -0.026443673 0.017591644 0.025052788 -0.014983789 -0.023349408 0.01339554 0.021571387 -0.012487909; -0.003761453 0.025149748 0.0030911886 -0.027450264 -0.002752221 0.030102573 0.0030008615 -0.03320884 -0.0042727594 0.036831126 0.0073250216 -0.040834147 -0.013475913 0.044404335 0.024896896 -0.04464518 -0.04429047 0.032917555 0.069946796 0.0104181655 -0.07081323 -0.08819317 -0.043084584 0.012565619 0.04402072 0.04402072 0.012565619 -0.043084584 -0.08819317 -0.07081323 0.0104181655 0.069946796 0.032917555 -0.04429047 -0.04464518 0.024896896 0.044404335 -0.013475913 -0.040834147 0.0073250216 0.036831126 -0.0042727594 -0.03320884 0.0030008615 0.030102573 -0.002752221 -0.027450264 0.0030911886 0.025149748 -0.003761453; 0.0041983086 0.025060294 -0.006265444 -0.026906032 0.0083798645 0.029116414 -0.010459127 -0.03190887 0.012336447 0.03561581 -0.013660373 -0.040735193 0.013660335 0.047949914 -0.010582798 -0.0578725 0.00035720138 0.06931664 0.02590182 -0.07081323 -0.07913803 0.012565619 0.10139728 0.12835117 0.12110661 0.12110661 0.12835117 0.10139728 0.012565619 -0.07913803 -0.07081323 0.02590182 0.06931664 0.00035720138 -0.0578725 -0.010582798 0.047949914 0.013660335 -0.040735193 -0.013660373 0.03561581 0.012336447 -0.03190887 -0.010459127 0.029116414 0.0083798645 -0.026906032 -0.006265444 0.025060294 0.0041983086; 0.010420457 0.022873841 -0.013426791 -0.023760376 0.01672277 0.024774984 -0.020355383 -0.026074685 0.024382586 0.027931985 -0.028860014 -0.030835731 0.03378541 0.03569885 -0.03889569 -0.04429047 0.04292412 0.0600344 -0.04075268 -0.08819317 0.012565619 0.12056251 0.09592839 -0.01064496 -0.08470617 -0.08470617 -0.01064496 0.09592839 0.12056251 0.012565619 -0.08819317 -0.04075268 0.0600344 0.04292412 -0.04429047 -0.03889569 0.03569885 0.03378541 -0.030835731 -0.028860014 0.027931985 0.024382586 -0.026074685 -0.020355383 0.024774984 0.01672277 -0.023760376 -0.013426791 0.022873841 0.010420457; 0.0147127 0.020053614 -0.01821048 -0.01992189 0.02208823 0.01962374 -0.026443673 -0.019195296 0.03142887 0.018718105 -0.037285123 -0.018370457 0.044404335 0.018552657 -0.053435627 -0.020222547 0.06544137 0.02590182 -0.08185288 -0.043084584 0.10139728 0.09592839 -0.08470617 -0.20984809 -0.20482196 -0.20482196 -0.20984809 -0.08470617 0.09592839 0.10139728 -0.043084584 -0.08185288 0.02590182 0.06544137 -0.020222547 -0.053435627 0.018552657 0.044404335 -0.018370457 -0.037285123 0.018718105 0.03142887 -0.019195296 -0.026443673 0.01962374 0.02208823 -0.01992189 -0.01821048 0.020053614 0.0147127; 0.017295567 0.017659774 -0.020984437 -0.016739573 0.025052788 0.015421282 -0.02959776 -0.013639531 0.034773786 0.011307625 -0.040834147 -0.008308188 0.04821337 0.004483572 -0.057705056 0.00035720138 0.07088991 -0.0063178763 -0.09131752 0.012565619 0.12835117 -0.01064496 -0.20984809 -0.09131623 0.20581682 0.20581682 -0.09131623 -0.20984809 -0.01064496 0.12835117 0.012565619 -0.09131752 -0.0063178763 0.07088991 0.00035720138 -0.057705056 0.004483572 0.04821337 -0.008308188 -0.040834147 0.011307625 0.034773786 -0.013639531 -0.02959776 0.015421282 0.025052788 -0.016739573 -0.020984437 0.017659774 0.017295567; 0.018484462 0.01632253 -0.02222187 -0.014983789 0.026317645 0.013126016 -0.030856555 -0.0106311785 0.035972595 0.0073250216 -0.041883763 -0.0029350128 0.04896043 -0.0029945923 -0.0578725 0.0112917675 0.069946796 -0.023635956 -0.08819317 0.04402072 0.12110661 -0.08470617 -0.20482196 0.20581682 0.79221165 0.79221165 0.20581682 -0.20482196 -0.08470617 0.12110661 0.04402072 -0.08819317 -0.023635956 0.069946796 0.0112917675 -0.0578725 -0.0029945923 0.04896043 -0.0029350128 -0.041883763 0.0073250216 0.035972595 -0.0106311785 -0.030856555 0.013126016 0.026317645 -0.014983789 -0.02222187 0.01632253 0.018484462; 0.018484462 0.01632253 -0.02222187 -0.014983789 0.026317645 0.013126016 -0.030856555 -0.0106311785 0.035972595 0.0073250216 -0.041883763 -0.0029350128 0.04896043 -0.0029945923 -0.0578725 0.0112917675 0.069946796 -0.023635956 -0.08819317 0.04402072 0.12110661 -0.08470617 -0.20482196 0.20581682 0.79221165 0.79221165 0.20581682 -0.20482196 -0.08470617 0.12110661 0.04402072 -0.08819317 -0.023635956 0.069946796 0.0112917675 -0.0578725 -0.0029945923 0.04896043 -0.0029350128 -0.041883763 0.0073250216 0.035972595 -0.0106311785 -0.030856555 0.013126016 0.026317645 -0.014983789 -0.02222187 0.01632253 0.018484462; 0.017295567 0.017659774 -0.020984437 -0.016739573 0.025052788 0.015421282 -0.02959776 -0.013639531 0.034773786 0.011307625 -0.040834147 -0.008308188 0.04821337 0.004483572 -0.057705056 0.00035720138 0.07088991 -0.0063178763 -0.09131752 0.012565619 0.12835117 -0.01064496 -0.20984809 -0.09131623 0.20581682 0.20581682 -0.09131623 -0.20984809 -0.01064496 0.12835117 0.012565619 -0.09131752 -0.0063178763 0.07088991 0.00035720138 -0.057705056 0.004483572 0.04821337 -0.008308188 -0.040834147 0.011307625 0.034773786 -0.013639531 -0.02959776 0.015421282 0.025052788 -0.016739573 -0.020984437 0.017659774 0.017295567; 0.0147127 0.020053614 -0.01821048 -0.01992189 0.02208823 0.01962374 -0.026443673 -0.019195296 0.03142887 0.018718105 -0.037285123 -0.018370457 0.044404335 0.018552657 -0.053435627 -0.020222547 0.06544137 0.02590182 -0.08185288 -0.043084584 0.10139728 0.09592839 -0.08470617 -0.20984809 -0.20482196 -0.20482196 -0.20984809 -0.08470617 0.09592839 0.10139728 -0.043084584 -0.08185288 0.02590182 0.06544137 -0.020222547 -0.053435627 0.018552657 0.044404335 -0.018370457 -0.037285123 0.018718105 0.03142887 -0.019195296 -0.026443673 0.01962374 0.02208823 -0.01992189 -0.01821048 0.020053614 0.0147127; 0.010420457 0.022873841 -0.013426791 -0.023760376 0.01672277 0.024774984 -0.020355383 -0.026074685 0.024382586 0.027931985 -0.028860014 -0.030835731 0.03378541 0.03569885 -0.03889569 -0.04429047 0.04292412 0.0600344 -0.04075268 -0.08819317 0.012565619 0.12056251 0.09592839 -0.01064496 -0.08470617 -0.08470617 -0.01064496 0.09592839 0.12056251 0.012565619 -0.08819317 -0.04075268 0.0600344 0.04292412 -0.04429047 -0.03889569 0.03569885 0.03378541 -0.030835731 -0.028860014 0.027931985 0.024382586 -0.026074685 -0.020355383 0.024774984 0.01672277 -0.023760376 -0.013426791 0.022873841 0.010420457; 0.0041983086 0.025060294 -0.006265444 -0.026906032 0.0083798645 0.029116414 -0.010459127 -0.03190887 0.012336447 0.03561581 -0.013660373 -0.040735193 0.013660335 0.047949914 -0.010582798 -0.0578725 0.00035720138 0.06931664 0.02590182 -0.07081323 -0.07913803 0.012565619 0.10139728 0.12835117 0.12110661 0.12110661 0.12835117 0.10139728 0.012565619 -0.07913803 -0.07081323 0.02590182 0.06931664 0.00035720138 -0.0578725 -0.010582798 0.047949914 0.013660335 -0.040735193 -0.013660373 0.03561581 0.012336447 -0.03190887 -0.010459127 0.029116414 0.0083798645 -0.026906032 -0.006265444 0.025060294 0.0041983086; -0.003761453 0.025149748 0.0030911886 -0.027450264 -0.002752221 0.030102573 0.0030008615 -0.03320884 -0.0042727594 0.036831126 0.0073250216 -0.040834147 -0.013475913 0.044404335 0.024896896 -0.04464518 -0.04429047 0.032917555 0.069946796 0.0104181655 -0.07081323 -0.08819317 -0.043084584 0.012565619 0.04402072 0.04402072 0.012565619 -0.043084584 -0.08819317 -0.07081323 0.0104181655 0.069946796 0.032917555 -0.04429047 -0.04464518 0.024896896 0.044404335 -0.013475913 -0.040834147 0.0073250216 0.036831126 -0.0042727594 -0.03320884 0.0030008615 0.030102573 -0.002752221 -0.027450264 0.0030911886 0.025149748 -0.003761453; -0.012487909 0.021571387 0.01339554 -0.023349408 -0.014983789 0.025052788 0.017591644 -0.026443673 -0.021700444 0.026968254 0.027931985 -0.025390638 -0.03684499 0.019078122 0.047949914 -0.0029945923 -0.05619531 -0.029351996 0.04292412 0.069946796 0.02590182 -0.04075268 -0.08185288 -0.09131752 -0.08819317 -0.08819317 -0.09131752 -0.08185288 -0.04075268 0.02590182 0.069946796 0.04292412 -0.029351996 -0.05619531 -0.0029945923 0.047949914 0.019078122 -0.03684499 -0.025390638 0.027931985 0.026968254 -0.021700444 -0.026443673 0.017591644 0.025052788 -0.014983789 -0.023349408 0.01339554 0.021571387 -0.012487909; -0.020005507 0.013331175 0.02204173 -0.013426791 -0.024766387 0.012677243 0.028320584 -0.010459127 -0.032709654 0.0057160426 0.037471216 0.0032108692 -0.040834147 -0.018370457 0.03788674 0.040002443 -0.01812877 -0.057705056 -0.029351996 0.032917555 0.06931664 0.0600344 0.02590182 -0.0063178763 -0.023635956 -0.023635956 -0.0063178763 0.02590182 0.0600344 0.06931664 0.032917555 -0.029351996 -0.057705056 -0.01812877 0.040002443 0.03788674 -0.018370457 -0.040834147 0.0032108692 0.037471216 0.0057160426 -0.032709654 -0.010459127 0.028320584 0.012677243 -0.024766387 -0.013426791 0.02204173 0.013331175 -0.020005507; -0.023556776 0.0009974638 0.025465608 0.0012344558 -0.027450264 -0.004938171 0.029127557 0.010720332 -0.02959776 -0.019195296 0.026968254 0.0303842 -0.017741356 -0.041850146 -0.0029350128 0.044404335 0.03569885 -0.01812877 -0.05619531 -0.04429047 0.00035720138 0.04292412 0.06544137 0.07088991 0.069946796 0.069946796 0.07088991 0.06544137 0.04292412 0.00035720138 -0.04429047 -0.05619531 -0.01812877 0.03569885 0.044404335 -0.0029350128 -0.041850146 -0.017741356 0.0303842 0.026968254 -0.019195296 -0.02959776 0.010720332 0.029127557 -0.004938171 -0.027450264 0.0012344558 0.025465608 0.0009974638 -0.023556776; -0.020562788 -0.012487909 0.020627826 0.01632253 -0.01964465 -0.021332711 0.01672277 0.027328702 -0.010459127 -0.033239134 -0.0009751506 0.035972595 0.018718105 -0.028860014 -0.03906401 0.0025702468 0.044404335 0.040002443 -0.0029945923 -0.04464518 -0.0578725 -0.04429047 -0.020222547 0.00035720138 0.0112917675 0.0112917675 0.00035720138 -0.020222547 -0.04429047 -0.0578725 -0.04464518 -0.0029945923 0.040002443 0.044404335 0.0025702468 -0.03906401 -0.028860014 0.018718105 0.035972595 -0.0009751506 -0.033239134 -0.010459127 0.027328702 0.01672277 -0.021332711 -0.01964465 0.01632253 0.020627826 -0.012487909 -0.020562788; -0.010275246 -0.02202296 0.0073578074 0.025060294 -0.0025196134 -0.027643016 -0.004938171 0.028363535 0.015421282 -0.02457846 -0.02791397 0.012336447 0.037471216 0.011307625 -0.03202868 -0.03906401 -0.0029350128 0.03788674 0.047949914 0.024896896 -0.010582798 -0.03889569 -0.053435627 -0.057705056 -0.0578725 -0.0578725 -0.057705056 -0.053435627 -0.03889569 -0.010582798 0.024896896 0.047949914 0.03788674 -0.0029350128 -0.03906401 -0.03202868 0.011307625 0.037471216 0.012336447 -0.02791397 -0.02457846 0.015421282 0.028363535 -0.004938171 -0.027643016 -0.0025196134 0.025060294 0.0073578074 -0.02202296 -0.010275246; 0.004607553 -0.022340853 -0.009752829 0.021571387 0.01632253 -0.01821048 -0.023760376 0.010553268 0.03010992 0.0030008615 -0.030856555 -0.021700444 0.018640542 0.037232827 0.011307625 -0.028860014 -0.041850146 -0.018370457 0.019078122 0.044404335 0.047949914 0.03569885 0.018552657 0.004483572 -0.0029945923 -0.0029945923 0.004483572 0.018552657 0.03569885 0.047949914 0.044404335 0.019078122 -0.018370457 -0.041850146 -0.028860014 0.011307625 0.037232827 0.018640542 -0.021700444 -0.030856555 0.0030008615 0.03010992 0.010553268 -0.023760376 -0.01821048 0.01632253 0.021571387 -0.009752829 -0.022340853 0.004607553; 0.017758792 -0.011531194 -0.02202296 0.0057866937 0.025448654 0.0030911886 -0.026004659 -0.014983789 0.020410376 0.027328702 -0.0051006 -0.032672733 -0.019195296 0.018640542 0.037471216 0.018718105 -0.017741356 -0.040834147 -0.03684499 -0.013475913 0.013660335 0.03378541 0.044404335 0.04821337 0.04896043 0.04896043 0.04821337 0.044404335 0.03378541 0.013660335 -0.013475913 -0.03684499 -0.040834147 -0.017741356 0.018718105 0.037471216 0.018640542 -0.019195296 -0.032672733 -0.0051006 0.027328702 0.020410376 -0.014983789 -0.026004659 0.0030911886 0.025448654 0.0057866937 -0.02202296 -0.011531194 0.017758792; 0.021745134 0.0059259734 -0.02123587 -0.013771146 0.017295567 0.02204173 -0.008111451 -0.027686333 -0.007080706 0.025052788 0.024774984 -0.00779734 -0.032672733 -0.021700444 0.012336447 0.035972595 0.0303842 0.0032108692 -0.025390638 -0.040834147 -0.040735193 -0.030835731 -0.018370457 -0.008308188 -0.0029350128 -0.0029350128 -0.008308188 -0.018370457 -0.030835731 -0.040735193 -0.040834147 -0.025390638 0.0032108692 0.0303842 0.035972595 0.012336447 -0.021700444 -0.032672733 -0.00779734 0.024774984 0.025052788 -0.007080706 -0.027686333 -0.008111451 0.02204173 0.017295567 -0.013771146 -0.02123587 0.0059259734 0.021745134; 0.012907425 0.019776234 -0.0063286326 -0.023556776 -0.003761453 0.023177419 0.01632253 -0.015092727 -0.026906032 -0.002752221 0.026317645 0.024774984 -0.0051006 -0.030856555 -0.02791397 -0.0009751506 0.026968254 0.037471216 0.027931985 0.0073250216 -0.013660373 -0.028860014 -0.037285123 -0.040834147 -0.041883763 -0.041883763 -0.040834147 -0.037285123 -0.028860014 -0.013660373 0.0073250216 0.027931985 0.037471216 0.026968254 -0.0009751506 -0.02791397 -0.030856555 -0.0051006 0.024774984 0.026317645 -0.002752221 -0.026906032 -0.015092727 0.01632253 0.023177419 -0.003761453 -0.023556776 -0.0063286326 0.019776234 0.012907425; -0.0043828883 0.01996853 0.013121961 -0.015050851 -0.021439139 0.0041983086 0.025149748 0.011818511 -0.01821048 -0.026342064 -0.002752221 0.025052788 0.027328702 0.0030008615 -0.02457846 -0.033239134 -0.019195296 0.0057160426 0.026968254 0.036831126 0.03561581 0.027931985 0.018718105 0.011307625 0.0073250216 0.0073250216 0.011307625 0.018718105 0.027931985 0.03561581 0.036831126 0.026968254 0.0057160426 -0.019195296 -0.033239134 -0.02457846 0.0030008615 0.027328702 0.025052788 -0.002752221 -0.026342064 -0.01821048 0.011818511 0.025149748 0.0041983086 -0.021439139 -0.015050851 0.013121961 0.01996853 -0.0043828883; -0.01849501 0.005147335 0.021952132 0.0059259734 -0.019813443 -0.01823278 0.008904703 0.025465608 0.010175026 -0.01821048 -0.026906032 -0.007080706 0.020410376 0.03010992 0.015421282 -0.010459127 -0.02959776 -0.032709654 -0.021700444 -0.0042727594 0.012336447 0.024382586 0.03142887 0.034773786 0.035972595 0.035972595 0.034773786 0.03142887 0.024382586 0.012336447 -0.0042727594 -0.021700444 -0.032709654 -0.02959776 -0.010459127 0.015421282 0.03010992 0.020410376 -0.007080706 -0.026906032 -0.01821048 0.010175026 0.025465608 0.008904703 -0.01823278 -0.019813443 0.0059259734 0.021952132 0.005147335 -0.01849501; -0.01821551 -0.013675589 0.011885626 0.021153133 0.00053816737 -0.021829521 -0.016144805 0.010420457 0.025465608 0.011818511 -0.015092727 -0.027686333 -0.014983789 0.010553268 0.028363535 0.027328702 0.010720332 -0.010459127 -0.026443673 -0.03320884 -0.03190887 -0.026074685 -0.019195296 -0.013639531 -0.0106311785 -0.0106311785 -0.013639531 -0.019195296 -0.026074685 -0.03190887 -0.03320884 -0.026443673 -0.010459127 0.010720332 0.027328702 0.028363535 0.010553268 -0.014983789 -0.027686333 -0.015092727 0.011818511 0.025465608 0.010420457 -0.016144805 -0.021829521 0.00053816737 0.021153133 0.011885626 -0.013675589 -0.01821551; -0.0028386945 -0.020292958 -0.008836244 0.01572661 0.019776234 -0.0022211075 -0.022340853 -0.016144805 0.008904703 0.025149748 0.01632253 -0.008111451 -0.026004659 -0.023760376 -0.004938171 0.01672277 0.029127557 0.028320584 0.017591644 0.0030008615 -0.010459127 -0.020355383 -0.026443673 -0.02959776 -0.030856555 -0.030856555 -0.02959776 -0.026443673 -0.020355383 -0.010459127 0.0030008615 0.017591644 0.028320584 0.029127557 0.01672277 -0.004938171 -0.023760376 -0.026004659 -0.008111451 0.01632253 0.025149748 0.008904703 -0.016144805 -0.022340853 -0.0022211075 0.019776234 0.01572661 -0.008836244 -0.020292958 -0.0028386945; 0.014794203 -0.007983783 -0.020499296 -0.0055319495 0.017367473 0.019172816 -0.0022211075 -0.021829521 -0.01823278 0.0041983086 0.023177419 0.02204173 0.0030911886 -0.01821048 -0.027643016 -0.021332711 -0.004938171 0.012677243 0.025052788 0.030102573 0.029116414 0.024774984 0.01962374 0.015421282 0.013126016 0.013126016 0.015421282 0.01962374 0.024774984 0.029116414 0.030102573 0.025052788 0.012677243 -0.004938171 -0.021332711 -0.027643016 -0.01821048 0.0030911886 0.02204173 0.023177419 0.0041983086 -0.01823278 -0.021829521 -0.0022211075 0.019172816 0.017367473 -0.0055319495 -0.020499296 -0.007983783 0.014794203; 0.018204566 0.011865951 -0.010859349 -0.020232828 -0.0043828883 0.017367473 0.019776234 0.00053816737 -0.019813443 -0.021439139 -0.003761453 0.017295567 0.025448654 0.01632253 -0.0025196134 -0.01964465 -0.027450264 -0.024766387 -0.014983789 -0.002752221 0.0083798645 0.01672277 0.02208823 0.025052788 0.026317645 0.026317645 0.025052788 0.02208823 0.01672277 0.0083798645 -0.002752221 -0.014983789 -0.024766387 -0.027450264 -0.01964465 -0.0025196134 0.01632253 0.025448654 0.017295567 -0.003761453 -0.021439139 -0.019813443 0.00053816737 0.019776234 0.017367473 -0.0043828883 -0.020232828 -0.010859349 0.011865951 0.018204566; 0.0035321028 0.018966619 0.010184294 -0.011765145 -0.020232828 -0.0055319495 0.01572661 0.021153133 0.0059259734 -0.015050851 -0.023556776 -0.013771146 0.0057866937 0.021571387 0.025060294 0.01632253 0.0012344558 -0.013426791 -0.023349408 -0.027450264 -0.026906032 -0.023760376 -0.01992189 -0.016739573 -0.014983789 -0.014983789 -0.016739573 -0.01992189 -0.023760376 -0.026906032 -0.027450264 -0.023349408 -0.013426791 0.0012344558 0.01632253 0.025060294 0.021571387 0.0057866937 -0.013771146 -0.023556776 -0.015050851 0.0059259734 0.021153133 0.01572661 -0.0055319495 -0.020232828 -0.011765145 0.010184294 0.018966619 0.0035321028; -0.01444247 0.0053719264 0.019123144 0.010184294 -0.010859349 -0.020499296 -0.008836244 0.011885626 0.021952132 0.013121961 -0.0063286326 -0.02123587 -0.02202296 -0.009752829 0.0073578074 0.020627826 0.025465608 0.02204173 0.01339554 0.0030911886 -0.006265444 -0.013426791 -0.01821048 -0.020984437 -0.02222187 -0.02222187 -0.020984437 -0.01821048 -0.013426791 -0.006265444 0.0030911886 0.01339554 0.02204173 0.025465608 0.020627826 0.0073578074 -0.009752829 -0.02202296 -0.02123587 -0.0063286326 0.013121961 0.021952132 0.011885626 -0.008836244 -0.020499296 -0.010859349 0.010184294 0.019123144 0.0053719264 -0.01444247; -0.016259726 -0.01387697 0.0053719264 0.018966619 0.011865951 -0.007983783 -0.020292958 -0.013675589 0.005147335 0.01996853 0.019776234 0.0059259734 -0.011531194 -0.022340853 -0.02202296 -0.012487909 0.0009974638 0.013331175 0.021571387 0.025149748 0.025060294 0.022873841 0.020053614 0.017659774 0.01632253 0.01632253 0.017659774 0.020053614 0.022873841 0.025060294 0.025149748 0.021571387 0.013331175 0.0009974638 -0.012487909 -0.02202296 -0.022340853 -0.011531194 0.0059259734 0.019776234 0.01996853 0.005147335 -0.013675589 -0.020292958 -0.007983783 0.011865951 0.018966619 0.0053719264 -0.01387697 -0.016259726; 0.00035131577 -0.016259726 -0.01444247 0.0035321028 0.018204566 0.014794203 -0.0028386945 -0.01821551 -0.01849501 -0.0043828883 0.012907425 0.021745134 0.017758792 0.004607553 -0.010275246 -0.020562788 -0.023556776 -0.020005507 -0.012487909 -0.003761453 0.0041983086 0.010420457 0.0147127 0.017295567 0.018484462 0.018484462 0.017295567 0.0147127 0.010420457 0.0041983086 -0.003761453 -0.012487909 -0.020005507 -0.023556776 -0.020562788 -0.010275246 0.004607553 0.017758792 0.021745134 0.012907425 -0.0043828883 -0.01849501 -0.01821551 -0.0028386945 0.014794203 0.018204566 0.0035321028 -0.01444247 -0.016259726 0.00035131577]), 0x0000000000006afc)
┌ Warning: Example Animated surface and wireframe failed
│ exception =
│ LoadError: No overload for Surface{...} and also no overload for trait AbstractPlotting.SurfaceLike() found! Arguments: (Float64, Float64, Array{Float32,2})
│ in expression starting at animated_surface_and_wireframe:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
scene = Scene();
function xy_data(x, y)
r = sqrt(x^2 + y^2)
r == 0.0 ? 1f0 : (sin(r)/r)
end
r = range(-2, stop = 2, length = 50)
surf_func(i) = [Float32(xy_data(x*i, y*i)) for x = r, y = r]
z = surf_func(20)
surf = surface!(scene, r, r, z)[end]
wf = wireframe!(scene, r, r, lift(x-> x .+ 1.0, surf[3]),
linewidth = 2f0, color = lift(x-> to_colormap(x)[5], surf[:colormap])
)
N = 150
scene
record(scene, "/home/pkgeval/.julia/packages/GLMakie/tywRm/test/test_recordings/tmp/animated_surface_and_wireframe.mp4", range(5, stop = 40, length = N)) do i
surf[3] = surf_func(i)
end
Running animated_surface_and_wireframe
┌ Warning: Error thrown when evaluating Animated surface and wireframe
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:38
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:47
│ ...
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/io.jl:325
Animated surface and wireframe: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326
Expression: false
Stacktrace:
[1] macro expansion at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:326 [inlined]
[2] macro expansion at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1113 [inlined]
[3] (::MakieGallery.var"#116#118"{Tuple{Int64,Int64},String,Array{Any,1}})(::MakieGallery.CellEntry, ::Nothing) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:315
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/pH553/src/ticks.jl:247
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf]
Running normals_of_a_cat
Running sphere_mesh
┌ Warning: `a::StaticArray - b::Number` is deprecated, use `a .- b` instead.
│ caller = _broadcast_getindex_evalf at broadcast.jl:631 [inlined]
└ @ Core ./broadcast.jl:631
Running stars
Running unicode_marker
Running merged_color_mesh
Running moire
┌ Warning: Example Line GIF failed
│ exception =
│ LoadError: UndefVarError: lineplots not defined
│ in expression starting at line_gif:1
└ @ MakieGallery ~/.julia/packages/MakieGallery/9sGif/src/database.jl:545
with source:
using GLMakie, AbstractPlotting
us = range(0, stop = 1, length = 100)
scene = Scene()
scene = linesegments!(scene, FRect3D(Vec3f0(0, -1, 0), Vec3f0(1, 2, 2)))
p = lines!(scene, us, sin.(us .+ time()), zeros(100), linewidth = 3, transparency = true)[end]
lineplots = [p]
translate!(p, 0, 0, 0)
colors = to_colormap(:RdYlBu)
#display(scene) # would be needed without the record
N = 150
path = record(scene, "test.gif", 1:N) do i
global lineplots, scene
if length(lineplots) < 20
p = lines!(
scene,
us, sin.(us .+ time()), zeros(100),
color = colors[length(lineplots)],
linewidth = 3
)[end]
pushfirst!(lineplots, p)
translate!(p, 0, 0, 0)
else
lineplots = circshift(lineplots, 1)
lp = first(lineplots)
lp[2] = sin.(us .+ time())
translate!(lp, 0, 0, 0)
end
for lp in Iterators.drop(lineplots, 1)
z = translation(lp)[][3]
translate!(lp, 0, 0, z + 0.1)
end
end
path
Running line_gif
┌ Warning: Error thrown when evaluating Line GIF
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/9sGif/src/io.jl:32