forked from yocover/start-learning-opengl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis.dio
1173 lines (1173 loc) · 110 KB
/
analysis.dio
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
<mxfile>
<diagram id="ty31Uemw-zXE6HJe6N66" name="第 2 页">
<mxGraphModel dx="602" dy="357" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="900" pageHeight="1600" math="0" shadow="0">
<root>
<mxCell id="Mf4_04Zu9k9OO0F0BlDX-0"/>
<mxCell id="Mf4_04Zu9k9OO0F0BlDX-1" parent="Mf4_04Zu9k9OO0F0BlDX-0"/>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-67" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=none;dashed=1;dashPattern=1 1;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="55" y="1100" width="300" height="300" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-60" value="" style="whiteSpace=wrap;html=1;aspect=fixed;fillColor=#1ba1e2;strokeColor=#006EAF;fontColor=#ffffff;rotation=-45;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="770" y="1210" width="80" height="80" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-31" value="" style="whiteSpace=wrap;html=1;aspect=fixed;fillColor=#1ba1e2;strokeColor=#006EAF;fontColor=#ffffff;rotation=-30;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="297.5" y="1135" width="75" height="75" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-85" value="<table><tbody><tr><td>1</td><td>&nbsp; &nbsp; &nbsp;2</td><td>&nbsp; &nbsp; &nbsp;3</td></tr><tr><td>4</td><td>&nbsp; &nbsp; &nbsp;5</td><td>&nbsp; &nbsp; &nbsp;6</td></tr><tr><td>7</td><td>&nbsp; &nbsp; &nbsp;8</td><td>&nbsp; &nbsp; &nbsp;9</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;strokeColor=#f0f0f0;shadow=0;sketch=0;glass=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="185" y="55" width="80" height="60" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-88" value="<table><tbody><tr><td>1</td></tr><tr><td>2</td></tr></tbody></table>3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;strokeColor=#f0f0f0;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="325" y="60" width="30" height="50" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-89" value="×" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="285.0000000000001" y="74.99999999999994" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-90" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="375.0000000000001" y="74.99999999999994" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-91" value="<table><tbody><tr><td>1*1 + 2*2 + 3*3</td></tr><tr><td>4*1 + 5*2 + 6*3</td></tr></tbody></table>7*1 + 8*2 + 9*3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;strokeColor=#f0f0f0;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="405" y="60.00000000000023" width="100" height="50" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-92" value="<table><tbody><tr><td>x</td></tr><tr><td>y</td></tr></tbody></table>z" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;strokeColor=#f0f0f0;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="545" y="60.00000000000023" width="30" height="50" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-93" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="515.0000000000001" y="74.99999999999994" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-94" value="结果矩阵的行取决于第一个矩阵,列取决于第二个矩阵,因此结果是3行1列的矩阵" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="155" y="165" width="450" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-98" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.521;entryY=-0.016;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#f0f0f0;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" source="tJY6Y70l5PTuczmkxsG5-97" target="tJY6Y70l5PTuczmkxsG5-92" edge="1">
<mxGeometry relative="1" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-97" value="结果矩阵" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="530" y="15" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-102" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;shadow=0;glass=0;sketch=0;strokeColor=#f0f0f0;strokeWidth=1;fillColor=none;gradientColor=none;fontSize=12;rotation=-90;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="370" y="-50" width="20" height="390" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-105" value="用矩阵乘以向量将变换这个向量" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="155" y="210" width="180" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-67" value="" style="group;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1" connectable="0">
<mxGeometry x="185" y="320" width="400" height="400" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-68" value="" style="endArrow=none;html=1;strokeWidth=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint y="200" as="sourcePoint"/>
<mxPoint x="400" y="200" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-69" value="" style="endArrow=none;html=1;strokeWidth=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="400" as="sourcePoint"/>
<mxPoint x="200" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-70" value="<font style="font-size: 10px">0</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-71" value="<font style="font-size: 10px">1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="220" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-72" value="<font style="font-size: 10px">2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="260" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-73" value="<font style="font-size: 10px">3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="300" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-74" value="<font style="font-size: 10px">4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="340" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-75" value="<font style="font-size: 10px">-1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="140" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-76" value="<font style="font-size: 10px">-2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="100" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-77" value="<font style="font-size: 10px">-3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="60" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-78" value="<font style="font-size: 10px">-4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="20" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-79" value="<font style="font-size: 10px">-1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="240" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-80" value="<font style="font-size: 10px">-2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="280" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-81" value="<font style="font-size: 10px">-3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="320" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-82" value="<font style="font-size: 10px">-4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="360" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-83" value="<font style="font-size: 10px">1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="160" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-84" value="<font style="font-size: 10px">2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="120" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-86" value="<font style="font-size: 10px">3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="80" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-87" value="<font style="font-size: 10px">4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="180" y="40" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-95" value="" style="endArrow=classic;html=1;strokeWidth=1;fontSize=12;strokeColor=#FF3333;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="199" as="sourcePoint"/>
<mxPoint x="200" y="160" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-96" value="" style="endArrow=classic;html=1;strokeWidth=1;fontSize=12;strokeColor=#1136F0;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="200" as="sourcePoint"/>
<mxPoint x="240" y="200" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-99" value="<font color="#1136f0">i</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="240" y="180" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-100" value="<font color="#ff3333">j</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="205" y="140" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-101" value="" style="endArrow=classic;html=1;strokeColor=#66FF66;strokeWidth=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="200" as="sourcePoint"/>
<mxPoint x="320" y="120" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-103" value="A" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="320" y="100" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-104" value="" style="endArrow=none;dashed=1;html=1;strokeWidth=1;fontSize=12;strokeColor=#FF0000;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="120" as="sourcePoint"/>
<mxPoint x="320" y="120" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-106" value="" style="endArrow=none;dashed=1;html=1;strokeWidth=1;fontSize=12;strokeColor=#0000FF;" parent="tJY6Y70l5PTuczmkxsG5-67" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="320" y="200" as="sourcePoint"/>
<mxPoint x="320" y="120" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-109" value="(3*i, 2*j)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="tJY6Y70l5PTuczmkxsG5-67" vertex="1">
<mxGeometry x="330" y="100" width="70" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-107" value="3*i" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="420" y="420" width="30" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-108" value="2*j" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="500" y="470" width="30" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-110" value="<u>3i</u>&nbsp;+ 2j<u>&nbsp;</u>= <u>OA</u>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="205" y="765" width="80" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-111" value="<table><tbody><tr><td>1</td></tr><tr><td>0</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="345" y="755.0000000000002" width="30" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-142" value="i" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="350" y="725" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-143" value="<table><tbody><tr><td>0</td></tr><tr><td>1</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="465" y="755.0000000000002" width="30" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-144" value="j" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="470" y="725" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-145" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="420" y="765" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-146" value="×" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="440.0000000000001" y="765" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-147" value="×" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="325.0000000000001" y="765" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-148" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="305" y="765" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-149" value="+" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="390" y="765" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-150" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="505.0000000000001" y="765" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-151" value="<table><tbody><tr><td>3</td></tr><tr><td>2</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="535" y="755.0000000000002" width="30" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-152" value="<table><tbody><tr><td>3 * 0</td></tr><tr><td>3 * 0</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="195" y="830.0000000000002" width="50" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-153" value="+" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="265" y="840" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-154" value="<table><tbody><tr><td>2 * 0</td></tr><tr><td>2 * 1</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="305" y="830.0000000000002" width="50" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-155" value="<table><tbody><tr><td>3 * 0 + 2 * 0</td></tr><tr><td>3 * 0 + 2 * 1</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="415" y="830.0000000000002" width="80" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-156" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="375.0000000000001" y="840" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-157" value="<table><tbody><tr><td>3</td></tr><tr><td>2</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="545" y="830.0000000000002" width="30" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-158" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="515.0000000000001" y="840" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-159" value="<table><tbody><tr><td>3</td></tr><tr><td>2</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="320" y="900.0000000000002" width="30" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-160" value="<table><tbody><tr><td>1</td><td>&nbsp; &nbsp; &nbsp;0</td></tr><tr><td>0</td><td>&nbsp; &nbsp; &nbsp;1</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="255" y="900" width="60" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-161" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="375.0000000000001" y="910" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-162" value="<table><tbody><tr><td>3 * 0 + 2 * 0</td></tr><tr><td>3 * 0 + 2 * 1</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="415" y="900.0000000000002" width="80" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-163" value="<table><tbody><tr><td>3</td></tr><tr><td>2</td></tr></tbody></table>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="545" y="900.0000000000002" width="30" height="40" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-164" value="=" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;rounded=1;shadow=0;glass=0;sketch=0;strokeWidth=1;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="515.0000000000001" y="910" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-165" value="单位矩阵左乘以一个向量" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="245" y="980" width="150" height="20" as="geometry"/>
</mxCell>
<mxCell id="tJY6Y70l5PTuczmkxsG5-166" value="<table><tbody><tr><td>i</td></tr></tbody></table>j" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;strokeColor=#f0f0f0;rounded=1;shadow=0;glass=0;sketch=0;fillColor=none;gradientColor=none;" parent="Mf4_04Zu9k9OO0F0BlDX-1" vertex="1">
<mxGeometry x="415" y="970.0000000000002" width="20" height="40" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-1" value="" style="endArrow=none;html=1;strokeWidth=1;fontSize=12;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="5" y="1050" width="50" height="50" as="geometry">
<mxPoint x="5" y="1250" as="sourcePoint"/>
<mxPoint x="405" y="1250" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-2" value="" style="endArrow=none;html=1;strokeWidth=1;fontSize=12;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="5" y="1050" width="50" height="50" as="geometry">
<mxPoint x="205" y="1450" as="sourcePoint"/>
<mxPoint x="205" y="1050" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-3" value="<font style="font-size: 10px">0</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-4" value="<font style="font-size: 10px">1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="225" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-5" value="<font style="font-size: 10px">2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="265" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-6" value="<font style="font-size: 10px">3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="305" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-7" value="<font style="font-size: 10px">4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="345" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-8" value="<font style="font-size: 10px">-1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="145" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-9" value="<font style="font-size: 10px">-2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="105" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-10" value="<font style="font-size: 10px">-3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="65" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-11" value="<font style="font-size: 10px">-4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="25" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-12" value="<font style="font-size: 10px">-1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-13" value="<font style="font-size: 10px">-2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1330" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-14" value="<font style="font-size: 10px">-3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1370" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-15" value="<font style="font-size: 10px">-4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1410" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-16" value="<font style="font-size: 10px">1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1210" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-17" value="<font style="font-size: 10px">2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1170" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-18" value="<font style="font-size: 10px">3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1130" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-19" value="<font style="font-size: 10px">4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="185" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-20" value="" style="endArrow=classic;html=1;strokeWidth=1;fontSize=12;strokeColor=#FF3333;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="5" y="1050" width="50" height="50" as="geometry">
<mxPoint x="205" y="1249" as="sourcePoint"/>
<mxPoint x="205" y="1210" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-21" value="" style="endArrow=classic;html=1;strokeWidth=1;fontSize=12;strokeColor=#1136F0;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="5" y="1050" width="50" height="50" as="geometry">
<mxPoint x="205" y="1250" as="sourcePoint"/>
<mxPoint x="245" y="1250" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-22" value="<font color="#1136f0">i</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="245" y="1230" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-23" value="<font color="#ff3333">j</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="210" y="1190" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-35" value="" style="endArrow=none;html=1;strokeWidth=1;fontSize=12;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="450" y="1050" width="50" height="50" as="geometry">
<mxPoint x="450" y="1250.0000000000002" as="sourcePoint"/>
<mxPoint x="850.0000000000002" y="1250.0000000000002" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-36" value="" style="endArrow=none;html=1;strokeWidth=1;fontSize=12;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="450" y="1050" width="50" height="50" as="geometry">
<mxPoint x="650" y="1450" as="sourcePoint"/>
<mxPoint x="650" y="1050" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-37" value="<font style="font-size: 10px">0</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-38" value="<font style="font-size: 10px">1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="670" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-39" value="<font style="font-size: 10px">2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="710" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-40" value="<font style="font-size: 10px">3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="750" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-41" value="<font style="font-size: 10px">4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="790" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-42" value="<font style="font-size: 10px">-1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="590" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-43" value="<font style="font-size: 10px">-2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="550" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-44" value="<font style="font-size: 10px">-3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="510" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-45" value="<font style="font-size: 10px">-4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="470" y="1250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-46" value="<font style="font-size: 10px">-1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-47" value="<font style="font-size: 10px">-2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1330" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-48" value="<font style="font-size: 10px">-3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1370" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-49" value="<font style="font-size: 10px">-4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1410" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-50" value="<font style="font-size: 10px">1</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="640" y="1230" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-51" value="<font style="font-size: 10px">2</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1170" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-52" value="<font style="font-size: 10px">3</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1130" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-53" value="<font style="font-size: 10px">4</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="630" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-54" value="" style="endArrow=classic;html=1;strokeWidth=1;fontSize=12;strokeColor=#FF3333;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="450" y="1050" width="50" height="50" as="geometry">
<mxPoint x="650" y="1249" as="sourcePoint"/>
<mxPoint x="650" y="1210.0000000000002" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-55" value="" style="endArrow=classic;html=1;strokeWidth=1;fontSize=12;strokeColor=#1136F0;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="450" y="1050" width="50" height="50" as="geometry">
<mxPoint x="650" y="1250.0000000000002" as="sourcePoint"/>
<mxPoint x="690" y="1250.0000000000002" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-56" value="<font color="#1136f0">i</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="690" y="1230" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-57" value="<font color="#ff3333">j</font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;fontSize=12;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="655" y="1190" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-66" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;strokeColor=#FFFF00;" edge="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="1250" as="sourcePoint"/>
<mxPoint x="350" y="1170" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-70" value="先平移后旋转" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="55" y="1050" width="90" height="20" as="geometry"/>
</mxCell>
<mxCell id="lmXjNhMb_aO6G4qjEfH1-72" value="先旋转再平移" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" vertex="1" parent="Mf4_04Zu9k9OO0F0BlDX-1">
<mxGeometry x="480" y="1050" width="90" height="20" as="geometry"/>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="m64h691eUGhwh49pkMqr" name="第 1 页">
<mxGraphModel dx="788" dy="448" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="900" pageHeight="1600" math="0" shadow="0">
<root>
<mxCell id="0"/>
<mxCell id="1" parent="0"/>
<mxCell id="333" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="50" width="50" height="50" as="geometry">
<mxPoint x="40" y="280" as="sourcePoint"/>
<mxPoint x="400" y="280" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="334" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="50" width="50" height="50" as="geometry">
<mxPoint x="160" y="400" as="sourcePoint"/>
<mxPoint x="160" y="80" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="335" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="230" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="336" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="190" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="337" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="150" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="338" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="110" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="339" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="190" y="290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="340" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="230" y="290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="341" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="270" y="290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="342" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="310" y="290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="343" value="5" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="350" y="290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="344" value="0,0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="110" y="290" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="345" value="x" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="410" y="270" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="346" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="50" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="347" value="(2,0)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="240" y="260" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="348" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="347" edge="1">
<mxGeometry x="40" y="50" width="50" height="50" as="geometry">
<mxPoint x="160" y="280" as="sourcePoint"/>
<mxPoint x="210" y="230" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="349" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" target="350" edge="1">
<mxGeometry x="40" y="50" width="50" height="50" as="geometry">
<mxPoint x="160" y="280" as="sourcePoint"/>
<mxPoint x="210" y="230" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="350" value="(2,3)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="240" y="140" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="410" value="" style="endArrow=classic;html=1;strokeColor=#007FFF;" parent="1" target="411" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="280" as="sourcePoint"/>
<mxPoint x="240" y="240" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="411" value="(2,1) × 2&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="295" y="180" width="90" height="20" as="geometry"/>
</mxCell>
<mxCell id="412" value="" style="endArrow=classic;html=1;strokeColor=#FF33FF;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="280" as="sourcePoint"/>
<mxPoint x="80" y="400" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="413" value="(-2, -3)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry y="381" width="80" height="20" as="geometry"/>
</mxCell>
<mxCell id="414" value="a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="180" y="180" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="415" value="-a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="55" y="340" width="30" height="20" as="geometry"/>
</mxCell>
<mxCell id="416" value="a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="610" y="200" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="417" value="b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="690" y="250" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="352" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="481" y="51" width="50" height="50" as="geometry">
<mxPoint x="481" y="281" as="sourcePoint"/>
<mxPoint x="841" y="281" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="353" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="481" y="51" width="50" height="50" as="geometry">
<mxPoint x="601" y="401" as="sourcePoint"/>
<mxPoint x="601" y="81" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="354" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="581" y="231" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="355" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="581" y="191" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="356" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="581" y="151" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="357" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="581" y="111" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="358" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="631" y="291" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="359" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="671" y="291" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="360" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="711" y="291" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="361" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="751" y="291" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="362" value="5" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="791" y="291" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="363" value="0,0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="551" y="291" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="364" value="x" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="851" y="271" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="365" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="591" y="51" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="366" value="(3,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="721" y="221" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="367" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="366" edge="1">
<mxGeometry x="481" y="51" width="50" height="50" as="geometry">
<mxPoint x="601" y="281" as="sourcePoint"/>
<mxPoint x="651" y="231" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="368" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" target="369" edge="1">
<mxGeometry x="481" y="51" width="50" height="50" as="geometry">
<mxPoint x="601" y="281" as="sourcePoint"/>
<mxPoint x="651" y="231" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="369" value="(2,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="641" y="181" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="419" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" edge="1">
<mxGeometry x="601" y="11.829999999999998" width="50" height="50" as="geometry">
<mxPoint x="721" y="241.82999999999998" as="sourcePoint"/>
<mxPoint x="760.8199999999999" y="160.17000000000002" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="420" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry x="518.41" y="-30" width="50" height="50" as="geometry">
<mxPoint x="638.41" y="200" as="sourcePoint"/>
<mxPoint x="761.59" y="160.84000000000003" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="421" value="" style="endArrow=classic;html=1;strokeColor=#00FF00;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="600" y="280" as="sourcePoint"/>
<mxPoint x="760" y="160" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="422" value="a+b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="630" y="210" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="423" value="向量与标量运算" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="190" y="70" width="100" height="20" as="geometry"/>
</mxCell>
<mxCell id="424" value="向量加法运算" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="635" y="70" width="90" height="20" as="geometry"/>
</mxCell>
<mxCell id="425" value="a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="170" y="610" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="426" value="b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="250" y="650" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="2" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="452" width="50" height="50" as="geometry">
<mxPoint x="40" y="682" as="sourcePoint"/>
<mxPoint x="400" y="682" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="3" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="452" width="50" height="50" as="geometry">
<mxPoint x="160" y="802" as="sourcePoint"/>
<mxPoint x="160" y="482" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="4" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="632" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="5" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="592" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="6" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="552" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="7" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="512" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="8" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="190" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="9" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="230" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="10" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="270" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="11" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="310" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="12" value="5" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="350" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="13" value="0,0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="110" y="692" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="15" value="x" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="410" y="672" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="16" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="452" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="20" value="(3,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="280" y="622" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="307" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="20" edge="1">
<mxGeometry x="40" y="452" width="50" height="50" as="geometry">
<mxPoint x="160" y="682" as="sourcePoint"/>
<mxPoint x="210" y="632" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="308" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" target="309" edge="1">
<mxGeometry x="40" y="452" width="50" height="50" as="geometry">
<mxPoint x="160" y="682" as="sourcePoint"/>
<mxPoint x="210" y="632" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="309" value="(2,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="582" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="427" value="" style="endArrow=classic;html=1;strokeColor=#00FF00;dashed=1;" parent="1" edge="1">
<mxGeometry x="41" y="453" width="50" height="50" as="geometry">
<mxPoint x="161" y="681" as="sourcePoint"/>
<mxPoint x="41" y="721" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="428" value="-b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;dashed=1;" parent="1" vertex="1">
<mxGeometry x="55" y="690" width="30" height="20" as="geometry"/>
</mxCell>
<mxCell id="429" value="" style="endArrow=classic;html=1;strokeColor=#00FF00;dashed=1;" parent="1" edge="1">
<mxGeometry x="80" y="374" width="50" height="50" as="geometry">
<mxPoint x="200" y="602" as="sourcePoint"/>
<mxPoint x="80" y="642" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="431" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;dashed=1;" parent="1" edge="1">
<mxGeometry x="-74.82" y="492.83" width="50" height="50" as="geometry">
<mxPoint x="45.18000000000001" y="722.83" as="sourcePoint"/>
<mxPoint x="84.99999999999994" y="641.17" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="432" value="" style="endArrow=classic;html=1;strokeColor=#3399FF;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="680" as="sourcePoint"/>
<mxPoint x="80" y="640" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="433" value="a + (-b)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="105" y="630" width="50" height="20" as="geometry"/>
</mxCell>
<mxCell id="434" value="" style="endArrow=classic;html=1;strokeColor=#3399FF;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="275" y="642" as="sourcePoint"/>
<mxPoint x="195" y="602" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="435" value="a - b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="240" y="600" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="436" value="<div style="text-align: left"><span>向量的减法</span></div><div style="text-align: left"><span>减向量的终点指向被减向量的终点</span></div>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="482" width="200" height="30" as="geometry"/>
</mxCell>
<mxCell id="312" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="480" y="452" width="50" height="50" as="geometry">
<mxPoint x="480" y="682" as="sourcePoint"/>
<mxPoint x="840" y="682" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="313" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="480" y="452" width="50" height="50" as="geometry">
<mxPoint x="600" y="802" as="sourcePoint"/>
<mxPoint x="600" y="482" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="314" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="580" y="632" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="315" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="580" y="592" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="316" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="580" y="552" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="317" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="580" y="512" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="318" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="630" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="319" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="670" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="320" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="710" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="321" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="750" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="322" value="5" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="790" y="692" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="323" value="0,0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="550" y="692" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="324" value="x" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="850" y="672" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="325" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="590" y="452" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="326" value="(4,2)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="760" y="580" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="327" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="326" edge="1">
<mxGeometry x="480" y="452" width="50" height="50" as="geometry">
<mxPoint x="600" y="682" as="sourcePoint"/>
<mxPoint x="650" y="632" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="328" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" target="329" edge="1">
<mxGeometry x="480" y="452" width="50" height="50" as="geometry">
<mxPoint x="600" y="682" as="sourcePoint"/>
<mxPoint x="650" y="632" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="329" value="(2,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="640" y="582" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="437" value="" style="endArrow=none;html=1;dashed=1;entryX=0.039;entryY=1.167;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF3333;" parent="1" target="326" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="762" y="680" as="sourcePoint"/>
<mxPoint x="810" y="620" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="438" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;strokeColor=#FF3333;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="600" y="680" as="sourcePoint"/>
<mxPoint x="760" y="680" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="439" value="a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="690" y="610" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="440" value="b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="780" y="630" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="441" value="c" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="690" y="650" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="442" value="向量的长度<br><sup>a2 = b2 + c2</sup>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="640" y="490" width="80" height="40" as="geometry"/>
</mxCell>
<mxCell id="444" value="数学意义<br>a · b = a(2,1) ·b(2,1) = 2 * 2 + 1 * 1 =5&nbsp;" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="870" width="220" height="30" as="geometry"/>
</mxCell>
<mxCell id="445" value="a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="170" y="1010" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="372" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="850" width="50" height="50" as="geometry">
<mxPoint x="40" y="1080" as="sourcePoint"/>
<mxPoint x="400" y="1080" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="373" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="850" width="50" height="50" as="geometry">
<mxPoint x="160" y="1200" as="sourcePoint"/>
<mxPoint x="160" y="880" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="374" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="1030" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="375" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="990" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="376" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="950" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="377" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="910" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="378" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="190" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="379" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="230" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="380" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="270" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="381" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="310" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="382" value="5" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="350" y="1090" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="383" value="0,0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="110" y="1090" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="384" value="x" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="410" y="1070" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="385" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="850" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="386" value="(3,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="280" y="1020" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="387" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="386" edge="1">
<mxGeometry x="40" y="850" width="50" height="50" as="geometry">
<mxPoint x="160" y="1080" as="sourcePoint"/>
<mxPoint x="210" y="1030" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="388" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" target="389" edge="1">
<mxGeometry x="40" y="850" width="50" height="50" as="geometry">
<mxPoint x="160" y="1080" as="sourcePoint"/>
<mxPoint x="210" y="1030" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="389" value="(2,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="980" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="446" value="b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="250" y="1050" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="447" value="几何意义<br>a·b = |a|*|b|*cosθ" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="910" width="110" height="30" as="geometry"/>
</mxCell>
<mxCell id="448" value="θ" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="170" y="1050" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="403" value="x" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="850" y="1070" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="458" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="1230" width="50" height="50" as="geometry">
<mxPoint x="40" y="1460" as="sourcePoint"/>
<mxPoint x="400" y="1460" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="459" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="40" y="1230" width="50" height="50" as="geometry">
<mxPoint x="160" y="1580" as="sourcePoint"/>
<mxPoint x="160" y="1260" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="460" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="1410" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="461" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="1370" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="462" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="1330" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="463" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="140" y="1290" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="464" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="190" y="1470" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="465" value="2" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="230" y="1470" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="466" value="3" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="270" y="1470" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="467" value="4" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="310" y="1470" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="468" value="5" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="350" y="1470" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="469" value="0,0" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="110" y="1470" width="40" height="20" as="geometry"/>
</mxCell>
<mxCell id="470" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="1230" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="471" value="(2,1)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="240" y="1400" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="472" value="" style="endArrow=classic;html=1;strokeColor=#FFFF33;entryX=0.053;entryY=1.042;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="471" edge="1">
<mxGeometry x="40" y="1230" width="50" height="50" as="geometry">
<mxPoint x="160" y="1460" as="sourcePoint"/>
<mxPoint x="210" y="1410" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="473" value="" style="endArrow=classic;html=1;entryX=-0.003;entryY=0.917;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" parent="1" target="474" edge="1">
<mxGeometry x="40" y="1230" width="50" height="50" as="geometry">
<mxPoint x="160" y="1460" as="sourcePoint"/>
<mxPoint x="210" y="1410" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="474" value="(1,2)" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="1360" width="60" height="20" as="geometry"/>
</mxCell>
<mxCell id="475" value="b" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="270" y="1430" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="476" value="a" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="170" y="1360" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="478" value="θ" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="170" y="1420" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="481" value="向量的叉乘数学意义<br>a×b = (1,2)×(2,1) = 1 * 1 - 2 * 2 = 5" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="195" y="1250" width="250" height="30" as="geometry"/>
</mxCell>
<mxCell id="482" value="向量的叉乘几何意义<br>a×b =&nbsp; |a|&nbsp; * |b| * sinθ" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="195" y="1290" width="130" height="30" as="geometry"/>
</mxCell>
<mxCell id="483" value="" style="shape=flexArrow;endArrow=classic;html=1;dashed=1;strokeColor=#00FF00;" parent="1" edge="1">
<mxGeometry x="-70" y="1210" width="50" height="50" as="geometry">
<mxPoint x="375" y="1400" as="sourcePoint"/>
<mxPoint x="465" y="1400" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="499" value="y" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="590" y="1220" width="20" height="20" as="geometry"/>
</mxCell>
<mxCell id="391" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="480" y="850" width="50" height="50" as="geometry">
<mxPoint x="480" y="1080" as="sourcePoint"/>
<mxPoint x="840" y="1080" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="392" value="" style="endArrow=classic;html=1;" parent="1" edge="1">
<mxGeometry x="480" y="850" width="50" height="50" as="geometry">