This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChineseTraditional.json
1903 lines (1903 loc) · 42 KB
/
ChineseTraditional.json
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
[{
name:"Point",
translation:"點 (Point)",
},{
name:"Vector",
translation:"向量 (Vector)"
},{
name:"Circle",
translation:"圓 (Circle)"
},{
name:"Curve",
translation:"線條 (Curve)"
},{
name:"Plane",
translation:"平面 (Plane)"
},{
name:"Circular Arc",
translation:"圓弧 (Circular Arc)"
},{
name:"Line",
translation:"直線 (Line)"
},{
name:"Rectangle",
translation:"矩形 (Rectangle)"
},{
name:"Box",
translation:"立方體 (Box)"
},{
name:"Mesh",
translation:"網格 (Mesh)"
},{
name:"Surface",
translation:"面 (Surface)"
},{
name:"Brep",
translation:"邊界表示幾何 (Brep)"
},{
name:"Mesh Face",
translation:"網格面 (Mesh Face)"
},{
name:"Twisted Box",
translation:"扭曲立方體 (Twisted Box)"
},{
name:"Field",
translation:"向量場 (Field)"
},{
name:"Geometry Cache",
translation:"幾何快取 (Geometry Cache)"
},{
name:"Group",
translation:"群組 (Group)"
},{
name:"Geometry",
translation:"幾何 (Geometry)"
},{
name:"Geometry Pipeline",
translation:"幾何連結 (Geometry Pipeline)"
},{
name:"Transform",
translation:"移動 (Transform)"
},{
name:"Boolean",
translation:"布林 (Boolean)"
},{
name:"Number",
translation:"數字 (Number)"
},{
name:"Integer",
translation:"整數 (Integer)"
},{
name:"Text",
translation:"文字 (Text)"
},{
name:"Colour",
translation:"顏色 (Colour)"
},{
name:"Culture",
translation:"文化特性 (Culture)"
},{
name:"Domain2",
translation:"區間2 (Domain2)"
},{
name:"Matrix",
translation:"矩陣 (Matrix)"
},{
name:"Complex",
translation:"複數 (Complex)"
},{
name:"Domain",
translation:"區間 (Domain)"
},{
name:"Guid",
translation:"識別碼 (Guid)"
},{
name:"Time",
translation:"時間 (Time)"
},{
name:"Data",
translation:"資訊 (Data)"
},{
name:"File Path",
translation:"文件路徑 (File Path)"
},{
name:"Data Path",
translation:"資料層路徑 (Data Path)"
},{
name:"Shader",
translation:"著色器 (Shader)"
},{
name:"Control Knob",
translation:"數值旋鈕 (Control Knob)"
},{
name:"Value List",
translation:"清單 (Value List)"
},{
name:"Calendar",
translation:"日曆 (Calendar)"
},{
name:"Colour Picker",
translation:"調色 (Colour Picker)"
},{
name:"Colour Wheel",
translation:"色環 (Colour Wheel)"
},{
name:"Graph Mapper",
translation:"圖表映射 (Graph Mapper)"
},{
name:"Clock",
translation:"時鐘 (Clock)"
},{
name:"Colour Swatch",
translation:"色板 (Colour Swatch)"
},{
name:"Gradient",
translation:"漸層 (Gradient)"
},{
name:"Image Sampler",
translation:"影像取樣 (Image Sampler)"
},{
name:"Import Coordinates",
translation:"匯入坐標 (Import Coordinates)"
},{
name:"Import PDB",
translation:"匯入PDB (Import PDB)"
},{
name:"Object Details",
translation:"物件細節 (Object Details)"
},{
name:"Import 3DM",
translation:"匯入3DM (Import 3DM)"
},{
name:"Import Image",
translation:"匯入圖片(Import Image)"
},{
name:"Import SHP",
translation:"匯入SHP (Import SHP)"
},{
name:"Read File",
translation:"讀取檔案 (Read File)"
},{
name:"Cherry Picker",
translation:"完美單選 (Cherry Picker)"
},{
name:"Param Viewer",
translation:"顯示資料結構 (Param Viewer)"
},{
name:"Jump",
translation:"跳至 (Jump)"
},{
name:"Data Dam",
translation:"數據大壩 (Data Dam)"
},{
name:"Relay",
translation:"節點 (Relay)"
},{
name:"Timer",
translation:"計時器 (Timer)"
},{
name:"Trigger",
translation:"計時器 (Trigger)"
},{
name:"Data Recorder",
translation:"黑盒子 (Data Recorder)"
},{
name:"Suirify",
translation:"資料結構最簡化 (Suirify)"
},{
name:"Cluster Input",
translation:"打包輸入 (Cluster Input)"
},{
name:"Data Input",
translation:"資訊輸入 (Data Input)"
},{
name:"Cluster Output",
translation:"打包輸出 (Cluster Output)"
},{
name:"Data Output",
translation:"資訊輸出 (Data Output)"
},{
name:"Fitness Landscape",
translation:"適應度景觀 (Fitness Landscape)"
},{
name:"Gene Pool",
translation:"基因庫 (Gene Pool)"
},{
name:"Galapagos",
translation:"反覆試驗 (Galapagos)"
},{
name:"Construct Domain",
translation:"創造區間 (Construct Domain)"
},{
name:"Deconstruct Domain",
translation:"區間界限 (Deconstruct Domain)"
},{
name:"Bounds",
translation:"界限 (Bounds)"
},{
name:"Consecutive Domains",
translation:"連續區間 (Consecutive Domains)"
},{
name:"Divide Domain",
translation:"區間分割 (Divide Domain)"
},{
name:"Find Domain",
translation:"區間查詢 (Find Domain)"
},{
name:"Includes",
translation:"包含 (Includes)"
},{
name:"Remap Numbers",
translation:"映射數字 (Remap Numbers)"
},{
name:"Construct Domain2",
translation:"創造區間² (Construct Domain2)"
},{
name:"Deconstruct Domain2",
translation:"區間²界限 (Deconstruct Domain2)"
},{
name:"Bounds 2D",
translation:"界限2D (Bounds 2D)"
},{
name:"Divide Domain2",
translation:"分割區間² (Divide Domain2)"
},{
name:"Construct Matrix",
translation:"建立矩陣 (Construct Matrix)"
},{
name:"Deconstruct Matrix",
translation:"拆解矩陣 (Deconstruct Matrix)"
},{
name:"Display Matrix",
translation:"顯示矩陣 (Display Matrix)"
},{
name:"Invert Matrix",
translation:"反矩陣 (Invert Matrix)"
},{
name:"Transpose Matrix",
translation:"轉置矩陣 (Transpose Matrix)"
},{
name:"Swap Columns",
translation:"交換列 (Swap Columns)"
},{
name:"Swap Rows",
translation:"交換行 (Swap Rows)"
},{
name:"Addition",
translation:"加法 (Addition)"
},{
name:"Multiplication",
translation:"乘法 (Multiplication)"
},{
name:"Power",
translation:"次方 (Power)"
},{
name:"Divison",
translation:"除法 (Divison)"
},{
name:"Negative",
translation:"相反數 (Negative)"
},{
name:"Subtraction",
translation:"減法 (Subtraction)"
},{
name:"Absolute",
translation:"絕對值 (Absolute)"
},{
name:"Factorial",
translation:"階乘 (Factorial)"
},{
name:"Interger Division",
translation:"整除 (Interger Division)"
},{
name:"Modulus",
translation:"模除 (Modulus)"
},{
name:"Mass Addition",
translation:"累加 (Mass Addition)"
},{
name:"Relative Differences",
translation:"相對差異 (Relative Differences)"
},{
name:"Mass Multiplication",
translation:"累乘 (Mass Multiplication)"
},{
name:"Equality",
translation:"相等 (Equality)"
},{
name:"Similarity",
translation:"相似 (Similarity)"
},{
name:"Larger Than",
translation:"大於 (Larger Than)"
},{
name:"Smaller Than",
translation:"小於 (Smaller Than)"
},{
name:"Gate And",
translation:"及閘 (Gate And)"
},{
name:"Gate Or",
translation:"或閘 (Gate Or)"
},{
name:"Gate Not",
translation:"反閘 (Gate Not)"
},{
name:"Gate Xor",
translation:"互斥或閘 (Gate Xor)"
},{
name:"Gate Majority",
translation:"多數閘 (Gate Majority)"
},{
name:"Gate Nor",
translation:"反或閘 (Gate Nor)"
},{
name:"Gate Nand",
translation:"反及閘 (Gate Nand)"
},{
name:"Gate Xnor",
translation:"互斥反或閘 (Gate Xnor)"
},{
name:"Cube",
translation:"立方 (Cube)"
},{
name:"Cube Root",
translation:"立方根 (Cube Root)"
},{
name:"Square",
translation:"平方 (Square)"
},{
name:"Square Root",
translation:"平方根 (Square Root)"
},{
name:"One Over X",
translation:"X分之一 (One Over X)"
},{
name:"Power of 10",
translation:"10次方 (Power of 10)"
},{
name:"Power of 2",
translation:"2次方(Power of 2)"
},{
name:"Power of E",
translation:"E次方 (Power of E)"
},{
name:"Logarithm",
translation:"對數 (Logarithm)"
},{
name:"Natural Logarithm",
translation:"自然對數 (Natural Logarithm)"
},{
name:"Evaluate",
translation:"公式計算 (Evaluate)"
},{
name:"Expression",
translation:"公式 (Expression)"
},{
name:"C# Script",
translation:"C#程式 (C# Script)"
},{
name:"GhPython Script",
translation:"GhPython程式 (GhPython Script)"
},{
name:"VB Script",
translation:"VB程式 (VB Script)"
},{
name:"Construct Date",
translation:"日期 (Construct Date)"
},{
name:"Construct Exotic Date",
translation:"曆法日期 (Construct Exotic Date)"
},{
name:"Construct Time",
translation:"時間 (Construct Time)"
},{
name:"Deconstruct Date",
translation:"拆解日期 (Deconstruct Date)"
},{
name:"Combine Date & Time",
translation:"合併日期時間 (Combine Date & Time)"
},{
name:"Date Range",
translation:"時段 (Date Range)"
},{
name:"Tangent",
translation:"切線 (Tangent)"
},{
name:"Degrees",
translation:"度 (Degrees)"
},{
name:"Radians",
translation:"弧度 (Radians)"
},{
name:"Golden Ratio",
translation:"黃金比例 (Golden Ratio)"
},{
name:"Extremes",
translation:"極端 (Extremes)"
},{
name:"Minimum",
translation:"最小值 (Minimum)"
},{
name:"Maximum",
translation:"最大值 (Maximum)"
},{
name:"Round",
translation:"四捨五入 (Round)"
},{
name:"Average",
translation:"平均 (Average)"
},{
name:"Weighted Average",
translation:"加權平均 (Weighted Average)"
},{
name:"Insert Items",
translation:"插入清單 (Insert Items)"
},{
name:"List Item",
translation:"索引挑選 (List Item)"
},{
name:"Partition List",
translation:"分割清單 (Partition List)"
},{
name:"Reverse List",
translation:"反轉清單 (Reverse List)"
},{
name:"Sort List",
translation:"排序清單 (Sort List)"
},{
name:"Sub List",
translation:"子清單 (Sub List)"
},{
name:"Item Index",
translation:"項目索引 (Item Index)"
},{
name:"List Length",
translation:"清單長度 (List Length)"
},{
name:"Replace Items",
translation:"更換項目 (Replace Items)"
},{
name:"Shift List",
translation:"清單平移 (Shift List)"
},{
name:"Split List",
translation:"切割清單 (Split List)"
},{
name:"Dispatch",
translation:"分配 (Dispatch)"
},{
name:"Pick'n'Choose",
translation:"挑選 (Pick'n'Choose)"
},{
name:"Weave",
translation:"編織 (Weave)"
},{
name:"Null Item",
translation:"無效檢驗 (Null Item)"
},{
name:"Replace Nulls",
translation:"更換無效 (Replace Nulls)"
},{
name:"Combine Data",
translation:"合併資料 (Combine Data)"
},{
name:"Sift Pattern",
translation:"資料分流 (Sift Pattern)"
},{
name:"Cross Reference",
translation:"交叉參考 (Cross Reference)"
},{
name:"Shortest List",
translation:"最短清單 (Shortest List)"
},{
name:"Longest List",
translation:"最長清單 (Longest List)"
},{
name:"Cull Index",
translation:"剔除 (Cull Index)"
},{
name:"Cull Nth",
translation:"剔除第N個 (Cull Nth)"
},{
name:"Cull Pattern",
translation:"剔除樣式 (Cull Pattern)"
},{
name:"Random Reduce",
translation:"隨機減少 (Random Reduce)"
},{
name:"Char Sequence",
translation:"字符序列 (Char Sequence)"
},{
name:"Duplicate Data",
translation:"資料複製 (Duplicate Data)"
},{
name:"Range",
translation:"範圍 (Range)"
},{
name:"Repeat Data",
translation:"重複資料_Repeat Data)"
},{
name:"Series",
translation:"數字系列 (Series)"
},{
name:"Stack Data",
translation:"資料堆疊 (Stack Data)"
},{
name:"Jitter",
translation:"打散 (Jitter)"
},{
name:"Random",
translation:"隨機 (Random)"
},{
name:"Create Set",
translation:"創造字典 (Create Set)"
},{
name:"Set Difference",
translation:"字典去除 (Set Difference)"
},{
name:"Set Difference(S)",
translation:"字典去除差異 (Set Difference(S))"
},{
name:"Set Intersection",
translation:"字典相交 (Set Intersection)"
},{
name:"Set Majority",
translation:"字典多數 (Set Majority)"
},{
name:"Set Union",
translation:"字典相加 (Set Union)"
},{
name:"Carthesian Product",
translation:"配對 (Carthesian Product)"
},{
name:"Member Index",
translation:"單字索引 (Member Index)"
},{
name:"Replace Members",
translation:"更換單字 (Replace Members)"
},{
name:"SubSet",
translation:"子集 (SubSet)"
},{
name:"Delete Consecutive",
translation:"刪除連續 (Delete Consecutive)"
},{
name:"Find Similar member",
translation:"尋找相似單字 (Find Similar member)"
},{
name:"Key/Value Search",
translation:"關鍵字值搜索 (Key/Value Search)"
},{
name:"Characters",
translation:"字元 (Characters)"
},{
name:"Concatenate",
translation:"字串合併 (Concatenate)"
},{
name:"Text Join",
translation:"字串連接 (Text Join)"
},{
name:"Text Length",
translation:"字串長度 (Text Length)"
},{
name:"Text Split",
translation:"切割字串 (Text Split)"
},{
name:"Format",
translation:"格式 (Format)"
},{
name:"Text Case",
translation:"大小寫 (Text Case)"
},{
name:"Text Fragment",
translation:"字串片段 (Text Fragment)"
},{
name:"Text Trim",
translation:"文字修飾 (Text Trim)"
},{
name:"Match Text",
translation:"正規表達式 (Match Text)"
},{
name:"Replace Text",
translation:"更換字串 (Replace Text)"
},{
name:"Sort Text",
translation:"字串排序 (Sort Text)"
},{
name:"Text Distance",
translation:"字串距離 (Text Distance) "
},{
name:"Clean Tree",
translation:"清理資料結構 (Clean Tree)"
},{
name:"Graft Tree",
translation:"增層 (Graft Tree)"
},{
name:"Simplify Tree",
translation:"資料結構簡化 (Simplify Tree)"
},{
name:"Trim Tree",
translation:"回推資料結構層 (Trim Tree)"
},{
name:"Flatten Tree",
translation:"壓平資料結構 (Flatten Tree)"
},{
name:"Prune Tree",
translation:"修剪資料結構 (Prune Tree)"
},{
name:"Tree Statistics",
translation:"資料結構資訊 (Tree Statistics)"
},{
name:"Unflatten Tree",
translation:"重創資料結構 (Unflatten Tree)"
},{
name:"Entwine",
translation:"壓平編層 (Entwine)"
},{
name:"Flip Matrix",
translation:"層次轉置 (Flip Matrix)"
},{
name:"Explode Tree",
translation:"層次爆炸 (Explode Tree)"
},{
name:"Merge",
translation:"合併 (Merge)"
},{
name:"Match Tree",
translation:"層次相配 (Match Tree)"
},{
name:"Shift Paths",
translation:"剔除資料結構層 (Shift Paths)"
},{
name:"Path Mapper",
translation:"編層 (Path Mapper)"
},{
name:"Split Tree",
translation:"資料結構層篩選 (Split Tree)"
},{
name:"Stream Filter",
translation:"選取資料流 (Stream Filter)"
},{
name:"Stream Gate",
translation:"分流閘 (Stream Gate)"
},{
name:"Relative Item",
translation:"相對選取 (Relative Item)"
},{
name:"Tree Branch",
translation:"資料結構層選取 (Tree Branch)"
},{
name:"Relative Items",
translation:"相對流選取 (Relative Items)"
},{
name:"Tree Item",
translation:"挑選 (Tree Item)"
},{
name:"Construct Path",
translation:"創層次字串 (Construct Path)"
},{
name:"Deconstruct Path",
translation:"拆解層次字串 (Deconstruct Path)"
},{
name:"Replace Paths",
translation:"更換層次標號 (Replace Paths)"
},{
name:"Hexagonal",
translation:"六角型陣列 (Hexagonal)"
},{
name:"Radial",
translation:"放射型陣列 (Radial)"
},{
name:"Rectangular",
translation:"矩形陣列 (Rectangular)"
},{
name:"Square",
translation:"正方形陣列 (Square)"
},{
name:"Triangular",
translation:"三角形陣列 (Triangular)"
},{
name:"Populate 2D",
translation:"隨機創點2D (Populate 2D)"
},{
name:"Populate 3D",
translation:"隨機創點3D (Populate 3D)"
},{
name:"Populate Geometry",
translation:"形內隨機創點 (Populate Geometry)"
},{
name:"Deconstruct Plane",
translation:"拆解平面 (Deconstruct Plane)"
},{
name:"XZ Plane",
translation:"XZ平面 (XZ Plane)"
},{
name:"XY Plane",
translation:"XY平面 (XY Plane)"
},{
name:"YZ Plane",
translation:"YZ平面 (YZ Plane)"
},{
name:"Construct Plane",
translation:"創造平面 (Construct Plane)"
},{
name:"Line + Pt",
translation:"線點創平面 (Line + Pt)"
},{
name:"Plane Fit",
translation:"平面切合點 (Plane Fit)"
},{
name:"Plane Offset",
translation:"平面偏移 (Plane Offset)"
},{
name:"Line + Line",
translation:"線線創平面 (Line + Line)"
},{
name:"Plane 3Pt",
translation:"3點創平面 (Plane 3Pt)"
},{
name:"Plane Normal",
translation:"法線創平面 (Plane Normal)"
},{
name:"Plane Origin",
translation:"平面移原點 (Plane Origin)"
},{
name:"Adjust Plane",
translation:"對齊平面法線 (Adjust Plane)"
},{
name:"Align Planes",
translation:"平面對齊平面 (Align Planes)"
},{
name:"Plane Closest Point",
translation:"平面最點 (Plane Closest Point)"
},{
name:"Rotate Plane",
translation:"旋轉平面 (Rotate Plane)"
},{
name:"Align Plane",
translation:"對齊平面 (Align Plane)"
},{
name:"Flip Plane",
translation:"翻轉平面 (Flip Plane)"
},{
name:"Plane Coordinates",
translation:"新座標系統 (Plane Coordinates)"
},{
name:"Construct Point",
translation:"創點 (Construct Point)"
},{
name:"Numbers to Points",
translation:"座標創點 (Numbers to Points)"
},{
name:"Deconstruct",
translation:"拆解點 (Deconstruct)"
},{
name:"Points to Numbers",
translation:"點座標 (Points to Numbers)"
},{
name:"Point Cylindrical",
translation:"圓柱座標系點 (Point Cylindrical)"
},{
name:"Point Polar",
translation:"極座標系點 (Point Polar)"
},{
name:"Distance",
translation:"距離 (Distance)"
},{
name:"Point Oriented",
translation:"平面座標點 (Point Oriented)"
},{
name:"To Polar",
translation:"極座標系 (To Polar)"
},{
name:"Closest Point",
translation:"最近點 (Closest Point)"
},{
name:"Cull Duplicates",
translation:"剔除重複點 (Cull Duplicates)"
},{
name:"Project Point",
translation:"投影點 (Project Point)"
},{
name:"Sort Along Curve",
translation:"沿曲線排序 (Sort Along Curve)"
},{
name:"Closest Points",
translation:"最近點 (Closest Points)"
},{
name:"Point Groups",
translation:"點群組 (Point Groups)"
},{
name:"Pull Point",
translation:"拉點 (Pull Point)"
},{
name:"Sort Points",
translation:"排序點 (Sort Points)"
},{
name:"Deconstruct Vector",
translation:"拆解向量 (Deconstruct Vector)"
},{
name:"Vector XYZ",
translation:"向量XYZ (Vector XYZ)"
},{
name:"Unit Vector",
translation:"單位向量 (Unit Vector)"
},{
name:"Unit X",
translation:"X向量 (Unit X)"
},{
name:"Unit Y",
translation:"Y向量 (Unit Y)"
},{
name:"Unit Z",
translation:"Z向量 (Unit Z)"
},{
name:"Amplitude",
translation:"向量幅度 (Amplitude)"
},{
name:"Angle",
translation:"角度 (Angle)"
},{
name:"Cross Product",
translation:"向量積 (Cross Product)"
},{
name:"Dot Product",
translation:"內積 (Dot Product)"
},{
name:"Reverse",
translation:"逆向向量 (Reverse)"
},{
name:"Vector 2Pt",
translation:"2點向量 (Vector 2Pt)"
},{
name:"Vector Length",
translation:"向量長度 (Vector Length)"
},{
name:"Control Points",
translation:"控制點 (Control Points)"
},{
name:"Curve Middle",
translation:"線中點 (Curve Middle)"
},{
name:"Deconstruct Rectangle",
translation:"拆解矩形 (Deconstruct Rectangle)"
},{
name:"Polygon Center",
translation:"多邊形中心 (Polygon Center)"
},{
name:"Control Polygon",
translation:"多邊形控制點 (Control Polygon)"
},{
name:"Deconstruct Arc",
translation:"拆解弧 (Deconstruct Arc)"
},{
name:"End Points",
translation:"終點 (End Points)"
},{
name:"Closed",
translation:"是封閉 (Closed)"
},{
name:"Curve Closest Point",
translation:"線最近點 (Curve Closest Point)"
},{
name:"Curve Proximity",
translation:"線最近處 (Curve Proximity)"
},{
name:"Discontinuity",
translation:"不連續性處 (Discontinuity)"
},{
name:"Planar",
translation:"是平面 (Planar)"
},{
name:"Curvature Graph",
translation:"曲率梳 (Curvature Graph)"
},{
name:"Curve Nearest Object",
translation:"線最近物 (Curve Nearest Object)"
},{
name:"Curve Side",
translation:"線左右 (Curve Side)"
},{
name:"Curvature",
translation:"曲率 (Curvature)"
},{
name:"Derivatives",
translation:"導數 (Derivatives)"
},{
name:"Horizontal Frame",
translation:"水平平面 (Horizontal Frame)"
},{
name:"Horizontal Frames",
translation:"水平平面 (Horizontal Frames)"
},{
name:"Point on Curve",
translation:"線上點 (Point on Curve)"
},{
name:"Curve Frame",
translation:"線條平面 (Curve Frame)"
},{
name:"Curve Frames",
translation:"線條平面 (Curve Frames)"
},{
name:"Evaluate Curve",
translation:"評估線 (Evaluate Curve)"
},{
name:"Perp Frame",
translation:"垂直平面 (Perp Frame)"
},{
name:"Prep Frames",
translation:"垂直平面 (Prep Frames)"
},{
name:"Torsion",
translation:"扭轉 (Torsion)"
},{
name:"Curve Domain",
translation:"映射線條區間 (Curve Domain)"
},{
name:"Length",
translation:"長度 (Length)"
},{
name:"Length Parameter",
translation:"參數長度 (Length Parameter)"
},{
name:"Evaluate Length",
translation:"評估長度 (Evaluate Length)"
},{
name:"Length Domain",
translation:"區間長度 (Length Domain)"
},{
name:"Segment Lengths",
translation:"線段最長短 (Segment Lengths)"
},{
name:"Point In Curve",
translation:"線內點 (Point In Curve)"
},{
name:"Point In Curves",
translation:"線內點 (Point In Curves)"
},{
name:"Contour",
translation:"等高線 (Contour)"
},{
name:"Contour (ex)",
translation:"等高線(進階) (Contour (ex))"
},{
name:"Dash Pattern",
translation:"虛線 (Dash Pattern)"
},{
name:"Divide Curve",
translation:"等長分割 (Divide Curve)"
},{
name:"Divide Distance",
translation:"等距分割 (Divide Distance)"
},{
name:"Divide Length",
translation:"長度分割 (Divide Length)"
},{
name:"Shatter",
translation:"打碎 (Shatter)"
},{
name:"Fit Line",
translation:"線切合點 (Fit Line)"
},{
name:"Line 2Plane",
translation:"平面連接線 (Line 2Plane)"
},{
name:"Line SDL",
translation:"線始向長 (Line SDL)"
},{
name:"Tangent Lines",
translation:"點圓切線 (Tangent Lines)"
},{
name:"Tangent Lines (Ex)",
translation:"外公切線 (Tangent Lines (Ex))"
},{
name:"Tangent Lines (ln)",
translation:"內公切線 (Tangent Lines (ln))"
},{
name:"Line 4Pt",
translation:"線點點線 (Line 4Pt)"
},{