-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLAnklePitch-ch.txt
1373 lines (1373 loc) · 50.9 KB
/
LAnklePitch-ch.txt
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
3
128 124 186
0.029381999745965 0.01210200041532516 -0.01214199978858232
0.029381999745965 0.01439299993216991 -0.009402000345289707
0.029381999745965 -0.01407700031995773 -0.009402000345289707
0.029381999745965 -0.01178599987179041 -0.01214199978858232
0.029381999745965 -0.006306000053882599 -0.01580400019884109
0.029381999745965 0.006622000131756067 -0.01580400019884109
0.029381999745965 0.0001579999952809885 -0.01709000021219254
-0.03111699968576431 -0.01178599987179041 -0.01214199978858232
-0.03111699968576431 -0.01407700031995773 -0.009402000345289707
-0.03111699968576431 0.01439299993216991 -0.009402000345289707
-0.03111699968576431 0.01210200041532516 -0.01214199978858232
-0.03111699968576431 0.006622000131756067 -0.01580400019884109
-0.03111699968576431 -0.006306000053882599 -0.01580400019884109
-0.03111699968576431 0.0001579999952809885 -0.01709000021219254
0.02102000080049038 0.01441700011491776 0.03795300051569939
-0.01314400043338537 0.01441700011491776 0.04039600118994713
-0.001677999971434474 0.01441700011491776 0.04289000108838081
0.03041400015354156 0.01441700011491776 0.03092099912464619
-0.02344200015068054 0.01441700011491776 0.03477299958467484
0.03534499928355217 0.01441700011491776 0.02522699907422066
-0.0317390002310276 0.01441700011491776 0.02647499926388264
0.029381999745965 0.01441700011491776 0.008597999811172485
0.029381999745965 -0.014100999571383 0.008597999811172485
-0.03111699968576431 -0.014100999571383 0.008597999811172485
-0.04284900054335594 0.01175799965858459 0.008328000083565712
-0.03995700180530548 0.01441700011491776 0.008328000083565712
-0.03995700180530548 -0.014100999571383 0.008328000083565712
0.029381999745965 0.01441700011491776 0.008597999811172485
-0.03111699968576431 0.01441700011491776 0.008597999811172485
-0.03111699968576431 0.01441700011491776 0.01559800002723932
-0.03111699968576431 -0.014100999571383 0.008597999811172485
0.029381999745965 -0.014100999571383 0.008597999811172485
0.029381999745965 -0.014100999571383 0.01559800002723932
0.029381999745965 0.01441700011491776 0.01559800002723932
-0.03995700180530548 0.01441700011491776 0.008328000083565712
-0.03111699968576431 0.01441700011491776 0.008597999811172485
-0.03111699968576431 -0.014100999571383 0.008597999811172485
-0.03736300021409988 0.01441700011491776 0.01617700047791004
-0.03111699968576431 -0.014100999571383 0.01559800002723932
-0.03736300021409988 -0.014100999571383 0.01617700047791004
0.029381999745965 0.01441700011491776 0.01559800002723932
0.03879699856042862 0.01441700011491776 0.01899199932813644
0.03879699856042862 -0.014100999571383 0.01459299959242344
0.03879699856042862 -0.014100999571383 0.01899199932813644
-0.03173999860882759 -0.014100999571383 0.02647499926388264
0.03534499928355217 -0.014100999571383 0.02522699907422066
0.03041400015354156 -0.014100999571383 0.03092099912464619
-0.02344200015068054 -0.014100999571383 0.03477299958467484
0.02102000080049038 -0.014100999571383 0.03795300051569939
0.0100260004401207 -0.014100999571383 0.04205299913883209
-0.001677999971434474 -0.014100999571383 0.04289000108838081
0.0100260004401207 0.01441700011491776 0.04205299913883209
-0.03111699968576431 0.01441700011491776 0.008597999811172485
-0.04284900054335594 -0.01234200038015842 0.008328000083565712
0.029381999745965 -0.014100999571383 0.01559800002723932
-0.03995700180530548 -0.014100999571383 0.008328000083565712
-0.03995700180530548 0.01441700011491776 0.008328000083565712
-0.03995700180530548 -0.014100999571383 0.008328000083565712
0.03879699856042862 0.01441700011491776 0.01459299959242344
-0.01314400043338537 -0.014100999571383 0.04039600118994713
0.04128199815750122 0.01175799965858459 0.01450200006365776
0.04128199815750122 0.01175799965858459 0.01920199953019619
0.04128199815750122 -0.01234200038015842 0.01920199953019619
0.02229099906980991 0.01175799965858459 0.03945900127291679
0.02229099906980991 -0.01234200038015842 0.03945900127291679
0.03232600167393684 -0.01234200038015842 0.03194599971175194
0.01054500043392181 -0.01234200038015842 0.04383999854326248
-0.001960000023245811 -0.01234200038015842 0.04473400115966797
0.01054500043392181 0.01175799965858459 0.04383999854326248
-0.01420900039374828 0.01175799965858459 0.04206899926066399
-0.01420900039374828 -0.01234200038015842 0.04206899926066399
-0.0252119991928339 0.01175799965858459 0.03606100007891655
-0.0252119991928339 -0.01234200038015842 0.03606100007891655
-0.0340769998729229 -0.01234200038015842 0.02719699963927269
-0.04008400067687035 0.01175799965858459 0.01619400084018707
-0.04008400067687035 -0.01234200038015842 0.01619400084018707
-0.04284900054335594 -0.01234200038015842 0.008328000083565712
0.03232600167393684 0.01175799965858459 0.03194599971175194
0.03773900121450424 -0.01234200038015842 0.02560999989509583
0.03773900121450424 0.01175799965858459 0.02560999989509583
0.03879699856042862 0.01441700011491776 0.01459299959242344
0.03879699856042862 0.01441700011491776 0.01899199932813644
0.03041400015354156 0.01441700011491776 0.03092099912464619
0.02102000080049038 0.01441700011491776 0.03795300051569939
0.0100260004401207 0.01441700011491776 0.04205299913883209
-0.001677999971434474 0.01441700011491776 0.04289000108838081
-0.001960000023245811 0.01175799965858459 0.04473400115966797
-0.01314400043338537 0.01441700011491776 0.04039600118994713
-0.02344200015068054 0.01441700011491776 0.03477299958467484
-0.0317390002310276 0.01441700011491776 0.02647499926388264
-0.0340769998729229 0.01175799965858459 0.02719699963927269
-0.03736300021409988 0.01441700011491776 0.01617700047791004
-0.03995700180530548 0.01441700011491776 0.008328000083565712
0.03534499928355217 0.01441700011491776 0.02522699907422066
-0.03111699968576431 0.006622000131756067 -0.01580400019884109
-0.03111699968576431 0.01210200041532516 -0.01214199978858232
0.029381999745965 0.01210200041532516 -0.01214199978858232
-0.03111699968576431 0.0001579999952809885 -0.01709000021219254
0.029381999745965 0.006622000131756067 -0.01580400019884109
-0.03111699968576431 -0.006306000053882599 -0.01580400019884109
0.029381999745965 0.0001579999952809885 -0.01709000021219254
-0.03111699968576431 -0.01178599987179041 -0.01214199978858232
0.029381999745965 -0.006306000053882599 -0.01580400019884109
-0.03111699968576431 0.01439299993216991 -0.009402000345289707
0.029381999745965 0.01439299993216991 -0.009402000345289707
-0.03111699968576431 -0.01407700031995773 -0.009402000345289707
0.029381999745965 -0.01178599987179041 -0.01214199978858232
0.04128199815750122 -0.01234200038015842 0.01450200006365776
0.03879699856042862 -0.014100999571383 0.01899199932813644
0.03041400015354156 -0.014100999571383 0.03092099912464619
0.03534499928355217 -0.014100999571383 0.02522699907422066
0.02102000080049038 -0.014100999571383 0.03795300051569939
0.0100260004401207 -0.014100999571383 0.04205299913883209
-0.001677999971434474 -0.014100999571383 0.04289000108838081
-0.01314400043338537 -0.014100999571383 0.04039600118994713
-0.02344200015068054 -0.014100999571383 0.03477299958467484
-0.03173999860882759 -0.014100999571383 0.02647499926388264
-0.03736300021409988 -0.014100999571383 0.01617700047791004
-0.03995700180530548 -0.014100999571383 0.008328000083565712
0.029381999745965 -0.01407700031995773 -0.009402000345289707
0.04128199815750122 0.01175799965858459 0.01450200006365776
0.04128199815750122 -0.01234200038015842 0.01450200006365776
0.03879699856042862 -0.014100999571383 0.01459299959242344
0.029381999745965 -0.014100999571383 0.01559800002723932
0.029381999745965 0.01441700011491776 0.01559800002723932
-0.04284900054335594 0.01175799965858459 0.008328000083565712
0.03879699856042862 -0.014100999571383 0.01459299959242344
0.03879699856042862 0.01441700011491776 0.01459299959242344
3 2 26 22
3 5 6 60
3 6 121 60
3 4 121 6
3 76 13 24
3 2 8 26
3 8 76 26
3 77 19 79
3 1 0 60
3 0 5 60
3 13 94 24
3 121 106 2
3 106 121 4
3 70 115 72
3 42 2 22
3 42 121 2
3 66 50 67
3 46 64 65
3 45 46 65
3 115 73 72
3 76 99 13
3 34 9 1
3 9 34 24
3 68 14 63
3 68 86 16
3 10 9 24
3 94 10 24
3 59 115 70
3 59 70 67
3 50 59 67
3 78 45 65
3 43 78 62
3 78 43 45
3 48 66 64
3 46 48 64
3 116 73 115
3 8 7 76
3 7 99 76
3 18 69 71
3 90 18 71
3 20 18 90
3 27 34 1
3 37 74 24
3 34 37 24
3 74 37 90
3 37 20 90
3 51 68 16
3 51 14 68
3 82 77 63
3 14 82 63
3 77 82 19
3 66 112 50
3 48 112 66
3 39 75 73
3 116 39 73
3 75 39 76
3 76 39 26
3 18 15 69
3 15 86 69
3 86 15 16
3 127 27 1
3 127 1 60
3 41 61 79
3 19 41 79
3 77 64 63
3 64 77 65
3 5 94 6
3 94 13 6
3 70 72 71
3 69 70 71
3 62 61 60
3 121 62 60
3 64 66 63
3 66 68 63
3 72 73 71
3 73 90 71
3 13 99 6
3 99 4 6
3 66 86 68
3 86 66 67
3 86 70 69
3 70 86 67
3 10 0 1
3 9 10 1
3 10 94 5
3 0 10 5
3 77 78 65
3 78 77 79
3 62 78 61
3 61 78 79
3 43 62 121
3 42 43 121
3 74 75 24
3 75 76 24
3 73 75 90
3 75 74 90
3 106 7 2
3 7 8 2
3 99 7 4
3 7 106 4
3 59 39 115
3 26 39 22
3 39 46 45
3 39 48 46
3 39 42 22
3 39 43 42
3 39 59 50
3 43 39 45
3 39 116 115
3 39 112 48
3 112 39 50
3 51 41 14
3 27 41 34
3 41 18 20
3 41 37 34
3 41 82 14
3 41 15 18
3 37 41 20
3 41 51 16
3 82 41 19
3 15 41 16
3 127 41 27
3 61 41 60
3 41 127 60
Vertices and facets:
- p2(v10): 0.029 -0.014 -0.0094
neighbors: f26 f98 f132 f151 f152 f338 f339
- p26(v7): -0.04 -0.014 0.0083
neighbors: f26 f98 f99 f260 f347
- p22(v2): 0.029 -0.014 0.0086
neighbors: f26 f151 f347 f350
- p5(v16): 0.029 0.0066 -0.016
neighbors: f49 f124 f278 f314 f316
- p6(v5): 0.029 0.00016 -0.017
neighbors: f49 f67 f68 f278 f279 f298 f299
- p60(v1): 0.041 0.012 0.015
neighbors: f49 f67 f123 f124 f267 f286 f287 f372 f374
- p121(v19): 0.041 -0.012 0.015
neighbors: f67 f68 f132 f133 f152 f287 f326 f328
- p4(v18): 0.029 -0.0063 -0.016
neighbors: f68 f133 f299 f342 f344
- p76(v25): -0.043 -0.012 0.0083
neighbors: f93 f99 f174 f229 f230 f259 f260 f331
- p13(v13): -0.031 0.00016 -0.017
neighbors: f93 f128 f174 f279 f298
- p24(v0): -0.043 0.012 0.0083
neighbors: f93 f128 f189 f203 f204 f241 f242 f330 f331
- p8(v26): -0.031 -0.014 -0.0094
neighbors: f98 f99 f229 f339
- p77(v30): 0.032 0.012 0.032
neighbors: f121 f249 f252 f274 f275 f318 f319
- p19(v28): 0.035 0.014 0.025
neighbors: f121 f252 f273 f367
- p79(v14): 0.038 0.012 0.026
neighbors: f121 f272 f273 f319 f324
- p0(v31): 0.029 0.012 -0.012
neighbors: f123 f124 f310 f316
- p1(v9): 0.029 0.014 -0.0094
neighbors: f123 f186 f240 f266 f267 f310 f311
- p94(v32): -0.031 0.0066 -0.016
neighbors: f128 f204 f278 f279 f314
- p106(v33): 0.029 -0.012 -0.012
neighbors: f132 f133 f338 f344
- p115(v35): -0.023 -0.014 0.035
neighbors: f143 f171 f206 f226 f346 f354
- p70(v34): -0.014 -0.012 0.042
neighbors: f143 f206 f207 f282 f283 f306 f308
- p72(v22): -0.025 -0.012 0.036
neighbors: f143 f171 f282 f294
- p42(v37): 0.039 -0.014 0.015
neighbors: f151 f152 f328 f350 f351
- p66(v38): 0.011 -0.012 0.044
neighbors: f155 f217 f254 f255 f290 f291 f302 f303
- p50(v12): -0.0017 -0.014 0.043
neighbors: f155 f208 f254 f352 f356
- p67(v3): -0.002 -0.012 0.045
neighbors: f155 f207 f208 f303 f308
- p46(v39): 0.03 -0.014 0.031
neighbors: f162 f163 f218 f348 f349
- p64(v24): 0.022 -0.012 0.039
neighbors: f162 f217 f218 f274 f275 f290
- p65(v8): 0.032 -0.012 0.032
neighbors: f162 f163 f211 f275 f318
- p45(v23): 0.035 -0.014 0.025
neighbors: f163 f211 f216 f348 f353
- p73(v41): -0.034 -0.012 0.027
neighbors: f171 f226 f256 f257 f294 f295 f334
- p99(v42): -0.031 -0.0063 -0.016
neighbors: f174 f230 f298 f299 f342
- p34(v44): -0.04 0.014 0.0083
neighbors: f186 f189 f240 f242 f360 f362
- p9(v17): -0.031 0.014 -0.0094
neighbors: f186 f189 f203 f311
- p14(v45): 0.021 0.014 0.038
neighbors: f193 f248 f250 f359 f363
- p68(v29): 0.011 0.012 0.044
neighbors: f193 f198 f247 f248 f291 f302
- p63(v15): 0.022 0.012 0.039
neighbors: f193 f249 f250 f274 f290 f291
- p86(v46): -0.002 0.012 0.045
neighbors: f198 f263 f264 f302 f303 f306 f308
- p16(v6): -0.0017 0.014 0.043
neighbors: f198 f247 f264 f366 f368
- p10(v47): -0.031 0.012 -0.012
neighbors: f203 f204 f310 f311 f314 f316
- p59(v48): -0.013 -0.014 0.04
neighbors: f206 f207 f208 f346 f352
- p78(v49): 0.038 -0.012 0.026
neighbors: f211 f215 f216 f318 f319 f322 f324
- p43(v50): 0.039 -0.014 0.019
neighbors: f215 f216 f326 f328 f351 f353
- p62(v36): 0.041 -0.012 0.019
neighbors: f215 f286 f287 f322 f326
- p48(v51): 0.021 -0.014 0.038
neighbors: f217 f218 f255 f349 f355
- p116(v53): -0.032 -0.014 0.026
neighbors: f226 f257 f354
- p7(v54): -0.031 -0.012 -0.012
neighbors: f229 f230 f338 f339 f342 f344
- p18(v55): -0.023 0.014 0.035
neighbors: f234 f236 f237 f262 f361 f364
- p69(v20): -0.014 0.012 0.042
neighbors: f234 f262 f263 f283 f306
- p71(v11): -0.025 0.012 0.036
neighbors: f234 f236 f282 f283 f294 f295
- p90(v21): -0.034 0.012 0.027
neighbors: f236 f237 f244 f245 f295 f334 f336
- p20(v43): -0.032 0.014 0.026
neighbors: f237 f245 f361 f365
- p27(v56): 0.029 0.014 0.0086
neighbors: f240 f266 f360 f369
- p37(v57): -0.037 0.014 0.016
neighbors: f241 f242 f244 f245 f362 f365
- p74(v40): -0.04 0.012 0.016
neighbors: f241 f244 f330 f336
- p51(v58): 0.01 0.014 0.042
neighbors: f247 f248 f359 f366
- p82(v59): 0.03 0.014 0.031
neighbors: f249 f250 f252 f363 f367
- p112(v60): 0.01 -0.014 0.042
neighbors: f254 f255 f355 f356
- p39(v61): -0.037 -0.014 0.016
neighbors: f256 f257 f259 f260 f346 f347 f348 f349 f350 f351 f352 f353 f354 f355 f356
- p75(v52): -0.04 -0.012 0.016
neighbors: f256 f259 f330 f331 f334 f336
- p15(v62): -0.013 0.014 0.04
neighbors: f262 f263 f264 f364 f368
- p127(v63): 0.039 0.014 0.015
neighbors: f266 f267 f369 f374
- p41(v64): 0.039 0.014 0.019
neighbors: f272 f273 f359 f360 f361 f362 f363 f364 f365 f366 f367 f368 f369 f372 f374
- p61(v27): 0.041 0.012 0.019
neighbors: f272 f286 f322 f324 f372
- f26
- flags: top simplicial seen
- normal: 5.192e-06 -1 -0.001333
- offset: -0.01408968
- center: 0.006268999228874843 -0.01409299982090791 0.002507999849816164
- vertices: p2(v10) p26(v7) p22(v2)
- neighboring facets: f347 f151 f98
- ridges:
- f49
- flags: top simplicial seen
- normal: 0.9238 0.07469 -0.3754
- offset: -0.03357199
- center: 0.03334866588314375 0.006179333261873883 -0.006130666782458623
- vertices: p5(v16) p6(v5) p60(v1)
- neighboring facets: f67 f124 f278
- ridges:
- f67
- flags: bottom simplicial seen
- normal: 0.9358 -0 -0.3525
- offset: -0.03352024
- center: 0.03731533202032249 -0.0001420002420976137 0.003971333305040994
- vertices: p121(v19) p6(v5) p60(v1)
- neighboring facets: f49 f287 f68
- ridges:
- f68
- flags: bottom simplicial seen
- normal: 0.923 -0.07508 -0.3774
- offset: -0.03355746
- center: 0.03334866588314374 -0.006163333479586679 -0.006130666782458621
- vertices: p121(v19) p4(v18) p6(v5)
- neighboring facets: f299 f67 f133
- ridges:
- f93
- flags: top simplicial seen
- normal: -0.908 0 -0.4191
- offset: -0.03541473
- center: -0.0389383335908254 -0.0001420002420976137 -0.0001446666816870381
- vertices: p76(v25) p13(v13) p24(v0)
- neighboring facets: f128 f331 f174
- ridges:
- f98
- flags: bottom simplicial seen
- normal: 0 -1 -0.001354
- offset: -0.01408971
- center: -0.01389733391503493 -0.01408500007043282 -0.003492000202337901
- vertices: p8(v26) p2(v10) p26(v7)
- neighboring facets: f26 f99 f339
- ridges:
- f99
- flags: top simplicial
- normal: -0.5029 -0.8268 -0.2519
- offset: -0.02965621
- center: -0.03797433401147524 -0.01350666675716639 0.002417999940613905
- vertices: p8(v26) p76(v25) p26(v7)
- neighboring facets: f260 f98 f229
- f121
- flags: top simplicial tested seen
- normal: 0.6001 0.6141 0.5126
- offset: -0.04299521
- center: 0.03513666739066442 0.01264433314402898 0.02759433289368947
- vertices: p77(v30) p19(v28) p79(v14)
- neighboring facets: f273 f319 f252
- ridges:
- f123
- flags: bottom simplicial seen
- normal: 0.8247 0.4338 -0.3628
- offset: -0.03388732
- center: 0.03334866588314375 0.01275100000202656 -0.00234733335673809
- vertices: p0(v31) p1(v9) p60(v1)
- neighboring facets: f267 f124 f310
- ridges:
- f124
- flags: top simplicial seen
- normal: 0.8826 0.2612 -0.3908
- offset: -0.03383969
- center: 0.03334866588314375 0.01016066673522194 -0.004481333307921886
- vertices: p0(v31) p5(v16) p60(v1)
- neighboring facets: f49 f123 f316
- ridges:
- f128
- flags: bottom simplicial tested seen
- normal: -0.8881 0.08969 -0.4508
- offset: -0.03535363
- center: -0.03502766663829485 0.006179333261873883 -0.008188666775822639
- vertices: p94(v32) p13(v13) p24(v0)
- neighboring facets: f93 f204 f279
- ridges:
- f132
- flags: bottom simplicial seen
- normal: 0.8138 -0.4458 -0.3728
- offset: -0.03369193
- center: 0.03334866588314374 -0.01273500019063552 -0.002347333356738088
- vertices: p106(v33) p121(v19) p2(v10)
- neighboring facets: f152 f338 f133
- ridges:
- f133
- flags: top simplicial seen
- normal: 0.8781 -0.2658 -0.3978
- offset: -0.03376396
- center: 0.03334866588314374 -0.01014466676861048 -0.004481333307921885
- vertices: p106(v33) p121(v19) p4(v18)
- neighboring facets: f68 f344 f132
- ridges:
- f143
- flags: bottom simplicial tested seen
- normal: -0.3184 -0.7474 0.5831
- offset: -0.03827998
- center: -0.02095433324575424 -0.01292833344389995 0.03763433297475179
- vertices: p115(v35) p70(v34) p72(v22)
- neighboring facets: f282 f171 f206
- ridges:
- f151
- flags: top simplicial tested seen
- normal: 0.000849 -1 -0.001333
- offset: -0.01411446
- center: 0.03252033268411954 -0.01409299982090791 0.004596333019435406
- vertices: p42(v37) p2(v10) p22(v2)
- neighboring facets: f26 f350 f152
- ridges:
- f152
- flags: top simplicial tested seen
- normal: 0.5582 -0.8 -0.2198
- offset: -0.02973113
- center: 0.03648699882129828 -0.01350666675716639 0.006564333103597163
- vertices: p42(v37) p121(v19) p2(v10)
- neighboring facets: f132 f151 f328
- ridges:
- f155
- flags: top simplicial tested seen
- normal: 0.04957 -0.7189 0.6933
- offset: -0.03979153
- center: 0.002302333479747176 -0.01292833344389995 0.04382133359710375
- vertices: p66(v38) p50(v12) p67(v3)
- neighboring facets: f208 f303 f254
- ridges:
- f162
- flags: top simplicial tested seen
- normal: 0.3996 -0.7453 0.5337
- offset: -0.0391649
- center: 0.02834366696576278 -0.01292833344389995 0.03410866670310497
- vertices: p46(v39) p64(v24) p65(v8)
- neighboring facets: f275 f163 f218
- ridges:
- f163
- flags: bottom simplicial tested seen
- normal: 0.4832 -0.769 0.4184
- offset: -0.03847864
- center: 0.03269500037034353 -0.01351466650764148 0.02936466597020626
- vertices: p46(v39) p45(v23) p65(v8)
- neighboring facets: f211 f162 f348
- ridges:
- f171
- flags: bottom simplicial tested seen
- normal: -0.4462 -0.7757 0.4462
- offset: -0.03691573
- center: -0.02757699973881245 -0.01292833344389995 0.03267699976762136
- vertices: p73(v41) p115(v35) p72(v22)
- neighboring facets: f143 f294 f226
- ridges:
- f174
- flags: bottom simplicial tested seen
- normal: -0.8866 -0.09024 -0.4536
- offset: -0.03532687
- center: -0.03502766663829486 -0.006163333479586679 -0.008188666775822641
- vertices: p99(v42) p76(v25) p13(v13)
- neighboring facets: f93 f298 f230
- ridges:
- f186
- flags: top simplicial tested seen
- normal: 0 1 -0.001354
- offset: -0.01440571
- center: -0.01389733391503493 0.01440099999308586 -0.003492000202337901
- vertices: p34(v44) p9(v17) p1(v9)
- neighboring facets: f311 f240 f189
- ridges:
- f189
- flags: bottom simplicial tested
- normal: -0.6411 0.6973 -0.3206
- offset: -0.03299949
- center: -0.03797433401147525 0.01352266656855742 0.002417999940613903
- vertices: p34(v44) p9(v17) p24(v0)
- neighboring facets: f203 f242 f186
- f193
- flags: bottom simplicial tested seen
- normal: 0.2866 0.5722 0.7684
- offset: -0.04343701
- center: 0.01795200010140736 0.01264433314402898 0.04041733344395955
- vertices: p14(v45) p68(v29) p63(v15)
- neighboring facets: f291 f250 f248
- ridges:
- f198
- flags: bottom simplicial tested seen
- normal: 0.05885 0.5647 0.8232
- offset: -0.04334998
- center: 0.002302333479747176 0.01264433314402898 0.04382133359710375
- vertices: p86(v46) p68(v29) p16(v6)
- neighboring facets: f247 f264 f302
- ridges:
- f203
- flags: top simplicial tested seen
- normal: -0.7522 0.5055 -0.4226
- offset: -0.03465654
- center: -0.03502766663829485 0.01275100000202656 -0.004405333350102109
- vertices: p10(v47) p9(v17) p24(v0)
- neighboring facets: f189 f204 f311
- ridges:
- f204
- flags: bottom simplicial tested seen
- normal: -0.8263 0.3129 -0.4683
- offset: -0.03518507
- center: -0.03502766663829485 0.01016066673522194 -0.006539333301285905
- vertices: p10(v47) p94(v32) p24(v0)
- neighboring facets: f128 f203 f314
- ridges:
- f206
- flags: top simplicial tested seen
- normal: -0.3184 -0.7474 0.5831
- offset: -0.03827976
- center: -0.01693166699260473 -0.01351466650764147 0.03907933334509531
- vertices: p59(v48) p115(v35) p70(v34)
- neighboring facets: f143 f207 f346
- ridges:
- f207
- flags: top simplicial tested seen
- normal: -0.146 -0.7268 0.6712
- offset: -0.03928041
- center: -0.00977100028345982 -0.01292833344389994 0.04239966720342635
- vertices: p59(v48) p70(v34) p67(v3)
- neighboring facets: f308 f208 f206
- ridges:
- f208
- flags: bottom simplicial tested seen
- normal: -0.146 -0.7269 0.6711
- offset: -0.03927666
- center: -0.005594000142688553 -0.01351466650764147 0.04267333447933197
- vertices: p59(v48) p50(v12) p67(v3)
- neighboring facets: f155 f207 f352
- ridges:
- f211
- flags: top simplicial tested seen
- normal: 0.4925 -0.7619 0.4207
- offset: -0.03876362
- center: 0.03513666739066442 -0.01292833344389995 0.02759433289368948
- vertices: p78(v49) p45(v23) p65(v8)
- neighboring facets: f163 f318 f216
- ridges:
- f215
- flags: top simplicial tested seen
- normal: 0.5351 -0.7913 0.2959
- offset: -0.03753734
- center: 0.03927266597747803 -0.01292833344389995 0.02126799958447615
- vertices: p43(v50) p78(v49) p62(v36)
- neighboring facets: f322 f326 f216
- ridges:
- f216
- flags: bottom simplicial tested seen
- normal: 0.5344 -0.7918 0.2959
- offset: -0.03751705
- center: 0.03729366635282835 -0.01351466650764148 0.02327633276581764
- vertices: p43(v50) p78(v49) p45(v23)
- neighboring facets: f211 f353 f215
- ridges:
- f217
- flags: top simplicial tested seen
- normal: 0.2404 -0.7257 0.6447
- offset: -0.03975357
- center: 0.01795200010140737 -0.01292833344389995 0.04041733344395956
- vertices: p48(v51) p66(v38) p64(v24)
- neighboring facets: f290 f218 f255
- ridges:
- f218
- flags: bottom simplicial tested seen
- normal: 0.3994 -0.7455 0.5336
- offset: -0.03915965
- center: 0.02457500000794728 -0.01351466650764147 0.03611100030442079
- vertices: p48(v51) p46(v39) p64(v24)
- neighboring facets: f162 f217 f349
- ridges:
- f226
- flags: top simplicial tested seen
- normal: -0.4461 -0.7758 0.4461
- offset: -0.03691164
- center: -0.02975299954414368 -0.01351466650764147 0.02948166616261005
- vertices: p116(v53) p73(v41) p115(v35)
- neighboring facets: f171 f354 f257
- ridges:
- f229
- flags: bottom simplicial tested seen
- normal: -0.7347 -0.5205 -0.4352
- offset: -0.03427857
- center: -0.03502766663829485 -0.01273500019063552 -0.004405333350102107
- vertices: p7(v54) p8(v26) p76(v25)
- neighboring facets: f99 f230 f339
- ridges:
- f230
- flags: top simplicial tested seen
- normal: -0.8184 -0.3193 -0.4777
- offset: -0.03503077
- center: -0.03502766663829485 -0.01014466676861048 -0.006539333301285903
- vertices: p7(v54) p99(v42) p76(v25)
- neighboring facets: f174 f229 f342
- ridges:
- f234
- flags: top simplicial tested seen
- normal: -0.3845 0.597 0.7041
- offset: -0.04210384
- center: -0.02095433324575424 0.01264433314402898 0.03763433297475179
- vertices: p18(v55) p69(v20) p71(v11)
- neighboring facets: f283 f236 f262
- ridges:
- f236
- flags: bottom simplicial tested seen
- normal: -0.5486 0.6309 0.5486
- offset: -0.04103346
- center: -0.02757699973881244 0.01264433314402898 0.03267699976762135
- vertices: p18(v55) p90(v21) p71(v11)
- neighboring facets: f295 f234 f237
- ridges:
- f237
- flags: bottom simplicial tested seen
- normal: -0.5485 0.6312 0.5484
- offset: -0.0410277
- center: -0.02975266675154368 0.01353066662947337 0.02948166616261005
- vertices: p18(v55) p20(v43) p90(v21)
- neighboring facets: f245 f236 f361
- ridges:
- f240
- flags: top simplicial tested seen
- normal: 5.192e-06 1 -0.001333
- offset: -0.01440568
- center: 0.006268999228874843 0.01440900005400181 0.002507999849816164
- vertices: p27(v56) p34(v44) p1(v9)
- neighboring facets: f186 f266 f360
- ridges:
- f241
- flags: top simplicial tested seen
- normal: -0.678 0.6953 0.2383
- offset: -0.0392127
- center: -0.04009866714477539 0.01264433314402898 0.01356633380055428
- vertices: p37(v57) p74(v40) p24(v0)
- neighboring facets: f330 f242 f244
- ridges:
- f242
- flags: bottom simplicial tested seen
- normal: -0.6605 0.7184 0.2183
- offset: -0.03856682
- center: -0.0400563341875871 0.01353066662947337 0.01094433354834715
- vertices: p37(v57) p34(v44) p24(v0)
- neighboring facets: f189 f241 f362
- ridges:
- f244
- flags: bottom simplicial tested seen
- normal: -0.652 0.6695 0.356
- offset: -0.03977064
- center: -0.03717466692129771 0.01264433314402898 0.01985600031912327
- vertices: p37(v57) p74(v40) p90(v21)
- neighboring facets: f336 f245 f241
- ridges:
- f245
- flags: top simplicial tested seen
- normal: -0.6518 0.6697 0.3559
- offset: -0.03976484
- center: -0.03439300010601679 0.01353066662947337 0.02328299979368846
- vertices: p37(v57) p20(v43) p90(v21)
- neighboring facets: f237 f244 f365
- ridges:
- f247
- flags: top simplicial tested seen
- normal: 0.05887 0.5647 0.8232
- offset: -0.04334905
- center: 0.006297666967536013 0.01353066662947337 0.04292766625682513
- vertices: p51(v58) p68(v29) p16(v6)
- neighboring facets: f198 f366 f248
- ridges:
- f248
- flags: top simplicial tested seen
- normal: 0.2865 0.5723 0.7684
- offset: -0.04343521
- center: 0.0138636672248443 0.01353066662947337 0.04128199939926466
- vertices: p51(v58) p14(v45) p68(v29)
- neighboring facets: f193 f247 f359
- ridges:
- f249
- flags: top simplicial tested seen
- normal: 0.4819 0.5946 0.6436
- offset: -0.0431294
- center: 0.02834366696576278 0.01264433314402899 0.03410866670310498
- vertices: p82(v59) p77(v30) p63(v15)
- neighboring facets: f274 f250 f252
- ridges:
- f250
- flags: bottom simplicial tested seen
- normal: 0.4817 0.5948 0.6436
- offset: -0.04312611
- center: 0.02457500000794728 0.01353066662947336 0.03611100030442078
- vertices: p82(v59) p14(v45) p63(v15)
- neighboring facets: f193 f249 f363
- ridges:
- f252
- flags: bottom simplicial tested seen
- normal: 0.5915 0.6227 0.5122
- offset: -0.04280486
- center: 0.03269500037034353 0.01353066662947337 0.02936466597020626
- vertices: p82(v59) p77(v30) p19(v28)
- neighboring facets: f121 f367 f249
- ridges:
- f254
- flags: bottom simplicial tested seen
- normal: 0.04958 -0.719 0.6933
- offset: -0.03978989
- center: 0.006297666967536013 -0.01351466650764148 0.04292766625682513
- vertices: p112(v60) p66(v38) p50(v12)
- neighboring facets: f155 f356 f255
- ridges:
- f255
- flags: bottom simplicial tested seen
- normal: 0.2404 -0.7258 0.6446
- offset: -0.03975054
- center: 0.0138636672248443 -0.01351466650764147 0.04128199939926466
- vertices: p112(v60) p48(v51) p66(v38)
- neighboring facets: f217 f254 f355
- ridges:
- f256
- flags: top simplicial tested seen
- normal: -0.5194 -0.8061 0.2835
- offset: -0.03535921
- center: -0.03717466692129771 -0.01292833344389995 0.01985600031912327
- vertices: p39(v61) p75(v52) p73(v41)
- neighboring facets: f334 f257 f259
- ridges:
- f257
- flags: bottom simplicial tested seen
- normal: -0.5192 -0.8062 0.2835
- offset: -0.03535544
- center: -0.03439333289861679 -0.01351466650764147 0.02328299979368846
- vertices: p39(v61) p116(v53) p73(v41)
- neighboring facets: f226 f256 f354
- ridges:
- f259
- flags: bottom simplicial tested seen
- normal: -0.5325 -0.8255 0.1872
- offset: -0.03456295
- center: -0.04009866714477539 -0.01292833344389995 0.01356633380055428
- vertices: p39(v61) p75(v52) p76(v25)
- neighboring facets: f331 f260 f256
- ridges:
- f260
- flags: bottom simplicial tested seen
- normal: -0.5122 -0.842 0.1693
- offset: -0.03374764
- center: -0.0400563341875871 -0.01351466650764147 0.01094433354834715
- vertices: p39(v61) p76(v25) p26(v7)
- neighboring facets: f99 f347 f259
- ridges:
- f262
- flags: bottom simplicial tested seen
- normal: -0.3845 0.597 0.7041
- offset: -0.04210371
- center: -0.01693166699260473 0.01353066662947336 0.03907933334509531
- vertices: p15(v62) p18(v55) p69(v20)
- neighboring facets: f234 f263 f364
- ridges:
- f263
- flags: top simplicial tested seen
- normal: -0.1742 0.5734 0.8005
- offset: -0.04289443
- center: -0.009771000283459822 0.01264433314402898 0.04239966720342636
- vertices: p15(v62) p86(v46) p69(v20)
- neighboring facets: f306 f262 f264
- ridges:
- f264
- flags: bottom simplicial tested seen
- normal: -0.1741 0.5736 0.8004
- offset: -0.04289224
- center: -0.005594000142688553 0.01353066662947337 0.04267333447933197
- vertices: p15(v62) p86(v46) p16(v6)
- neighboring facets: f198 f368 f263
- ridges:
- f266
- flags: top simplicial tested seen
- normal: 0.000849 1 -0.001333
- offset: -0.01443046
- center: 0.03252033268411954 0.01440900005400181 0.004596333019435406
- vertices: p127(v63) p27(v56) p1(v9)
- neighboring facets: f240 f267 f369
- ridges:
- f267
- flags: top simplicial tested seen
- normal: 0.6978 0.6616 -0.2745
- offset: -0.03260667
- center: 0.03648699882129828 0.01352266656855742 0.006564333103597164
- vertices: p127(v63) p1(v9) p60(v1)
- neighboring facets: f123 f374 f266
- ridges:
- f272
- flags: top simplicial tested seen
- normal: 0.6648 0.6503 0.3676
- offset: -0.04214908
- center: 0.03927266597747803 0.01264433314402898 0.02126799958447615
- vertices: p41(v64) p61(v27) p79(v14)
- neighboring facets: f324 f273 f372
- ridges:
- f273
- flags: bottom simplicial tested seen
- normal: 0.6641 0.6509 0.3677
- offset: -0.04213476
- center: 0.03729366635282835 0.01353066662947337 0.02327633276581764
- vertices: p41(v64) p19(v28) p79(v14)
- neighboring facets: f121 f272 f367
- ridges:
- f274
- flags: top simplicial tricoplanar seen keepcentrum
- owner of normal & centrum is facet f274
- normal: 0.5993 -0 0.8005
- offset: -0.04494672
- center: 0.02730850037187338 -0.0002920003607869148 0.03570250049233437
- vertices: p77(v30) p64(v24) p63(v15)
- neighboring facets: f290 f249 f275
- f275
- flags: bottom simplicial tricoplanar
- owner of normal & centrum is facet f274
- normal: 0.5993 -0 0.8005
- offset: -0.04494672
- center: 0.02730850037187338 -0.0002920003607869148 0.03570250049233437
- vertices: p77(v30) p64(v24) p65(v8)
- neighboring facets: f162 f318 f274
- f278
- flags: bottom simplicial tricoplanar keepcentrum
- owner of normal & centrum is facet f278
- normal: 0 0.1951 -0.9808
- offset: -0.01679234
- center: -0.0008674999698996544 0.003390000063518528 -0.01644700020551682
- vertices: p94(v32) p5(v16) p6(v5)
- neighboring facets: f49 f279 f314
- f279
- flags: top simplicial tricoplanar seen
- owner of normal & centrum is facet f278
- normal: 0 0.1951 -0.9808
- offset: -0.01679234
- center: -0.0008674999698996544 0.003390000063518528 -0.01644700020551682
- vertices: p94(v32) p13(v13) p6(v5)
- neighboring facets: f298 f278 f128
- f282
- flags: top simplicial tricoplanar seen keepcentrum
- owner of normal & centrum is facet f282
- normal: -0.4792 -0 0.8777
- offset: -0.04373278
- center: -0.01971049979329109 -0.0002920003607869148 0.03906499966979027
- vertices: p70(v34) p72(v22) p71(v11)
- neighboring facets: f294 f283 f143
- f283
- flags: bottom simplicial tricoplanar
- owner of normal & centrum is facet f282
- normal: -0.4792 -0 0.8777
- offset: -0.04373278
- center: -0.01971049979329109 -0.0002920003607869148 0.03906499966979027
- vertices: p70(v34) p69(v20) p71(v11)
- neighboring facets: f234 f282 f306
- f286
- flags: top simplicial tricoplanar seen keepcentrum
- owner of normal & centrum is facet f286
- normal: 1 -0 0
- offset: -0.041282
- center: 0.04128199815750122 -0.0002920003607869148 0.01685199979692698
- vertices: p62(v36) p61(v27) p60(v1)
- neighboring facets: f372 f287 f322
- f287
- flags: bottom simplicial tricoplanar
- owner of normal & centrum is facet f286
- normal: 1 -0 0
- offset: -0.041282
- center: 0.04128199815750122 -0.0002920003607869148 0.01685199979692698
- vertices: p62(v36) p121(v19) p60(v1)
- neighboring facets: f67 f286 f326
- f290
- flags: bottom simplicial tricoplanar keepcentrum
- owner of normal & centrum is facet f290
- normal: 0.3495 -0 0.937
- offset: -0.04476099
- center: 0.01641799975186586 -0.0002920003607869148 0.04164949990808964
- vertices: p66(v38) p64(v24) p63(v15)
- neighboring facets: f274 f291 f217
- f291
- flags: top simplicial tricoplanar
- owner of normal & centrum is facet f290
- normal: 0.3495 -0 0.937
- offset: -0.04476099
- center: 0.01641799975186586 -0.0002920003607869148 0.04164949990808964
- vertices: p66(v38) p68(v29) p63(v15)
- neighboring facets: f193 f290 f302
- f294
- flags: bottom simplicial tricoplanar keepcentrum
- owner of normal & centrum is facet f294
- normal: -0.7071 0 0.7071
- offset: -0.04332699
- center: -0.0296444995328784 -0.0002920003607869148 0.03162899985909462
- vertices: p73(v41) p72(v22) p71(v11)
- neighboring facets: f282 f295 f171
- f295
- flags: top simplicial tricoplanar
- owner of normal & centrum is facet f294
- normal: -0.7071 0 0.7071
- offset: -0.04332699
- center: -0.0296444995328784 -0.0002920003607869148 0.03162899985909462
- vertices: p73(v41) p90(v21) p71(v11)
- neighboring facets: f236 f294 f334
- f298
- flags: bottom simplicial tricoplanar keepcentrum
- owner of normal & centrum is facet f298
- normal: -0 -0.1951 -0.9808
- offset: -0.01673068
- center: -0.0008674999698996544 -0.003074000029300805 -0.01644700020551682
- vertices: p99(v42) p13(v13) p6(v5)
- neighboring facets: f279 f299 f174
- f299
- flags: top simplicial tricoplanar
- owner of normal & centrum is facet f298