tutorial-shapes.fa.svg revision 40e5cf3e8f0ddda79b1650df77d0f847a22822bf
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico<?xml version="1.0" encoding="UTF-8" standalone="no"?>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. -->
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico<svg id="svg1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" sodipodi:docname="tutorial-shapes.fa.svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" inkscape:output_extension="org.inkscape.output.svg.inkscape" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.48+devel r10003 custom" xmlns:dc="http://purl.org/dc/elements/1.1/">
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="25" showgrid="false" snaptoguides="true" inkscape:window-maximized="0" inkscape:zoom="2" inkscape:current-layer="svg1" inkscape:cx="113.5" inkscape:cy="3870.5284" inkscape:guide-bbox="true" inkscape:window-width="1272" showborder="false" inkscape:window-height="728" showguides="true"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="stop842" stop-color="#0082ab" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="stop843" stop-color="#FFF" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="linearGradient10637" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.149642,0,0,0.465194,-0.130153,3547.428)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="linearGradient10701" y2="137.03" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.911" gradientTransform="matrix(2.1493108,0,0,0.4652654,0,-10)" y1="25.402" x1="76.911" inkscape:collect="always"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <filter id="filter1149" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom">
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feFlood id="feFlood1151" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feComposite id="feComposite1153" operator="in" result="composite1" in2="SourceGraphic" in="flood"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feGaussianBlur id="feGaussianBlur1155" result="blur" stdDeviation="20" in="composite1"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feOffset id="feOffset1157" result="offset" dx="0" dy="0"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feComposite id="feComposite1159" operator="over" result="composite2" in2="offset" in="SourceGraphic"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <filter id="filter1168" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-0.1" x="-0.1" inkscape:label="Drop shadow, custom">
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feFlood id="feFlood1170" result="flood" flood-color="rgb(255,255,255)" flood-opacity="0.686275"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feComposite id="feComposite1172" operator="in" result="composite1" in2="SourceGraphic" in="flood"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feGaussianBlur id="feGaussianBlur1174" result="blur" stdDeviation="20" in="composite1"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feOffset id="feOffset1176" result="offset" dx="0" dy="0"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <feComposite id="feComposite1178" operator="over" result="composite2" in2="offset" in="SourceGraphic"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f07.svgtext5477" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="140%" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="139.99999762%" font-style="normal" y="2678.0901" x="40.178955" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f07.svgtspan5480" y="2678.0901" x="40.178955" sodipodi:role="line">سه مستطیل اصلی</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y="-9.7225" x="0.18215" fill="url(#linearGradient10701)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path93" stroke-width="1pt" fill="#FFF" d="M150.97,0.46934h-9.58v0.61296h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2075,0.3782c0,0.5477-0.14,0.6129-1.43,0.6129h-0.29v0.613h9.79l0.31-3.482h-0.7c-0.2,0.9129-0.57,1.7214-0.95,2.0996-0.5,0.5217-1.41,0.7694-2.74,0.7694h-1.06c-0.48,0-0.87-0.0782-1.02-0.1956-0.11-0.0782-0.12-0.1565-0.12-0.4303v-3.3255h0.31c0.98,0,1.37,0.0783,1.69,0.3521,0.42,0.3391,0.58,0.7564,0.61,1.5258h0.75v-4.2774h-0.75c-0.08,1.278-0.72,1.7866-2.23,1.7866h-0.38v-2.9734c0-0.5607,0.14-0.652,1-0.652h0.83c1.4,0,2.09,0.1173,2.63,0.4825,0.52,0.3391,0.91,1.0694,1.15,2.243h0.68l-0.22-3.3385zm-21.15,5.2295h1.8c1.43,0,2.18-0.0913,2.82-0.3391,1.13-0.4434,1.77-1.278,1.77-2.3082,0-0.9912-0.56-1.7475-1.61-2.1779-0.62-0.26082-1.61-0.40427-2.71-0.40427h-5.58v0.61296h0.29c1.29,0,1.43,0.0652,1.43,0.6129v0.3782,6.2075,0.3782c0,0.5477-0.14,0.6129-1.43,0.6129h-0.29v0.613h5.36v-0.613h-0.42c-1.29,0-1.43-0.0652-1.43-0.6129v-0.3782-2.5821zm0-0.6129v-3.3385c0-0.5999,0.09-0.6651,0.97-0.6651h1.02c1.66,0,2.44,0.639,2.44,2.0213,0,1.3433-0.81,1.9823-2.5,1.9823h-1.93zm-13.87-4.7991h-0.67l-3.67,7.6029c-0.31,0.6781-0.38,0.7694-0.62,0.9781-0.25,0.2477-0.7,0.4042-1.13,0.4042h-0.06v0.613h4.22v-0.613h-0.32c-0.86,0-1.29-0.2477-1.29-0.7433,0-0.1565,0.05-0.3391,0.14-0.5477l0.53-1.1476h4.22l0.87,1.7475c0.09,0.1956,0.12,0.2869,0.12,0.3521,0,0.2086-0.4,0.339-0.99,0.339h-0.66v0.613h4.94v-0.613h-0.23c-0.79,0-0.97-0.1043-1.34-0.8346l-4.06-8.1506zm-0.78,2.1387l1.8,3.7037h-3.57l1.77-3.7037zm-11-2.0474h-0.61l-0.63,0.76944c-1.13-0.67816-1.76-0.87377-2.82-0.87377-1.55,0-2.825,0.5086-3.909,1.5649-1.02,0.9912-1.498,2.0866-1.498,3.4298,0,2.8039,2.247,4.8126,5.387,4.8126,2.55,0,4.18-1.2263,4.54-3.4172l-0.75-0.1043c-0.16,0.6912-0.35,1.1607-0.63,1.5519-0.66,0.8998-1.68,1.3562-2.97,1.3562-2.358,0-3.473-1.3432-3.473-4.147,0-1.4736,0.239-2.4647,0.781-3.2472,0.494-0.7303,1.482-1.1867,2.502-1.1867,1.12,0,2.1,0.48254,2.71,1.3171,0.3,0.4304,0.54,0.939,0.91,1.9431h0.7l-0.24-3.7688zm-15.955,0.01304h-0.589l-0.638,0.7825c-0.749-0.58689-1.769-0.89987-2.901-0.89987-2.088,0-3.491,1.0955-3.491,2.7256,0,1.4215,0.861,2.1257,3.204,2.6212l1.514,0.313c1.18,0.2478,1.291,0.2739,1.626,0.4825,0.478,0.3,0.733,0.7303,0.733,1.2389,0,0.5217-0.239,0.952-0.717,1.3042-0.526,0.3781-1.052,0.5216-1.928,0.5216-1.18,0-2.025-0.3-2.774-0.9781-0.669-0.6129-1.004-1.2258-1.243-2.23h-0.686l0.064,3.7167h0.622l0.717-0.8868c1.068,0.7173,1.961,0.9785,3.347,0.9785,2.343,0,3.842-1.1219,3.842-2.8694,0-0.8086-0.335-1.4998-0.957-1.9953-0.43-0.3391-1.052-0.5608-2.327-0.8216l-1.705-0.3521c-1.419-0.3-2.088-0.8086-2.088-1.6041,0-0.9128,0.908-1.5388,2.263-1.5388,1.116,0,2.024,0.39121,2.662,1.1346,0.462,0.5346,0.749,1.0824,0.956,1.7475h0.686l-0.192-3.3907zm-21.55,5.2294v-3.5471-0.3782c0-0.5477,0.144-0.6129,1.435-0.6129h0.303v-0.61296h-5.244v0.61296h0.287c1.291,0,1.434,0.0652,1.434,0.6129v0.3782,6.2075,0.3782c0,0.5477-0.143,0.6129-1.434,0.6129h-0.287v0.613h5.244v-0.613h-0.303c-1.291,0-1.435-0.0652-1.435-0.6129v-0.3782-1.6562l1.849-1.5258,2.774,3.3255c0.255,0.313,0.319,0.4173,0.319,0.5477,0,0.2086-0.303,0.2999-1.084,0.2999h-0.494v0.613h5.451v-0.613h-0.303c-0.877,0-1.1-0.0913-1.562-0.652l-3.857-4.5513,2.375-1.9431c0.765-0.6651,1.737-1.0433,2.693-1.0433v-0.61296h-4.909v0.61296h0.399c0.733,0,1.036,0.1173,1.036,0.3912,0,0.1826-0.319,0.5608-0.781,0.939l-3.906,3.208zm-17.82-5.1512h-3.283v0.61296h0.398c0.813,0,1.18,0.1043,1.467,0.4303v5.5425c0,1.7866-0.319,2.1648-1.849,2.2169v0.613h4.543v-0.613c-1.515-0.0521-1.834-0.4303-1.834-2.2169v-4.8383l7.109,7.8512h0.67v-6.7688c0-1.7866,0.319-2.1648,1.849-2.2169v-0.61296h-4.543v0.61296c1.514,0.0521,1.833,0.4303,1.833,2.2169v4.0949l-6.36-6.9248zm-10.36,1.6041v-0.3782c0-0.5477,0.143-0.6129,1.418-0.6129h0.319v-0.61296h-5.276v0.61296h0.319c1.291,0,1.435,0.0652,1.435,0.6129v0.3782,6.2075,0.3782c0,0.5477-0.144,0.6129-1.435,0.6129h-0.319v0.613h5.276v-0.613h-0.319c-1.275,0-1.418-0.0652-1.418-0.6129v-0.3782-6.2075z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1124" d="M139.23,7.9597h1.5l-0.92,3.0203h1.69l-0.15,0.492h-1.69l-0.41,1.242c-0.34,1.057-0.7,2.335-1.09,3.834-0.39,1.485-0.58,2.349-0.58,2.592,0,0.328,0.15,0.492,0.45,0.492,0.53,0,1.17-0.728,1.91-2.184,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.156-0.97,1.899-1.24,2.227-0.59,0.7-1.21,1.05-1.87,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.093,0-0.399,0.07-0.849,0.2-1.349,0.14-0.557,0.6-2.156,1.37-4.798l0.36-1.242h-1.71l0.17-0.492h1.71l1.03-3.0203zm10.77,2.8483h1.6c-1.35,4.327-2.03,7.068-2.03,8.225,0,0.428,0.11,0.642,0.34,0.642,0.27,0,0.59-0.257,0.97-0.771,0.38-0.528,0.72-1.178,1-1.949l0.47,0.193c-0.75,2.142-1.7,3.213-2.82,3.213-0.97,0-1.46-0.543-1.46-1.628,0-0.286,0.04-0.75,0.11-1.392-0.56,0.856-1.01,1.478-1.35,1.863-0.69,0.771-1.47,1.157-2.34,1.157-0.51,0-0.94-0.179-1.28-0.536s-0.52-0.799-0.52-1.328c0-0.257,0.22-1.121,0.65-2.591l0.38-1.328c0.43-1.471,0.64-2.378,0.64-2.72,0-0.272-0.09-0.407-0.27-0.407-0.6,0-1.4,0.942-2.38,2.827l-0.47-0.236c1.08-2.227,2.17-3.341,3.27-3.341,0.4,0,0.73,0.15,0.97,0.45,0.26,0.3,0.38,0.692,0.38,1.178,0,0.6-0.14,1.349-0.42,2.249l-0.58,1.82c-0.47,1.485-0.71,2.349-0.71,2.592,0,0.5,0.26,0.75,0.77,0.75,0.46,0,0.96-0.279,1.5-0.836,0.56-0.557,1.06-1.292,1.5-2.206,0.67-1.385,1.36-3.348,2.08-5.89zm6.33-2.8483h1.5l-0.92,3.0203h1.69l-0.15,0.492h-1.69l-0.41,1.242c-0.34,1.057-0.71,2.335-1.09,3.834-0.39,1.485-0.58,2.349-0.58,2.592,0,0.328,0.15,0.492,0.45,0.492,0.53,0,1.16-0.728,1.91-2.184,0.07-0.157,0.18-0.35,0.32-0.578l0.43,0.214c-0.56,1.156-0.97,1.899-1.25,2.227-0.58,0.7-1.2,1.05-1.86,1.05-0.44,0-0.8-0.136-1.07-0.407-0.27-0.286-0.41-0.65-0.41-1.093,0-0.399,0.07-0.849,0.2-1.349,0.14-0.557,0.6-2.156,1.37-4.798l0.36-1.242h-1.71l0.17-0.492h1.71l1.03-3.0203zm7.41,3.2343c-1.03-0.057-1.94,0.971-2.74,3.084-0.56,1.471-0.84,2.791-0.84,3.962,0,1.085,0.48,1.628,1.44,1.628,0.77,0,1.44-0.493,2.01-1.478,0.37-0.628,0.69-1.456,0.97-2.484,0.27-1.043,0.42-2.021,0.47-2.934,0.05-1.129-0.38-1.721-1.31-1.778zm-0.02-0.493c0.84,0,1.53,0.336,2.06,1.007,0.52,0.657,0.79,1.513,0.79,2.57,0,1.299-0.47,2.613-1.39,3.941-1,1.428-2.22,2.142-3.65,2.142-0.87,0-1.58-0.3-2.14-0.9-0.55-0.614-0.83-1.392-0.83-2.334,0-1.6,0.58-3.113,1.75-4.541,1.03-1.257,2.17-1.885,3.41-1.885zm4.18,3.384l-0.45-0.193c0.37-0.913,0.82-1.67,1.35-2.27,0.52-0.614,0.99-0.921,1.41-0.921,0.93,0,1.39,0.678,1.39,2.035,0,0.243-0.04,0.728-0.13,1.456,0.99-2.327,2.04-3.491,3.15-3.491,0.32,0,0.58,0.1,0.79,0.3,0.23,0.186,0.35,0.414,0.35,0.685,0,0.229-0.08,0.422-0.24,0.579s-0.35,0.235-0.58,0.235c-0.48,0-0.73-0.278-0.73-0.835,0-0.157-0.05-0.236-0.15-0.236-0.14,0-0.34,0.129-0.6,0.386-0.25,0.257-0.47,0.557-0.66,0.899-0.57,1.029-1.5,3.484-2.78,7.368h-1.61c0.67-2.013,1.11-3.484,1.31-4.412,0.31-1.456,0.47-2.513,0.47-3.17,0-0.699-0.12-1.049-0.35-1.049-0.2,0-0.49,0.257-0.87,0.771-0.37,0.514-0.73,1.135-1.07,1.863zm12.1-8.2242c0.27,0,0.5,0.0999,0.68,0.2998,0.2,0.1856,0.3,0.4141,0.3,0.6854s-0.1,0.5069-0.3,0.7068c-0.18,0.1999-0.41,0.2998-0.68,0.2998s-0.51-0.0999-0.71-0.2998-0.3-0.4355-0.3-0.7068,0.1-0.4998,0.3-0.6854c0.2-0.1999,0.44-0.2998,0.71-0.2998zm0.32,11.244l0.43,0.214c-0.96,2.028-2,3.042-3.13,3.042-0.4,0-0.73-0.143-0.99-0.429-0.25-0.3-0.38-0.678-0.38-1.135,0-0.314,0.04-0.607,0.13-0.878,0.08-0.271,0.32-0.878,0.7-1.82l0.82-1.95c0.48-1.156,0.73-1.934,0.73-2.334,0-0.286-0.13-0.428-0.37-0.428-0.5,0-1.18,0.785-2.05,2.356l-0.43-0.257c1.01-1.857,1.98-2.785,2.91-2.785,0.39,0,0.7,0.143,0.94,0.429,0.25,0.285,0.37,0.656,0.37,1.113,0,0.543-0.3,1.55-0.88,3.02l-0.9,2.249c-0.37,0.928-0.56,1.535-0.56,1.821,0,0.257,0.12,0.385,0.34,0.385,0.28,0,0.63-0.243,1.05-0.728,0.45-0.5,0.87-1.128,1.27-1.885zm7.26-5.868c-0.43-0.029-0.93,0.221-1.5,0.749-0.56,0.514-1.08,1.207-1.56,2.078-0.97,1.728-1.46,3.177-1.46,4.348,0,0.913,0.36,1.37,1.07,1.37,1.16,0,2.25-1.135,3.28-3.405,0.7-1.542,1.09-2.82,1.18-3.834,0.02-0.371-0.05-0.678-0.24-0.921s-0.44-0.371-0.77-0.385zm1.8-0.257h1.52c-0.36,0.956-0.84,2.356-1.46,4.198-0.65,1.984-0.98,3.334-0.98,4.048,0,0.299,0.11,0.449,0.34,0.449,0.5,0,1.2-0.971,2.1-2.913l0.47,0.193c-0.6,1.3-1.11,2.192-1.54,2.677-0.43,0.486-0.92,0.729-1.46,0.729-0.88,0-1.33-0.4-1.33-1.2,0-0.214,0.07-0.649,0.2-1.306-1.02,1.685-2.1,2.527-3.26,2.527-0.73,0-1.32-0.243-1.78-0.728-0.45-0.486-0.68-1.121-0.68-1.906,0-1.628,0.64-3.206,1.93-4.734,1.28-1.542,2.6-2.313,3.96-2.313,0.71,0,1.25,0.393,1.63,1.178l0.34-0.899zm4.4-4.6909l0.12-0.4926c1.08-0.0428,2.29-0.1142,3.65-0.2142-0.12,0.3856-0.2,0.664-0.26,0.8353-0.16,0.4427-0.38,1.1138-0.67,2.0133l-1.73,5.6541c-0.83,2.699-1.24,4.355-1.24,4.969,0,0.443,0.13,0.664,0.38,0.664,0.36,0,0.8-0.385,1.33-1.156,0.27-0.4,0.58-0.929,0.92-1.585l0.49,0.235c-0.42,0.786-0.75,1.342-0.96,1.671-0.66,0.985-1.41,1.478-2.25,1.478-0.43,0-0.78-0.157-1.05-0.472-0.27-0.314-0.4-0.713-0.4-1.199,0-0.6,0.24-1.692,0.72-3.277l1.89-6.1468c0.41-1.3565,0.62-2.1204,0.62-2.2917,0-0.257-0.1-0.4284-0.3-0.514-0.2-0.1-0.62-0.1571-1.26-0.1714z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-width="1pt" fill="#FFF"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use1325" opacity="0.0786517" xlink:href="#path93" transform="matrix(2.39436,0,0,2.331219,-82.96365,-8.5160328)" height="1052.3622" width="320" y="0" x="0"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <g id="g839" filter="url(#filter1168)" fill-rule="evenodd" transform="matrix(0.058837,0,0,0.058837,-4.7689003,-7.7879435)">
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path805" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1791" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1792" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1793" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path831" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <use id="use2086" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="nonzero" xlink:href="#path1124" transform="matrix(3.799079,0,0,3.799079,-428.7368,-23.903979)" height="1052.3622" fill-opacity="0.110769" width="320" y="0" x="0" font-family="Sans" fill="#ffffff"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="text1920" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" font-size="7.91511011px" font-style="normal" font-stretch="normal" font-variant="normal" y="16.153883" x="199.28496" font-family="Sans" fill="#ffffff">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan1668" style="letter-spacing:2.46647263;" dx="0 -0.64516127 0 0 0 0 0" fill="#ffffff">::SHAPES</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico<!--Author: bulia byak, buliabyak@users.sf.net-->
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e15" display="none" height="1000px" width="264" y="36" x="35"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2425" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="7.19999981px" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" line-height="150%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2427">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2429" xlink:href="#d0e15" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2431" xml:space="preserve">این آموزش گام به گام چهار ابزار ترسیم شکل را پوشش میدهد: مستطیل، بیضی، ستاره و مارپیچ. ما قابلیتهای اشکال Inkscape را شرح میدهیم و مثالهایی از چگونگی و زمان استفاده از آنها خواهیم آورد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e18" display="none" height="1000px" width="264" y="70.568" x="35"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2434" style="writing-mode:lr-tb;text-anchor:start;" font-family="Sans" font-size="7.19999981px" line-height="150%" font-style="italic" font-weight="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2436">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2438" xlink:href="#d0e18" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2440" xml:space="preserve"><flowSpan id="flowSpan4063" font-family="DejaVu Sans" font-style="normal" font-stretch="normal" font-variant="normal" font-weight="normal"><flowSpan id="flowSpan4065" style="text-anchor:middle;text-align:center;"><flowSpan id="flowSpan4067" style="text-anchor:start;text-align:start;">از <flowSpan id="flowSpan4071" font-weight="bold">Ctrl+کلیدهای جهتدار</flowSpan>، چرخک ماوس یا <flowSpan id="flowSpan4069" font-weight="bold">درگ کردن با کلیک وسط</flowSpan> ماوس برای پیمایش صفحه به سمت پایین استفاده کنید. برای مفاهیم پایهای ساخت اشیا، انتخاب کردن و تغییر شکل آموزش پایهای را ببینید. </flowSpan></flowSpan></flowSpan></flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e36" display="none" height="1000px" width="288" y="111.14" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2451" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(8,0)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2453">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2455" xlink:href="#d0e36" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2457" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">نرم افزارInkscape چهار ابزار ترسیم شکل گسترده دارد، که هر ابزار قادر به ساختن و ویرایش اشکالی از نوع خودش است. یک شکل، شئای است که شما میتوانید آن را به روشهایی که مختص همان نوع شکل است تغییر دهید، با استفاده از اهرمهای قابل درگ شدن و پارامترهای عددی است که شکل، نمایی ظاهری پیدا میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e48" display="none" height="1000px" width="288" y="173.95" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2466" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(7.0197216,0)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2468">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2470" xlink:href="#d0e48" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2472" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">به عنوان مثال، در مورد ستاره، شما میتوانید تعداد پرهها، طول، زاویه و تیزی و... آن را تغییر دهید – اما یک ستاره، یک ستاره باقی میماند. یک شکل آزادی کمتری نسبت به یک مسیر مشابهاش دارد. اما اغلب جالبتر و مفیدتر است. همیشه میتوانید یک شئ را به مسیر تبدیل کنید (<flowSpan id="flowSpan4087" font-weight="bold">Ctrl+Shift+C</flowSpan>) اما برعکس آن امکان ندارد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e54" display="none" height="1000px" width="288" y="236.79" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2477" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.9589868,0)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2479">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2481" xlink:href="#d0e54" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2483" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">ابزارهای ترسیم شکل، مستطیل Rectangle، بیضی Ellipse، ستاره Star و مارپیچ Spiral هستند. ابتدا، نگاهی میکنیم به اینکه ابزارهای ترسیم شکل به طور کلی چطور کار میکنند؛ سپس هر نوع شکل را به تفضیل بررسی خواهیم کرد.</flowDiv>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="text2493" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" font-size="8.5px" font-style="normal" y="290.98346" x="252.52182" font-family="Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan2495" font-weight="bold" font-style="normal" font-stretch="normal" font-variant="normal" y="290.98346" x="252.52182" font-family="DejaVu Sans">نکات عمومی</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e75" display="none" height="1000px" width="288" y="295.88" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2498" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.3396421,0)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2500">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2502" xlink:href="#d0e75" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2504" xml:space="preserve">یک شکل جدید با <flowSpan id="flowSpan4085" font-weight="bold">درگ</flowSpan> کردن ماوس با ابزار مربوطه در صفحه ساخته میشود. وقتی شکل ساخته شد (و تا زمانی که انتخاب شده باشد) اهرمهایی به شکل چهارگوش سفید نشان میدهد، به این ترتیب شما میتوانید شکل ساخته شده را با کشیدن این اهرمها بلافاصله ویرایش کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e81" display="none" height="1000px" width="288" y="357.07" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2509" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(7.3396475,0)" font-size="8.39999962px" font-stretch="normal" line-height="133.00000429%" font-variant="normal" font-family="DejaVu Sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2511">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2513" xlink:href="#d0e81" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2515" xml:space="preserve" style="text-anchor:start;text-align:start;">هر چهار نوع شکل، اهرمهایشان را در چهار نوع ابزار به خوبی حالتی که ابزار گره Node tool (کلید F2) انتخاب شده باشد، نمایش میدهند. وقتی ماوس را روی یک اهرم قرار دهید، در نوار وظیفه (status bar: نوار موجود در منتهاالیه پایین پنجره) به شما می گوید که در صورتیکه این اهرم کشیده شود یا با تغییر دهندههای مختلف کلیک شود چه کاری انجام خواهد داد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e87" display="none" height="1000px" width="288" y="408.86" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2520" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" transform="translate(7.4386902,26)" font-size="8.39999961999999911px" font-stretch="normal" line-height="133.00000428999999258%" font-variant="normal" font-family="DejaVu Sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2522">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2524" xlink:href="#d0e87" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2526" xml:space="preserve">همچنین، هر ابزار ترسیم شکل پارامترهای خودش را در نوار کنترل ابزار (Tool Controls bar) نمایش میدهد (نواری افقی است که در بالای صفحه نمایش داده میشود). معمولا این نوار چند فیلد عددی برای وارد کردن عددها و یک دکمه برای برگرداندن عددها به مقادیر پیشفرضشان دارد. وقتی اشکالی از نوع ابزاری که فعال است، انتخاب شده باشد تغییر دادن مقادیر نوار کنترل بر اشکال انتخاب شده تاثیر میگذارد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e93" display="none" height="1000px" width="288" y="482.85" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2531" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.729907,26)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2533">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2535" xlink:href="#d0e93" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2537" xml:space="preserve">هر تغییری که در نوار کنترلهای ابزار (Tool Controls) اعمال شود برای شئ بعدیای که بوسیله آن ابزار ترسیم شود، اعمال خواهد شد و inkscape این تنظیمات را به خاطر میسپارد. به عنوان مثال، اگر تعداد گوشههای یک ستاره را تغییر دهید، ستارههای جدید وقتی ترسیم شوند به همین تعداد گوشه خواهند داشت. علاوه بر این، هر زمان که یک شکل انتخاب شود، پارامترهای آن به نوار کنترلهای ابزار (Tool Controls bar) ارسال میشود و بنابراین مقادیر اشیاء جدید از آن نوع بر اساس آن تنظیم میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e96" display="none" height="1000px" width="288" y="556.95" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2540" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345771,38)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2542">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2544" xlink:href="#d0e96" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2546" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">وقتی یک ابزار ترسیم شکل را فعال کرده باشید، انتخاب کردن یک شئ میتواند با <flowSpan id="flowSpan5175" font-weight="bold">کلیک</flowSpan> کردن روی آن اتفاق بیافتد. کلید <flowSpan id="flowSpan5173" font-weight="bold">Ctrl+کلیک</flowSpan> (انتخاب در یک گروه) و <flowSpan id="flowSpan5177" font-weight="bold">Alt+کلیک</flowSpan> (انتخاب شئ زیرین) به خوبی حالتی که ابزار انتخاب (Selector tool) فعال باشد، قابل اجرا خواهند بود. کلید <flowSpan id="flowSpan5171" font-weight="bold">Esc</flowSpan> نیز اقلام انتخاب شده را از حالت انتخاب خارج میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="text2556" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="bold" font-size="8.5px" font-style="normal" font-stretch="normal" font-variant="normal" y="673.18854" x="260.24933" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan2558" style="text-anchor:start;text-align:start;" font-weight="bold" font-style="normal" font-stretch="normal" font-variant="normal" y="673.18854" x="260.24933" font-family="DejaVu Sans">مستطیلها</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e117" display="none" height="1000px" width="288" y="616.09" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2561" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.7298891,62)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2563">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2565" xlink:href="#d0e117" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2567" xml:space="preserve">یک مستطیل سادهترین و شاید پرکاربردترین شکل در طراحی و ترسیم است. Inkscape تلاش میکند تا ساختن و ویرایش مستطیلها را تا حد امکان آسان و مناسب کند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e123" display="none" height="1000px" width="288" y="656.68" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2572" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.114662,62)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2574">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2576" xlink:href="#d0e123" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2578" xml:space="preserve">با زدن کلید <flowSpan id="flowSpan5179" font-weight="bold">F4</flowSpan> یا با کلیک کردن روی دکمهی آن در نوار ابزار، به ابزار ترسیم مستطیل (Rectangle tool) سوییچ کنید. یک مستطیل جدید در کنار این مستطیل آبی رنگ ترسیم کنید:</flowDiv>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f01.svgtext1578" opacity="0.065573759" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="translate(10, 694.1010380000001) " font-style="normal" font-stretch="normal" font-size="16.799999" font-variant="normal" y="26.427183" x="44.104698" font-family="Serif" fill="#000000"><tspan id="shapes-f01.svgtspan1451" y="26.427183" x="44.104698" sodipodi:role="line">draw here</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f01.svgrect1449" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.75" stroke-dashoffset="0" height="53.706" width="77.318" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="762.73" x="194.79" stroke-width="1pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e139" display="none" height="1000px" width="288" y="761.06" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2586" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.1277469,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2588">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2590" xlink:href="#d0e139" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2592" xml:space="preserve">سپس، بدون رها کردن ابزار مستطیل، روی هر یک از مستطیلها کلیک کنید تا انتخاب شود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e142" display="none" height="1000px" width="288" y="790.48" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2595" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.0949391,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2597">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2599" xlink:href="#d0e142" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2601" xml:space="preserve">میانبرهای ترسیم مستطیل:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle2603" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(301,882.72578)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e148" display="none" height="1000px" width="258" y="808.73" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2606" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(18.004699,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2608">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2610" xlink:href="#d0e148" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2612" xml:space="preserve">با نگه داشتن <flowSpan id="flowSpan5181" font-weight="bold">Ctrl</flowSpan>، میتوانید یک مربع بکشید یا مستطیلهایی با نسبت طول به عرض 2:1،3:1 و غیره ترسیم کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle2616" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(301,912.14602)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e155" display="none" height="1000px" width="258" y="838.15" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2619" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(18,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2621">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2623" xlink:href="#d0e155" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2625" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5183" font-weight="bold">Shift</flowSpan>، نقطهی شروع ترسیم شکل، مرکز آن در نظر گرفته میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e162" display="none" height="1000px" width="288" y="856.39" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2630" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.7299012,80)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2632">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2634" xlink:href="#d0e162" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2636" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">همانطور که میبینید، مستطیل انتخاب شده باشد (مستطیلی که تازه ترسیم شده است، به صورت پیشفرض انتخاب میشود) سه اهرم در سه گوشهاش نشان میدهد. در واقع، اینها چهار اهرم هستند، که وقتی گوشههای مستطیل گرد نشده باشند دو تای آنها در گوشه سمت راست بالا روی هم میافتند. این دو اهرم، اهرمهای گرد کردن گوشههای مستطیل هستند؛ و دو اهرم دیگر (بالا سمت چپ و پایین سمت راست) اهرمهای تغییر اندازه مستطیل هستند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e171" display="none" height="1000px" width="288" y="928.76" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2643" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345862,86)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2645">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2647" xlink:href="#d0e171" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2649" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">ابتدا بیایید نگاهی به اهرمهای گرد کردن بیاندازیم. یکی از آنها را گرفته و به سمت پایین درگ کنید. هر چهار گوشهی مستطیل گرد میشوند، و حالا میتوانید دومین اهرم گرد کردن را ببینید – این اهرم در موقعیت اصلیش در گوشه میماند. اگر گوشههای گرد شدهی دایرهای میخواهید، تا همینجا کار تمام است. اما اگر گوشههایی میخواهید که از یک طرف بیشتر از طرف دیگر گرد شده باشد، میتوانید اهرم دوم را به سمت چپ حرکت دهید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e174" display="none" height="1000px" width="288" y="1012.3" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2652" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.434585,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2654">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2656" xlink:href="#d0e174" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2658" xml:space="preserve">در اینجا، دو مستطیل اول گوشههای گرد شدهی دایرهای دارند و دو مستطیل دیگر گوشههای بیضوی دارند:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f02.svgtext3150" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="default" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="1131.5895" x="210" font-family="DejaVu Sans Mono" sodipodi:linespacing="120%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="shapes-f02.svgtspan3157" sodipodi:role="line" x="210" y="1131.5895"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan5187" sodipodi:role="line" x="210" y="1138.7401">گوشههای گرد شده بیضوی</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f02.svgtext3143" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="1124.9656" x="57.265598" font-family="DejaVu Sans Mono" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f02.svgtspan3144" sodipodi:role="line" x="57.265598" y="1124.9656"/><tspan id="shapes-f02.svgtspan3146" font-family="DejaVu Sans Mono" font-style="normal" font-stretch="normal" font-variant="normal" font-weight="normal"/><tspan id="shapes-f02.svgtspan3148" sodipodi:role="line" x="57.265598" y="1132.1162">گوشههای گرد شده دایرهای</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f02.svgrect1185" fill-rule="evenodd" fill-opacity="0.75" ry="7.1429" height="33.94" width="56.849" stroke="#000" y="1145.4" x="27.277" stroke-width="1pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f02.svgrect1186" fill-rule="evenodd" fill-opacity="0.75" ry="16.97" height="33.94" width="56.849" stroke="#000" y="1145.4" x="102" stroke-width="1pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f02.svgrect1187" fill-rule="evenodd" fill-opacity="0.75" rx="6.6372" ry="16.97" height="33.94" width="56.849" stroke="#000" y="1145.4" x="178.13" stroke-width="1pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f02.svgrect1188" fill-rule="evenodd" fill-opacity="0.75" rx="24.046" ry="5.9394" height="33.94" width="56.849" stroke="#000" y="1145.4" x="252.69" stroke-width="1pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e187" display="none" height="1000px" width="288" y="1108" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2675" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345849,84)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2677">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2679" xlink:href="#d0e187" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2681" xml:space="preserve">همچنان ابزار مستطیل را فعال نگاه داشته، روی هر یک از این مستطیلها کلیک کنید تا انتخاب شوند و موقعیت اهرمهای گرد کردنشان را ببینید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e190" display="none" height="1000px" width="288" y="1137.4" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2684" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345816,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2686">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2688" xlink:href="#d0e190" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2690" xml:space="preserve">اغلب، شعاع و شکل گوشههای گرد شده باید در سراسر طرح هنری (کمپوزیسیون) ثابت باشد، حتی اگر اندازه مستطیلها متفاوت باشد (دیاگرامهای با جعبههای گوشهگرد در اندازههای متفاوت را به یاد بیاورید). Inkscape این را آسان کرده است. به ابزار انتخاب (Selector tool) سوییچ کنید؛ در نوار کنترلهای ابزار (Tool Controls bar)، یک گروه چهارتایی از دکمههای ضامن-مانند وجود دارد، دومین دکمه از سمت چپ دو گوشه هم مرکز گرد شده را نشان میدهد. با فعال کردن آن میتوانید گوشههای گرد شده را صرفنظر از اینکه مستطیل مقیاس شده باشد یا نه، کنترل کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv5189" xml:space="preserve">به عنوان مثال، اینجا مستطیل قرمز اصلی، چندین بار اینجا و آنجا و با نسبت های مختلف تکثیر و مقیاس شده است. در حالتی که دکمه “Scale rounded corners” فعال نبوده است:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e193" display="none" height="1000px" width="288" y="1233.9" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f03.svgtext3161" style="writing-mode:lr-tb;text-anchor:end;text-align:end;" line-height="139.99999762%" font-weight="normal" sodipodi:linespacing="140%" font-size="5.95887566px" font-style="normal" font-stretch="normal" font-variant="normal" y="1495.9116" x="151.09143" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="tspan5200" y="1495.9116" x="151.09143" sodipodi:role="line">مقیاس کردن مستطیلهای گوشه گرد با </tspan><tspan id="tspan5204" y="1504.254" x="151.09143" sodipodi:role="line">خاموش بودن “Scale rounded corners”</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2134" style="stroke-dasharray:0.625, 1.25;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6372" ry="16.97" stroke-dashoffset="0" height="122.77" width="196.91" stroke="#000" stroke-miterlimit="4" y="1359" x="79.228" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2133" style="stroke-dasharray:0.625, 1.25;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6372" ry="16.97" stroke-dashoffset="0" height="63.106" width="196.91" stroke="#000" stroke-miterlimit="4" y="1359" x="79.228" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2756" style="stroke-dasharray:0.625, 1.25;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6372" ry="16.97" stroke-dashoffset="0" height="105.78" width="151.47" stroke="#000" stroke-miterlimit="4" y="1359" x="124.8" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2130" fill-rule="evenodd" fill-opacity="0.75" rx="6.6372" ry="16.97" stroke-dashoffset="0" height="63.106" width="82.83" stroke="#000" stroke-miterlimit="4" y="1359" x="193.43" stroke-width="0.625" fill="#ff0004"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2757" style="stroke-dasharray:0.625, 1.25;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6371" ry="16.97" stroke-dashoffset="0" height="55.115" width="60.756" stroke="#000" stroke-miterlimit="4" y="1359" x="215.56" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2759" style="stroke-dasharray:0.625, 1.25;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6372" ry="16.97" stroke-dashoffset="0" height="149.52" width="47.954" stroke="#000" stroke-miterlimit="4" y="1359" x="228.34" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect2758" style="stroke-dasharray:0.625, 1.25;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6371" ry="16.97" stroke-dashoffset="0" height="28.79" width="38.352" stroke="#000" stroke-miterlimit="4" y="1359" x="237.64" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f03.svgrect1911" style="stroke-dasharray:0.62499992, 1.2499998;" fill-rule="evenodd" fill-opacity="0.11037" rx="6.6371" ry="16.97" stroke-dashoffset="0" height="41.087" width="229.82" stroke="#000" stroke-miterlimit="4" y="1359.1" x="46.352" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e209" display="none" height="1000px" width="288" y="1446.3" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2716" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.43869,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2718">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2720" xlink:href="#d0e209" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2722" xml:space="preserve">توجه کنید که چطور اندازه و شکل گوشههای گرد شده در تمام مستطیلها یکی است، چون اهرمهای گِردسازی در تمامی شکل ها دقیقا در گوشه بالا سمت راست تراز شده است. همه مستطیلهای نقطهچیندار آبی از مستطیل قرمز فقط توسط Selector بدون هیچ گونه تراز بندی دوباره اهرمهای گرد کردن مقیاس شده اند. </flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e212" display="none" height="1000px" width="288" y="1509.3" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2725" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.844745,74)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2727">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2729" xlink:href="#d0e212" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2731" xml:space="preserve">برای مقایسه، اینجا همان طرح هنری آمده است با این تفاوت که دکمه “Scale rounded corners” فعال بوده است.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f04.svgtext3168" style="writing-mode:lr-tb;text-anchor:end;text-align:end;" line-height="139.99999762%" font-weight="normal" sodipodi:linespacing="140%" font-size="5.95887566px" font-style="normal" font-stretch="normal" font-variant="normal" y="1760.153" x="169.09143" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="tspan5219" sodipodi:role="line" style="text-anchor:end;text-align:end;" y="1760.153" x="169.09143">مقیاس کردن مستطیلها با </tspan><tspan id="tspan5223" sodipodi:role="line" style="text-anchor:end;text-align:end;" y="1768.4954" x="169.09143">روشن بودن “Scale rounded corners”</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect2217" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.62499982, 1.2499996;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="15.76" ry="16.984" stroke-dashoffset="0" height="63.16" width="196.68" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.4" x="72.142" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect2218" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.62499984, 1.2499996;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="15.76" ry="32.93" stroke-dashoffset="0" height="122.46" width="196.68" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.3" x="72.142" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect2216" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.625, 1.25;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="12.157" ry="28.506" stroke-dashoffset="0" height="106.01" width="151.72" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.3" x="117.19" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect1589" fill-rule="evenodd" fill-opacity="0.75" rx="6.6372" ry="16.97" stroke-dashoffset="0" height="63.106" width="82.83" stroke="#000" stroke-miterlimit="4" y="1627.3" x="186.34" stroke-width="0.625" fill="#ff0004"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect2220" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.62500035, 1.2500006;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="3.8557" ry="40.031" stroke-dashoffset="0" height="148.86" width="48.118" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.3" x="220.94" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect2221" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.62500014, 1.2500003;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="4.8443" ry="14.801" stroke-dashoffset="0" height="55.042" width="60.456" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.3" x="208.64" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect2222" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.6249997, 1.2499994;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="3.0813" ry="7.8653" stroke-dashoffset="0" height="29.249" width="38.454" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.3" x="230.76" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f04.svgrect1912" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.62499996, 1.2499999;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.11037" rx="18.207" ry="11.527" stroke-dashoffset="0" height="42.865" width="227.21" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="1627.3" x="41.024" stroke-width="0.625" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e228" display="none" height="1000px" width="288" y="1710.6" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2748" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345818,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2750">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2752" xlink:href="#d0e228" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2754" xml:space="preserve">حالا گوشههای گرد شده به متفاوتی مستطیلهایی هستند که به آنها تعلق دارند و کمی ناهمخوانی در موقعیت اهرمهای گوشهی بالا سمت راست وجود دارد (زوم کنید تا ببینید). این همان نتیجهی بصریای است که با تبدیل کردن مستطیل اصلی به یک مسیر (path) (با زدن کلیدهای <flowSpan id="flowSpan5158" font-weight="bold">Ctrl+Shift+C</flowSpan>) و مقیاس کردن آن در حالت مسیر به دست میآورید. </flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e234" display="none" height="1000px" width="288" y="1773.6" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2759" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.213875,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2761">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2763" xlink:href="#d0e234" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2765" xml:space="preserve">اینجا چند میانبر برای گرد کردن گوشههای یک مستطیل آمده است:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle2767" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,1879.8057)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e240" display="none" height="1000px" width="258" y="1791.8" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2770" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(10,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2772">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2774" xlink:href="#d0e240" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2776" xml:space="preserve">با نگه داشتن <flowSpan id="flowSpan5160" font-weight="bold">Ctrl</flowSpan> درگ کنید تا سایر شعاعهای گرد کردن مشابه شود (در گرد کردن دایرهای).</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle2780" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,1909.2259)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e247" display="none" height="1000px" width="258" y="1821.2" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2783" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(10,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2785">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2787" xlink:href="#d0e247" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2789" xml:space="preserve">با <flowSpan id="flowSpan5162" font-weight="bold">Ctrl+کلیک</flowSpan> کردن، شعاعهای دیگر بدون درگ کردن مشابه میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle2793" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,1938.6462)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e254" display="none" height="1000px" width="258" y="1850.6" x="20"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2796" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(8,82)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2798">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2800" xlink:href="#d0e254" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv5166" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">با <flowSpan id="flowSpan5164" font-weight="bold">Shift+کلیک</flowSpan> کردن، گرد شدگی گوشهها را حذف کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e261" display="none" height="1000px" width="288" y="1868.9" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot2807" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(8.0949341,82)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2809">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2811" xlink:href="#d0e261" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2813" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">شاید به یاد داشته باشید که نوار کنترل ابزار مستطیل مقدار افقی (RX) و عمودی (RY) شعاع گردکردن را برای مستطیل انتخاب شده نشان میدهد و به شما اجازه میدهد که آنها را با استفاده از هر واحد طولی به دقت تنظیم کنید. دکمه Not rounded (گوشهی غیر گرد) کاری که میگوید انجام میدهد - حالت گرد شدگی را از مستطیلهای انتخاب شده حذف میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e273" display="none" height="1000px" width="288" y="1931.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2822" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.7298942,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2824">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2826" xlink:href="#d0e273" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2828" xml:space="preserve">یک مزیت مهم این کنترلها این است که تعداد زیادی مستطیل را یک باره تحت تاثیر قرار میدهد. به عنوان مثال، اگر میخواهید همه مستطیلهای یک لایه تغییر کند، فقط کافی است، همه را انتخاب کنید (<flowSpan id="flowSpan5172" font-weight="bold">Ctrl+A</flowSpan> (Select All و سپس مقدار پارامترهایی که نیاز دارید در نوار کنترلها (Control bar) وارد کنید. اگر هر شئای بجز مستطیل انتخاب شده باشد، نادیده گرفته میشود – فقط مستطیلها تغییر خواهند کرد. </flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e282" display="none" height="1000px" width="288" y="1994.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2835" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345763,92)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2837">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2839" xlink:href="#d0e282" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2841" xml:space="preserve">حالا اجازه دهید، نگاهی به اهرمهای تغییر اندازه یک مستطیل بیاندازیم. شاید گمان کنید که اگر ما میتوانیم با استفاده از انتخابگر (Selector) اندازه مستطیل را تغییر دهیم، پس دیگر چرا به آن اهرمها احتیاج داریم؟</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e285" display="none" height="1000px" width="288" y="2035.4" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2844" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4386841,92)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2846">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2848" xlink:href="#d0e285" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2850" xml:space="preserve">مشکل Selector این است که تصورش از طول و عرض همیشه به اندازه ابعاد صفحهی سند است. بر خلاف آن، اهرم تغییر اندازه مستطیل، آن را در طرفین مستطیل امتداد میدهد، حتی اگر مستطیل چرخانده شده (rotate) یا نامتوازن (skew) شده باشد. به عنوان مثال، سعی کنید اندازه این مستطیل را ابتدا با Selector و سپس با اهرمهای تغییر اندازهاش در ابزار مستطیل (Rectangle tool)، تغییر دهید:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv5174" xml:space="preserve"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f05.svgrect2270" stroke-linejoin="miter" ry="3.8355" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.99666" rx="5.825" transform="matrix(0.69601,-0.718032,-0.9527208,-0.303847,0,0)" stroke-dashoffset="0" height="64.103" width="41.625" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-1901.6" x="-2335.1" stroke-width="0.99999pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e301" display="none" height="1000px" width="288" y="2178" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2856" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345902,88)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2858">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2860" xlink:href="#d0e301" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2862" xml:space="preserve">چون دو اهرم برای تغییر اندازه شکل وجود دارد، میتوانید اندازه مستطیل را در هر جهتی تغییر داده و حتی به اطرافش انتقال دهید. اهرمهای تغییر اندازه همیشه شعاع گرد شدگی گوشههای مستطیل را حفظ میکنند. </flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e304" display="none" height="1000px" width="288" y="2218.6" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2865" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.2138745,84)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2867">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2869" xlink:href="#d0e304" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2871" xml:space="preserve">اینجا میانبرهایی برای تغییر اندازه شکل وجود دارد:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle2873" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,2325.1225)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e310" display="none" height="1000px" width="258" y="2235.1" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2876" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,84)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2878">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2880" xlink:href="#d0e310" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2882" xml:space="preserve">ماوس را با نگهداشتن کلید <flowSpan id="flowSpan5178" font-weight="bold">Ctrl</flowSpan> درگ کنید تا نسبت طول به عرض مستطیل در جابجایی با نسبتهای درست تصحیح شود. به عبارت دیگر، <flowSpan id="flowSpan5176" font-weight="bold">Ctrl</flowSpan> مقدار طول یا عرض یا نسبت طول به عرض را در تغییر اندازهها حفظ میکند. (و این کار را در حالتی که شکل چرخانده شده یا نامتوازن شده باشد نیز به خوبی انجام میدهد).</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e320" display="none" height="1000px" width="288" y="2297.5" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2889" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.434583,84)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2891">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2893" xlink:href="#d0e320" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2895" xml:space="preserve">اینجا همان مستطیل است، اگر در هنگام تغییر اندازه کلید <flowSpan id="flowSpan5180" font-weight="bold">Ctrl</flowSpan> را نگهدارید، خواهید دید که شکل در امتداد خطوط خاکستری متوقف (snap) میشود. (این را امتحان کنید):</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f06.svgtext3182" style="writing-mode:lr-tb;text-anchor:end;text-align:end;" line-height="139.99999762%" font-weight="normal" sodipodi:linespacing="140%" font-size="5.95887566px" font-style="normal" font-stretch="normal" font-variant="normal" y="2538.2493" x="140.17804" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="tspan5188" sodipodi:role="line" style="text-anchor:end;text-align:end;" y="2538.2493" x="140.17804">متوقف شدن اهرمهای تغییر اندازه</tspan><tspan id="tspan5192" sodipodi:role="line" style="text-anchor:end;text-align:end;" y="2546.5918" x="140.17804"> مستطیل با نگهداشتن کلید ctrl</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="shapes-f06.svgg6992" stroke-linejoin="miter" stroke-dashoffset="0" transform="translate(10,246.66827)" stroke="#cfcfcf" stroke-linecap="butt" stroke-miterlimit="4" fill="none">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f06.svgpath6370" style="stroke-dasharray:1.7028247, 1.7028247;" d="M200.86,2297.1l-80.74-126.8" sodipodi:nodetypes="cc" stroke-width="1.70282447"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f06.svgpath6369" style="stroke-dasharray:1.7028245, 1.7028245;" d="M148.58,2287.9l91.85-95.6" stroke-width="1.70282423"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f06.svgpath6368" style="stroke-dasharray:1.7028245, 1.7028245;" d="M79.483,2277.2l91.847-95.5" stroke-width="1.70282423"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f06.svgpath6367" style="stroke-dasharray:1.702822, 1.702822;" d="M54.316,2219.7l193.8,62.1" stroke-width="1.70282221"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f06.svgpath5743" style="stroke-dasharray:1.702822, 1.702822;" d="M77.695,2188.1l193.8,62.2" stroke-width="1.70282221"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f06.svgrect5742" stroke-linejoin="miter" ry="3.8355" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" fill-opacity="0.99666" rx="5.825" transform="matrix(0.69601,-0.718032,-0.9527208,-0.303847,0,0)" stroke-dashoffset="0" height="64.103" width="41.625" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-2096.8" x="-2602.3" stroke-width="0.99999pt" fill="#00F"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e336" display="none" height="1000px" width="288" y="2488.7" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2913" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.1146599,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2915">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2917" xlink:href="#d0e336" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv2919" xml:space="preserve">با کج کردن و چرخاندن یک مستطیل، سپس تکثیر کردن آن و تغییر دادن اندازهی آن به کمک اهرمهای تغییر اندازه میتوان به آسانی طرحهای هنری سهبعدی بوجود آورد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f07.svgtext5482" style="writing-mode:lr-tb;text-anchor:end;text-align:end;" line-height="139.99999762%" font-weight="normal" sodipodi:linespacing="140%" font-size="5.95887566px" font-style="normal" font-stretch="normal" font-variant="normal" y="2637.5701" x="334.62228" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="tspan5207" y="2637.5701" x="334.62228" sodipodi:role="line">چند مستطیل کپی شده و</tspan><tspan id="tspan5213" y="2645.9126" x="334.62228" sodipodi:role="line">اندازهشان اکثرا با کلید</tspan><tspan id="tspan5205" y="2654.2549" x="334.62228" sodipodi:role="line">Ctrl</tspan><tspan id="tspan5222" y="2662.5974" x="334.62228" sodipodi:role="line">تغییر داده شده است</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3610" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="14.448" width="18.786" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2785.9" x="244.38" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3609" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="41.475" width="17.586" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2700.5" x="185.07" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3605" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.994716,0.102665,0,1,0,0)" height="15.283" width="57.99" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2647.5" x="126.42" stroke-width="0.37599" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect2965" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9948017,0.101831,-0.9135132,0.4068091,0,0)" height="18.241" width="32.88" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="5214.2" x="4846.9" stroke-width="0.375" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect2966" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="30.551" width="18.205" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2664.6" x="85.558" stroke-width="0.375" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3596" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.994716,0.102665,0,1,0,0)" height="30.543" width="32.942" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2622.3" x="37.899" stroke-width="0.375" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3597" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9948017,0.101831,-0.9135132,0.4068091,0,0)" height="18.241" width="72.439" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="5273.5" x="4986.1" stroke-width="0.53154" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3598" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="14.448" width="41.99" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2757" x="193.55" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3599" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9948017,0.101831,-0.9135132,0.4068091,0,0)" height="18.241" width="25.786" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="5303.2" x="5085.8" stroke-width="0.53154" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3600" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.994716,0.102665,0,1,0,0)" height="30.543" width="25.67" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2662.5" x="199.29" stroke-width="0.37599" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3601" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.994716,0.102665,0,1,0,0)" height="34.392" width="11.664" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2603.6" x="204.41" stroke-width="0.37599" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3602" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="49.333" width="17.911" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2722.4" x="235.84" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3603" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9948017,0.101831,-0.9135132,0.4068091,0,0)" height="23.517" width="25.707" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="5291.9" x="5033" stroke-width="0.53154" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3604" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.994716,0.102665,0,1,0,0)" height="45.515" width="25.67" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2659.5" x="151.71" stroke-width="0.37599" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3606" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9948017,0.101831,-0.9135132,0.4068091,0,0)" height="31.882" width="11.598" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="5172" x="4983.1" stroke-width="0.53154" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3607" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="45.788" width="23.587" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2757" x="193.55" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3608" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.994716,0.102665,0,1,0,0)" height="30.543" width="25.67" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2607.5" x="143.84" stroke-width="0.37599" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3611" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="30.657" width="9.7845" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2785.8" x="245.46" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect3612" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9948017,0.101831,-0.9135132,0.4068091,0,0)" height="18.241" width="25.212" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="5193" x="4929.7" stroke-width="0.53154" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f07.svgrect1913" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(0.9123702,-0.4093661,0,1,0,0)" height="20.233" width="31.198" stroke="#FFF" stroke-linecap="butt" stroke-miterlimit="4" y="2722.4" x="235.84" stroke-width="0.39259" fill="#ff6300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e349" display="none" height="1000px" width="288" y="2661.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot2952" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345783,74)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion2954">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use2956" xlink:href="#d0e349" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv5224" xml:space="preserve">اینجا مثالهای بیشتری از طرحهای هنری مستطیلها وجود دارد، بعضیها گوشههایشان گرد شده و با گرادیان پُر شدهاند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient2343">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2344" stop-color="#1c3e8b" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2345" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4147" y2="3040.9" xlink:href="#shapes-f08.svglinearGradient2343" gradientUnits="userSpaceOnUse" y1="3040.9" gradientTransform="matrix(0.5763203,-3.0007168e-7,-2.140109e-8,0.433791,12485.486,12501.233)" x2="2679.7" x1="2642.4" inkscape:collect="always"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4150" y2="2983.1" gradientUnits="userSpaceOnUse" y1="2983.1" gradientTransform="matrix(0.5255232,-2.7362289e-7,-2.3469671e-8,0.475722,12496.627,12521.073)" x2="3164.1" x1="3063.7" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2352" stop-color="#1c3e8b" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2353" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4153" y2="3040.9" xlink:href="#shapes-f08.svglinearGradient2343" gradientUnits="userSpaceOnUse" y1="3040.9" gradientTransform="matrix(0.5763203,-3.0007168e-7,-2.140104e-8,0.433791,12515.297,12541.723)" x2="2679.7" x1="2642.4" inkscape:collect="always"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4156" y2="2637.3" gradientUnits="userSpaceOnUse" y1="2637.3" gradientTransform="matrix(0.4846672,-2.5235099e-7,-2.5447992e-8,0.515823,12515.297,12541.723)" x2="3327.6" x1="3268.3" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2348" stop-color="#1c3e8b" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2349" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4159" y2="3355.9" gradientUnits="userSpaceOnUse" y1="3355.9" gradientTransform="matrix(0.5732923,-2.9849509e-7,-2.151419e-8,0.436082,12484.386,12564.543)" x2="2930.7" x1="2820" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2356" stop-color="#1c3e8b" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2357" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4162" y2="2131.1" gradientUnits="userSpaceOnUse" y1="2131.1" gradientTransform="matrix(0.3679772,-1.9159409e-7,-3.3518366e-8,0.679399,12616.037,12635.793)" x2="4643.3" x1="4567" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2360" stop-color="#1c3e8b" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2361" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4165" y2="2797.5" gradientUnits="userSpaceOnUse" y1="2797.5" gradientTransform="matrix(0.4712192,-2.4534899e-7,-2.6174232e-8,0.530544,12515.297,12541.723)" x2="3752.3" x1="3510.8" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2364" stop-color="#1c3e8b" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2365" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4168" y2="-405.69" gradientUnits="userSpaceOnUse" y1="-405.69" gradientTransform="matrix(0.1700171,-9.0491171e-8,1.7888788e-7,0.3870658,2739.0661,-4201.6167)" x2="1847.3" x1="1751" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2290" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2291" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4171" y2="-613.84" gradientUnits="userSpaceOnUse" y1="-613.84" gradientTransform="matrix(0.2120491,-1.1286264e-7,1.4342877e-7,0.3103408,2739.0661,-4201.6167)" x2="1468.1" x1="1403.7" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2294" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2295" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4174" y2="-913.09" gradientUnits="userSpaceOnUse" y1="-913.09" gradientTransform="matrix(0.3370242,-1.79383e-7,9.0243102e-8,0.1952619,2739.0661,-4201.6167)" x2="1034.5" x1="902.99" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2298" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2299" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4177" y2="-699.84" gradientUnits="userSpaceOnUse" y1="-699.84" gradientTransform="matrix(0.2476341,-1.3180113e-7,1.2281976e-7,0.2657479,2739.0661,-4201.6167)" x2="1520.1" x1="1457" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2302" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2303" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4180" y2="-754.11" gradientUnits="userSpaceOnUse" y1="-754.11" gradientTransform="matrix(0.2120491,-1.1286264e-7,1.4342877e-7,0.3103408,2739.0661,-4201.6167)" x2="1699" x1="1634.6" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2306" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2307" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4183" y2="-506.86" gradientUnits="userSpaceOnUse" y1="-506.86" gradientTransform="matrix(0.1590961,-8.4677864e-8,1.9116759e-7,0.4136358,2739.0661,-4201.6167)" x2="2318.4" x1="2203.9" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2310" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2311" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4186" y2="-923.98" gradientUnits="userSpaceOnUse" y1="-923.98" gradientTransform="matrix(0.3079091,-1.6388181e-7,9.8776115e-8,0.2137249,2739.0661,-4201.6167)" x2="1197.9" x1="1090.1" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2314" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2315" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4189" y2="-750.32" gradientUnits="userSpaceOnUse" y1="-750.32" gradientTransform="matrix(0.2650081,-1.4104892e-7,1.1476705e-7,0.2483239,2739.0661,-4201.6167)" x2="1343" x1="1237" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2318" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2319" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <linearGradient id="shapes-f08.svglinearGradient4192" y2="-406.24" gradientUnits="userSpaceOnUse" y1="-406.24" gradientTransform="matrix(0.1489691,-7.9288157e-8,2.0416319e-7,0.4417548,2739.0661,-4201.6167)" x2="2389.1" x1="2298.4" inkscape:collect="always">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2322" stop-color="#e08f0d" offset="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <stop id="shapes-f08.svgstop2323" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </linearGradient>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1001" opacity="0.27541" ry="7.9254" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="7.9946" transform="matrix(0.9832867,0.1820639,-0.6293842,0.7770943,0,0)" height="42.484" width="14.215" y="3121.5" x="2045.3" fill="#1c768b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1002" opacity="0.27541" ry="7.9254" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="6.9707" transform="matrix(0.9832867,0.1820639,-0.6293842,0.7770943,0,0)" height="83.705" width="13.941" y="3105.9" x="2066" fill="#1c768b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1003" opacity="0.27541" ry="7.9254" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="7.9946" transform="matrix(0.9832867,0.1820639,-0.6293842,0.7770943,0,0)" height="90.342" width="15.751" y="3073.8" x="2086.4" fill="#1c768b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1004" opacity="0.27541" ry="7.9254" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="7.9946" transform="matrix(0.9832867,0.1820639,-0.6293842,0.7770943,0,0)" height="69.735" width="15.688" y="3094.4" x="2108.8" fill="#1c768b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1005" opacity="0.27541" ry="7.9131" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="7.9959" transform="matrix(0.5970449,-0.8022078,-0.9859111,-0.16727,0,0)" height="87.653" width="12.887" y="-2000.5" x="-3126.6" fill="#1c768b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1006" opacity="0.27541" ry="7.9131" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="7.9959" transform="matrix(0.5970449,-0.8022078,-0.9859111,-0.16727,0,0)" height="87.653" width="13.113" y="-2000.5" x="-3105.3" fill="#1c768b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1628" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="39.812" width="13.271" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4401" x="3081.6" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4192)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1629" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="26.084" width="27.843" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4401" x="3067" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4189)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1630" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="22.814" width="32.956" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4410.5" x="3074.8" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4186)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1631" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="47.164" width="17.997" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4434.8" x="3089.8" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4183)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1632" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="19.767" width="13.428" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4445.5" x="3085.8" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4180)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1633" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="16.538" width="15.387" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4395.9" x="3100" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4177)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1634" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="25.458" width="44.091" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4392.6" x="3043.5" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4174)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect1635" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="19.767" width="13.428" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4402" x="3036.8" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4171)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2258" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" transform="matrix(-0.9998695,-1.6152533e-2,-0.7604074,-0.6494464,0,0)" height="37.026" width="35.989" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="-4377.2" x="3017" stroke-width="0.39935" fill="url(#shapes-f08.svglinearGradient4168)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2260" stroke-linejoin="miter" ry="7.8878" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="13.386" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="127.64" width="113.32" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="13962" x="14170" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4165)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2261" stroke-linejoin="miter" ry="7.8878" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="12.531" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="51.348" width="27.59" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="14058" x="14297" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4162)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2262" stroke-linejoin="miter" ry="17.916" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="9.9614" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="64.786" width="33.88" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="14003" x="14124" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4159)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2263" stroke-linejoin="miter" ry="7.8878" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="12.637" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="30.094" width="28.248" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="13887" x="14100" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4156)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2264" stroke-linejoin="miter" ry="7.8878" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="10.937" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="15.702" width="21.022" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="13853" x="14038" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4153)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect2259" stroke-linejoin="miter" ry="7.8878" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="13.386" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="47.25" width="52.249" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="13917" x="14107" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4150)"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f08.svgrect5740" stroke-linejoin="miter" ry="5.0297" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" stroke-dashoffset="0" rx="4.8633" transform="matrix(0.9944685,0.105035,-0.995212,9.7739453e-2,0,0)" height="11.479" width="9.8364" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" y="13817" x="14020" stroke-width="0.97176" fill="url(#shapes-f08.svglinearGradient4147)"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="text3076" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" font-size="8.5px" font-style="normal" y="2906.8721" x="273.41852" font-family="Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan3078" font-weight="bold" font-style="normal" font-stretch="normal" font-variant="normal" y="2906.8721" x="273.41852" font-family="DejaVu Sans">بیضیها</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e368" display="none" height="1000px" width="288" y="2843.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3081" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.0949317,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3083">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3085" xlink:href="#d0e368" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3087" xml:space="preserve">ابزار ترسیم بیضی (<flowSpan id="flowSpan5228" font-weight="bold">F5</flowSpan>) میتواند دایره و بیضی بسازد که میتوانید آنها را به سگمنت (Segment) یا کمان (arc) تبدیل کنید. میانبرهای این ابزار، شبیه ابزار مستطیل است: </flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3091" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,2958.3644)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e377" display="none" height="1000px" width="258" y="2884.4" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3094" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3096">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3098" xlink:href="#d0e377" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3100" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5232" font-weight="bold">Ctrl</flowSpan>، یک دایره یا بیضیای با نسبت صحیح (۲:۱ ، ۳:۱ و غیره) ترسیم میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3104" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,2987.6657)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e384" display="none" height="1000px" width="258" y="2913.7" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3107" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.3650384,68)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3109">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3111" xlink:href="#d0e384" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3113" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5230" font-weight="bold">Shift</flowSpan>، نقطهی شروع ترسیم شکل، مرکز آن در نظر گرفته میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e391" display="none" height="1000px" width="288" y="2931.9" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3118" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.1728706,82)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3120">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3122" xlink:href="#d0e391" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3124" xml:space="preserve">بیایید کارکرد اهرمهای یک بیضی را کشف کنیم. این بیضی را انتخاب کنید:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f09.svgpath1932" sodipodi:rx="54.031982" sodipodi:ry="30.248674" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M221.21,2940.5a54.032,30.249,0,1,1,-108.07,0,54.032,30.249,0,1,1,108.07,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.99665551" stroke-linecap="butt" transform="translate(-6.96181,130.4132)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="2940.5042" sodipodi:cx="167.17587" stroke-miterlimit="4" stroke-width="1.25" fill="#ff000b"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e404" display="none" height="1000px" width="288" y="3031.8" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3128" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(7.7299071,82)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3130">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3132" xlink:href="#d0e404" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3134" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">یکبار دیگر، سه اهرم در ابتدا دیده میشود، اما در واقع آنها چهار اهرم هستند. سمت راستترین اهرم، دو اهرم هستند که بر روی هم افتادهاند که به شما اجازه میدهند که بیضی را باز کنید. سمت راستترین اهرم را درگ کنید، سپس اهرم دیگر را که در زیر آن بوده و حالا قابل مشاهده شده است را جابهجا کنید تا حلقههایی شبیه نمودارهای دایرهای یا کمانهایی به دست آورید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath1225" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M48.122,2743a19.073,29.636,0,1,1,-5.586,-21l-13.487,21z" fill-rule="evenodd" fill="#F00" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,23.33648,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width="0.79606137pt" sodipodi:end="5.4977871" sodipodi:start="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath1226" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M48.122,2743a19.073,29.636,0,0,1,-33.658,19.1l14.585-19.1z" fill-rule="evenodd" fill="#F00" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,87.09523,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width="0.79606137pt" sodipodi:end="2.4413969" sodipodi:start="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath1227" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M48.122,2743a19.073,29.636,0,1,1,-13.927,-28.6" fill-rule="evenodd" sodipodi:open="true" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,155.3713,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" fill="#F00" stroke-width="0.79606137pt" sodipodi:end="4.9855409" sodipodi:start="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath1228" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M48.122,2743a19.073,29.636,0,0,1,-35.976,13.7" fill-rule="evenodd" sodipodi:open="true" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,217.7002,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" fill="#F00" stroke-width="0.79606137pt" sodipodi:end="2.6599349" sodipodi:start="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath3204" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M15.272,2722.5a19.073,29.636,0,0,1,7.16,-7.3l6.617,27.8z" fill-rule="evenodd" fill="#F00" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,87.09523,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width="0.79606137pt" sodipodi:end="4.3580459" sodipodi:start="3.9052122"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath3205" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M11.841,2730.2a19.073,29.636,0,0,1,35.456,4.1" fill-rule="evenodd" sodipodi:open="true" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,217.7002,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" fill="#F00" stroke-width="0.79606137pt" sodipodi:end="5.9880333" sodipodi:start="3.5874838"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f10.svgpath3206" sodipodi:rx="19.072769" sodipodi:ry="29.636148" sodipodi:type="arc" d="M27.76,2713.4a19.073,29.636,0,0,1,19.12,19.1l-17.831,10.5z" fill-rule="evenodd" fill="#F00" fill-opacity="0.75" transform="matrix(1.306044,0,0,0.596999,87.09523,1565.3118)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width="0.79606137pt" sodipodi:end="5.9203236" sodipodi:start="4.6447262"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e417" display="none" height="1000px" width="288" y="3151" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3144" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345579,86)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3146">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3148" xlink:href="#d0e417" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3150" xml:space="preserve">برای ساختن یک سگمنت (یک کمان که دو شعاع دارد)، اهرم را به محدودهی خارج از شکل بیضی بکشید؛ برای به دست آوردن یک کمان، اهرم را در محدودهی داخل بیضی بکشید. در بالا، چهار سگمنت در سمت چپ و سه کمان در سمت راست وجود دارد. به یاد داشته باشید که کمانها شکلهایی بسته نشدهاند، شبیه خطی هستند که فقط اطراف بیضی را میپیماید اما به انتهای کمان نمیرسد. اگر رنگی که شکل با آن پر شده است را حذف کنید طوریکه فقط خطوط بمانند، به خوبی متوجه تفاوتشان میشوید:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="shapes-f11.svgg4447" transform="translate(10,129.19891)">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3194" stroke-linejoin="miter" d="M78.137,3274.7l-47.158-27" sodipodi:nodetypes="cc" stroke="#d3d3d3" stroke-linecap="butt" stroke-width="0.25pt" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3195" stroke-linejoin="miter" d="M82.405,3271.7l-40.649-39.7" sodipodi:nodetypes="cc" stroke="#d3d3d3" stroke-linecap="butt" stroke-width="0.25pt" fill="none"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="shapes-f11.svgpath3196" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="m11.441,3210c2.6033-4.432,5.7865-8.5095,9.4681-12.128" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="matrix(1.157706,0,0,1.157706,21.52208,-466.2171)" stroke="#d3d3d3" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.64783323" sodipodi:end="3.9269908" sodipodi:start="3.6651914"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f11.svgtext3818" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" transform="matrix(0.70939,0,0,0.70939,10.28585,1617.123)" font-style="normal" font-stretch="normal" xml:space="preserve" line-height="120.00000477%" font-size="8.39999962px" font-variant="normal" y="2279.1907" x="30.19973" font-family="Sans" fill="#d3d3d3"><tspan id="shapes-f11.svgtspan3819" y="2279.1907" x="30.19973" sodipodi:role="line"/><tspan id="shapes-f11.svgtspan3821" fill="#d3d3d3"/><tspan id="shapes-f11.svgtspan3823" sodipodi:role="line" dx="0 -0.23659326" dy="0 0" y="2289.2708" x="30.19973">15</tspan></text>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="shapes-f11.svgpath3825" sodipodi:rx="0.89163345" sodipodi:ry="0.89163345" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="m41.375,3238c0,0.4924-0.3992,0.8916-0.89163,0.8916-0.49244,0-0.89163-0.3992-0.89163-0.8916s0.3992-0.8916,0.89163-0.8916c0.49244,0,0.89163,0.3992,0.89163,0.8916z" stroke-linejoin="miter" stroke-linecap="butt" transform="matrix(0.882077,0,0,0.882077,4.519106,381.4818)" stroke="#d3d3d3" stroke-dashoffset="0" sodipodi:cy="3237.9563" sodipodi:cx="40.483158" stroke-miterlimit="4" stroke-width="0.48604" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f11.svgtext3883" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="3337.5249" x="71.438835" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f11.svgtspan3893" y="3337.5249" x="71.438835" sodipodi:role="line">سگمنتها</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f11.svgtext3888" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="3330.439" x="234.43098" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f11.svgtspan3889" y="3330.439" x="234.43098" sodipodi:role="line"/><tspan id="shapes-f11.svgtspan3891" y="3337.5896" x="234.43098" sodipodi:role="line">کمانها</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3234" sodipodi:rx="30.710485" sodipodi:ry="10.852578" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M42.591,3247.4a30.71,10.853,0,1,1,42.162,-15.8l-21.716,7.7z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3856" sodipodi:rx="30.710485" sodipodi:ry="30.962814" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M42.591,3262.4a30.71,30.963,0,1,1,42.162,-45l-21.716,21.9z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3857" sodipodi:rx="30.710485" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M42.591,3283a30.71,58.56,0,1,1,42.162,-85.1l-21.716,41.4z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3858" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-19.906,-44.5l59.572,0.8z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="3.1554016" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3859" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-11.93,-73l51.596,29.3z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="3.6651914" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3860" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-2.462,-85.1l42.128,41.4z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="3.9269908" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3861" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,9.877,-94.4l29.789,50.7z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="4.1887902" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3862" sodipodi:rx="15.141271" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M52.957,3283a15.141,58.56,0,0,1,2.51,-94.4l7.57,50.7z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="4.1887902" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3864" sodipodi:rx="75.147621" sodipodi:ry="10.852578" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M13.005,3247.4a75.148,10.853,0,1,1,103.16,-15.8l-53.133,7.7z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3865" sodipodi:rx="30.710485" sodipodi:ry="10.852578" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M42.591,3247.4a30.71,10.853,0,1,1,42.162,-15.8" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3866" sodipodi:rx="30.710485" sodipodi:ry="30.962814" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M42.591,3262.4a30.71,30.963,0,1,1,42.162,-45" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3867" sodipodi:rx="30.710485" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M42.591,3283a30.71,58.56,0,1,1,42.162,-85.1" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3868" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-19.906,-44.5" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="3.1554016" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3869" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-11.93,-73" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="3.6651914" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3870" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-2.462,-85.1" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="3.9269908" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3871" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,9.877,-94.4" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="4.1887902" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3872" sodipodi:rx="15.141271" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M52.957,3283a15.141,58.56,0,0,1,2.51,-94.4" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="4.1887902" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3873" sodipodi:rx="75.147621" sodipodi:ry="10.852578" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M13.005,3247.4a75.148,10.853,0,1,1,103.16,-15.8" sodipodi:open="true" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(182.889,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" fill="none" stroke-width="0.75" sodipodi:end="5.4977871" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f11.svgpath3925" sodipodi:rx="59.578407" sodipodi:ry="58.560177" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M23.371,3283a59.578,58.56,0,0,1,-17.882,-58.9l57.548,15.2z" fill="none" stroke-linejoin="miter" stroke-linecap="butt" transform="translate(41.46863,175.80991)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3239.2964" sodipodi:cx="63.037315" stroke-miterlimit="4" stroke-width="0.75" sodipodi:end="3.403392" sodipodi:start="2.2993372"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e442" display="none" height="1000px" width="288" y="3369.2" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3195" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345636,106)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3197">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3199" xlink:href="#d0e442" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3201" xml:space="preserve">گروه شبیه پنکه از سگمنتهای باریک سمت چپ را نیز به یاد داشته باشید. ساختن این شکلها با استفاده از اهرمهای زاویه چسبان (angle snapping) با نگهداشتن کلید <flowSpan id="flowSpan5236" font-weight="bold">Ctrl</flowSpan> آسان بود. اینجا چند میانبر اهرم کمان/سگمنت معرفی میشود:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3207" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,3523.7882)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e454" display="none" height="1000px" width="258" y="3409.8" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3210" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,108)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3212">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3214" xlink:href="#d0e454" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3216" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5238" style="text-anchor:start;text-align:start;" font-weight="bold">Ctrl</flowSpan> در هنگام درگ کردن ماوس اهرم هر ۱۵ درجه متوقف (snap) میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3220" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,3553.2085)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e461" display="none" height="1000px" width="258" y="3439.2" x="20"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3223" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(11.897464,108)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3225">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3227" xlink:href="#d0e461" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3229" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">نگهداشتن <flowSpan id="flowSpan5240" font-weight="bold">Ctrl+Shift</flowSpan> بیضی را کامل میکند (شکل حاصل نه کمان خواهد بود و نه سگمنت)</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e468" display="none" height="1000px" width="288" y="3457.5" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3234" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345637,122)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3236">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3238" xlink:href="#d0e468" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3240" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">گامهای متوقف شدن زاویه (snap angle) میتواند در تنظیمات Inkscape تغییر داده شود (در Preferences سربرگ Steps).</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e474" display="none" height="1000px" width="288" y="3486.3" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3245" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.9103754,122)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3247">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3249" xlink:href="#d0e474" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3251" xml:space="preserve">دو اهرم دیگر بیضی برای تغییر اندازه دادن آن اطراف مرکزش استفاده میشوند. میانبرهای آنها شبیه اهرمهای گرد کردن یک مستطیل است:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3253" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,3654.9114)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e480" display="none" height="1000px" width="258" y="3526.9" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3256" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,122)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3258">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3260" xlink:href="#d0e480" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3262" xml:space="preserve">با نگهداشتن کلید <flowSpan id="flowSpan5242" font-weight="bold">Ctrl</flowSpan> درگ کنید تا شکل یک دایره شود (شعاع دوم را با شعاع اول مساوی میکند)</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3266" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,3683.7738)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e487" display="none" height="1000px" width="258" y="3555.8" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3269" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(22.638883,122)" font-size="8.39999962px" font-stretch="normal" line-height="133.00000429%" font-variant="normal" font-family="DejaVu Sans" font-style="normal" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3271">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3273" xlink:href="#d0e487" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3275" xml:space="preserve">با نگهداشتن کلید <flowSpan id="flowSpan5244" font-weight="bold">Ctrl کلیک</flowSpan> کنید تا بدون درگ کردن، شکل دایره شود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e494" display="none" height="1000px" width="288" y="3574" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3280" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.7299035,122)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3282">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3284" xlink:href="#d0e494" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3286" xml:space="preserve">و مثل اهرمهای تغییر اندازه مستطیل، این اهرمهای بیضی طول و عرض مستطیل را در مختصات خود بیضی تنظیم میکنند. این بدان معناست که یک بیضی چرخانده شده یا نامتوازن شده میتواند به آسانی در جهتهای اصلیش کشیده یا فشرده شود و به همان صورت چرخیدهشده یا نامتوازنشده باقی بماند. سعی کنید اندازهی هر یک از بیضیهای زیر را با اهرمهای تغییر اندازهشان تغییر دهید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f12.svgpath2133" sodipodi:rx="43.680855" sodipodi:ry="7.3592744" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M150.98,3607.9a43.681,7.3593,0,1,1,-87.358,0,43.681,7.3593,0,1,1,87.358,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.14715714" stroke-linecap="butt" transform="matrix(1.271856,0.564749,-0.788706,0.436041,2865.335,2167.8843)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3607.9023" sodipodi:cx="107.30297" stroke-miterlimit="4" stroke-width="0.75" fill="#ffd300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f12.svgpath2136" sodipodi:rx="58.547005" sodipodi:ry="13.607653" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M165.85,3607.9a58.547,13.608,0,1,1,-117.09,0,58.547,13.608,0,1,1,117.09,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.14715714" stroke-linecap="butt" transform="matrix(1.271856,0.564749,-0.788706,0.436041,2865.335,2167.8843)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3607.9023" sodipodi:cx="107.30297" stroke-miterlimit="4" stroke-width="0.75" fill="#ffd300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f12.svgpath3396" sodipodi:rx="37.951244" sodipodi:ry="61.554367" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M145.25,3607.9a37.951,61.554,0,1,1,-75.898,0,37.951,61.554,0,1,1,75.898,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.14715714" stroke-linecap="butt" transform="matrix(1.271856,0.564749,-0.788706,0.436041,2865.335,2167.8843)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3607.9023" sodipodi:cx="107.30297" stroke-miterlimit="4" stroke-width="0.75" fill="#ffd300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f12.svgpath2135" sodipodi:rx="23.418211" sodipodi:ry="25.328613" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M130.72,3607.9a23.418,25.329,0,1,1,-46.835,0,23.418,25.329,0,1,1,46.835,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.14715714" stroke-linecap="butt" transform="matrix(1.271856,0.564749,-0.788706,0.436041,2865.335,2167.8843)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3607.9023" sodipodi:cx="107.30297" stroke-miterlimit="4" stroke-width="0.75" fill="#ffd300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f12.svgpath2774" sodipodi:rx="4.9275141" sodipodi:ry="46.998589" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M112.23,3607.9a4.9275,46.999,0,1,1,-9.85,0,4.9275,46.999,0,1,1,9.85,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.14715714" stroke-linecap="butt" transform="matrix(1.271856,0.564749,-0.788706,0.436041,2865.335,2167.8843)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3607.9023" sodipodi:cx="107.30297" stroke-miterlimit="4" stroke-width="0.75" fill="#ffd300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f12.svgpath2134" sodipodi:rx="23.418211" sodipodi:ry="7.3592744" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="arc" d="M130.72,3607.9a23.418,7.3593,0,1,1,-46.835,0,23.418,7.3593,0,1,1,46.835,0z" fill-rule="evenodd" stroke-linejoin="miter" fill-opacity="0.14715714" stroke-linecap="butt" transform="matrix(1.271856,0.564749,-0.788706,0.436041,2865.335,2167.8843)" stroke="#000" stroke-dashoffset="0" sodipodi:cy="3607.9023" sodipodi:cx="107.30297" stroke-miterlimit="4" stroke-width="0.75" fill="#ffd300"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="text3296" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" font-size="8.5px" font-style="normal" font-stretch="normal" font-variant="normal" y="3867.9966" x="272.1236" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan3298" font-weight="bold" font-style="normal" font-stretch="normal" font-variant="normal" y="3867.9966" x="272.1236" font-family="DejaVu Sans">ستارهها</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e516" display="none" height="1000px" width="288" y="3744.9" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3301" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.9103567,128)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3303">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3305" xlink:href="#d0e516" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3307" xml:space="preserve">ستارهها پیچیدهترین و هیجانانگیزترین شکل Inkscape هستند. اگر میخواهید دوستانتان را با Inkscape حیرت زده کنید، به آنها اجازه دهید با ابزار ترسیم ستاره بازی کنند. این یک سرگرمی پایان نیافتنی است – کاملا اعتیادآور! </flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e519" display="none" height="1000px" width="288" y="3785.5" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3310" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.7299008,128)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3312">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3314" xlink:href="#d0e519" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3316" xml:space="preserve">ابزار ترسیم ستاره (Star tool) میتواند دو نوع شئ شبیه ولی کاملا متفاوت بسازد: ستارهها و پنج ضلعیها. یک ستاره دو اهرم دارد که موقعیتشان طول و شکل پرههای ستاره را مشخص میکند؛ شکل پنج ضلعی فقط یک اهرم دارد که وقتی درگ شود پنج ضلعی را چرخانده و تغییر اندازه میدهد:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f13.svgtext2813" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="3975.7161" x="90.104965" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f13.svgtspan2819" y="3975.7161" x="90.104965" sodipodi:role="line">ستاره</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f13.svgtext2821" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.95887566px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="3976.6301" x="191.69159" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f13.svgtspan2823" y="3976.6301" x="191.69159" sodipodi:role="line">پنج ضلعی</tspan><tspan id="shapes-f13.svgtspan2827" y="3983.7808" x="191.69159" sodipodi:role="line"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f13.svgpath2190" stroke-linejoin="miter" sodipodi:sides="5" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.98589379" fill="#fff100" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" transform="matrix(0.672634,0.355353,-0.355353,0.672634,1417.527,1396.0809)" stroke-miterlimit="4" inkscape:rounded="0" sodipodi:r1="38.010052" sodipodi:r2="19.005026" sodipodi:arg1="0.45247489" sodipodi:arg2="1.0807934" sodipodi:type="star" d="M107.3,3871.6l-25.238,0.2-14.185,20.9-7.943-24-24.24-7,20.331-15-0.796-25.2,20.509,14.7,23.748-8.5-7.656,24,15.47,19.9z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="3855.0315" sodipodi:cx="73.11795"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f13.svgpath2191" stroke-linejoin="miter" sodipodi:sides="5" inkscape:flatsided="true" stroke="#000" stroke-linecap="butt" stroke-width="0.98589379" fill="#fff100" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" transform="matrix(0.672634,0.355353,-0.355353,0.672634,1523.826,1396.0809)" stroke-miterlimit="4" inkscape:rounded="0" sodipodi:r1="38.010052" sodipodi:r2="19.005026" sodipodi:arg1="0.45247489" sodipodi:arg2="1.0807934" sodipodi:type="star" d="M107.3,3871.6l-39.423,21.1-32.183-31,19.535-40.2,44.257,6.2,7.814,43.9z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="3855.0315" sodipodi:cx="73.11795"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e532" display="none" height="1000px" width="288" y="3922.9" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3329" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345702,128)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3331">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3333" xlink:href="#d0e532" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3335" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">در نوار کنترل ابزار ستاره، ابتدا یک جفت دکمه ضامن-مانند برای تبدیل کردن یک ستاره به پنج ضلعی مشابه و برعکس وجود دارد. پس از آن، یک مقدار عددی است که تعداد رئوس یک ستاره یا چند ضلعی را مشخص میکند. این پارامتر فقط از طریق نوار کنترل قابل تغییر است. محدودهی مجاز از ۳ (واضح است) شروع میشود تا ۱۰۲۴، اما اگر کامپیوتر شما آهسته است نباید مقادیر زیاد (مثلا بیشتر ۲۰۰) را امتحان کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e538" display="none" height="1000px" width="288" y="3997" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3340" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.0703109,124)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3342">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3344" xlink:href="#d0e538" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3346" xml:space="preserve">وقتی یک ستاره یا پنج ضلعی جدید رسم میکنید،</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3348" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,4145.2804)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e544" display="none" height="1000px" width="258" y="4015.3" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3351" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,124)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3353">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3355" xlink:href="#d0e544" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3357" xml:space="preserve">اگر کلید <flowSpan id="flowSpan5248" font-weight="bold">Ctrl</flowSpan> را نگهداشته و درگ کنید زاویههای شکل با گامهای ۱۵ درجهای افزایش مییابد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e551" display="none" height="1000px" width="288" y="4033.5" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3362" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.9308532,136)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3364">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3366" xlink:href="#d0e551" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3368" xml:space="preserve">طبیعتا، ستاره شکل بسیار جذابتری است (البته در عمل پنجضلعیها مفیدتر هستند). کارکرد دو اهرم ستاره کارکردی کمی متفاوت است. اولین اهرم که در آغاز روی راس،یا روی نقطه محدب ستاره است پرتوهای ستاره را بلندتر یا کوتاهتر میکند، اما وقتی نسبت به مرکز شکل چرخانده شود، اهرم دیگر نیز به همان نسبت میچرخد. این بدان معناست که نمیتوانید ستاره را با کمک این اهرم نامتوازن کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e557" display="none" height="1000px" width="288" y="4118.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3373" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345894,116)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3375">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3377" xlink:href="#d0e557" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3379" xml:space="preserve">اهرم دیگر در محل بین دو راس، میتواند هم زاویهای و هم مماسی جابهجا شود و اثری بر اهرم راس نخواهد داشت. (در واقع این اهرم، اگر به سمت خارج از مرکز شکل و بیشتر از مقدار اهرم دیگر جابهجا شود، خودش میتواند یک راس شود). از این اهرم برای نامتوازن کردن ستاره استفاده میشود شکل حاصل میتواند هر نوع کریستال، ماندالا (نوعی شکل اساطیری)، جوجه تیغی و دانه برفی باشد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath2725" stroke-linejoin="miter" sodipodi:sides="48" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.01539412" fill="none" style="marker-end:none;marker-start:none;marker-mid:none;" transform="matrix(2.435996,0,0,2.435996,-229.6238,-5964.3229)" stroke-miterlimit="4" inkscape:rounded="0" sodipodi:r1="15.977139" sodipodi:r2="5.2552228" sodipodi:arg1="0.54696605" sodipodi:arg2="2.0469" sodipodi:type="star" d="M184.95,4242.3l-16.06-3.6,14.86,5.3-15.45-5.7,14.03,7.2-14.56-7.6,12.96,9-13.44-9.5,11.67,10.6-12.08-11.2,10.19,12.1-10.52-12.7,8.52,13.3-8.77-13.9,6.72,14.3-6.89-15,4.8,15.1-4.88-15.8,2.8,15.6-2.79-16.3,0.75,15.8-0.64-16.4-1.33,15.7,1.52-16.4-3.37,15.4,3.64-16-5.35,14.8,5.7-15.4-7.24,14,7.67-14.5-9.01,12.9,9.51-13.4-10.63,11.6,11.18-12-12.06,10.2,12.66-10.6-13.28,8.6,13.92-8.8-14.28,6.7,14.95-6.9-15.04,4.8,15.72-4.9-15.54,2.8,16.23-2.8-15.77,0.8,16.45-0.6-15.73-1.4,16.39,1.5-15.42-3.3,16.05,3.6-14.85-5.3,15.44,5.7-14.03-7.3,14.57,7.7-12.97-9,13.44,9.5-11.67-10.6,12.08,11.1-10.19-12,10.53,12.6-8.53-13.2,8.78,13.9-6.72-14.3,6.88,15-4.8-15.1,4.88,15.7-2.79-15.5,2.78,16.2-0.74-15.7,0.64,16.4,1.32-15.7-1.51,16.4,3.36-15.5-3.64,16.1,5.35-14.9-5.7,15.5,7.24-14-7.67,14.5,9.01-12.9-9.51,13.4,10.63-11.7-11.18,12.1,12.06-10.2-12.66,10.5,13.29-8.5-13.93,8.8,14.29-6.7-14.96,6.9,15.04-4.8-15.72,4.8,15.54-2.8-16.23,2.8,15.77-0.7-16.45,0.6,15.74,1.3-16.4-1.5,15.43,3.4z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="4233.9868" sodipodi:cx="171.30144"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath2918" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M45.957,4353.5l-10.302-42.7-18.837,45.2,37.399-23-48.787-3.9,33.416,28.4-11.314-47.6-16.747,40.6,41.794-25.5-43.766-3.4,37.144,31.9z" fill-rule="evenodd" fill="#520100" sodipodi:r1="24.878733" inkscape:flatsided="false" transform="matrix(0.996295,-8.599074e-2,8.599074e-2,0.996295,-245.7489,109.59812)" sodipodi:arg2="-1.3248582" sodipodi:arg1="0.85670563" inkscape:randomized="0" sodipodi:cy="4334.687" sodipodi:cx="29.663147" inkscape:rounded="0" sodipodi:r2="24.610689" sodipodi:sides="5"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <polygon id="shapes-f14.svgpolygon1259" stroke-linejoin="miter" sodipodi:sides="3" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.47465411" fill="none" style="marker-end:none;marker-start:none;marker-mid:none;" transform="matrix(8.282123e-2,0.375917,-0.375917,8.282123e-2,1337.2,4184.9271)" sodipodi:cx="18.779343" stroke-miterlimit="4" inkscape:rounded="0" sodipodi:r1="31.235876" sodipodi:r2="30.366934" sodipodi:arg1="1.1239539" sodipodi:arg2="-0.65664333" sodipodi:type="star" d="M 32.276994,2897.7581 L 42.831345,2851.0513 L -12.364565,2867.1939 L 22.807589,2899.6877 L 36.425599,2843.8153 L -9.3009067,2858.0284 L 32.276994,2897.7581 z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="2869.5891" points="32.277,2897.8,42.831,2851-12.365,2867.2,22.808,2899.7,36.426,2843.8-9.3009,2858,32.277,2897.8"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <polygon id="shapes-f14.svgpolygon1263" stroke="#000" stroke-width="0.25" sodipodi:type="star" d="M 171.3615,2897.7582 L 187.9805,2859.9248 L 156.48797,2872.4552 L 197.60521,2876.5696 L 175.95638,2850.4906 L 184.74922,2890.8668 L 202.86204,2862.2187 L 167.17908,2883.0581 L 200.02225,2891.4317 L 169.17612,2863.9349 L 171.3615,2897.7582 z" fill="none" sodipodi:r1="24.967192" inkscape:flatsided="false" transform="matrix(0.968463,-0.249152,0.249152,0.968463,-681.4436,1679.1301)" sodipodi:arg2="-1.152584" sodipodi:arg1="1.9818609" inkscape:randomized="0" sodipodi:cy="2874.8708" points="171.36,2897.8,187.98,2859.9,156.49,2872.5,197.6,2876.6,175.96,2850.5,184.75,2890.9,202.86,2862.2,167.18,2883.1,200.02,2891.4,169.18,2863.9,171.36,2897.8" sodipodi:sides="5" inkscape:rounded="0" sodipodi:r2="16.355642" sodipodi:cx="181.33803"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath3540" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M35.93,4210.6l-18.461-23.1,16.491,24.7-13.603-26.2,11.356,27.4-8.223-28.4,5.785,29.2-2.527-29.5-0.009,29.7,3.266-29.4-5.802,29.2,8.934-28.2-11.373,27.4,14.259-25.9-16.506,24.7,19.035-22.6-21.005,21,23.081-18.5-24.697,16.5,26.238-13.6-27.44,11.4,28.389-8.2-29.128,5.7,29.447-2.5h-29.697l29.374,3.3-29.124-5.8,28.172,8.9-27.433-11.4,25.888,14.3-24.686-16.5,22.608,19-20.992-21,18.461,23.1-16.491-24.7,13.603,26.2-11.356-27.4,8.223,28.4-5.784-29.1,2.527,29.4,0.009-29.7-3.267,29.4,5.803-29.1-8.935,28.1,11.373-27.4-14.259,25.9,16.506-24.7-19.035,22.6,21.005-21-23.08,18.5,24.697-16.5-26.239,13.6,27.44-11.4-28.388,8.3,29.127-5.8-29.446,2.5h29.696l-29.374-3.3,29.124,5.8-28.172-8.9,27.433,11.4-25.888-14.3,24.687,16.5-22.609-19,20.992,21z" fill-rule="evenodd" fill="#520100" sodipodi:r1="12.998599" inkscape:flatsided="false" transform="matrix(1.287909,0,0,1.287909,12.889197,-1079.5069)" sodipodi:arg2="-2.159301" sodipodi:arg1="0.78539816" inkscape:randomized="0" sodipodi:cy="4201.4121" sodipodi:cx="26.738611" inkscape:rounded="0" sodipodi:r2="16.698013" sodipodi:sides="32"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath2723" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M262.67,4224.4l-35.67,13,23.42-9.4-34.46-16,23.2,9.9-13.07-35.6,9.4,23.4,15.98-34.5-9.9,23.2,35.66-13-23.41,9.4,34.46,15.9-23.21-9.9,13.07,35.7-9.4-23.4-15.98,34.5,9.91-23.2z" fill-rule="evenodd" fill="#520100" sodipodi:r1="16.710012" inkscape:flatsided="false" transform="translate(19.625604,125.68612)" sodipodi:arg2="2.3382889" sodipodi:arg1="0.88740509" inkscape:randomized="0" sodipodi:cy="4211.3926" sodipodi:cx="252.11676" inkscape:rounded="0" sodipodi:r2="36.167358" sodipodi:sides="8"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath2724" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M307.95,4272l-41.28,0.7,33.56,17.4-29.65-28.7,11.41,36-0.64-41.3-17.41,33.6,28.73-29.7-36.04,11.4,41.28-0.6-33.56-17.4,29.65,28.7-11.42-36,0.65,41.3,17.41-33.6-28.73,29.6,36.04-11.4z" fill-rule="evenodd" fill="#520100" sodipodi:r1="25.662985" inkscape:flatsided="false" transform="matrix(1,3.34831e-5,-3.34831e-5,1,10.143069,119.16112)" sodipodi:arg2="3.0816518" sodipodi:arg1="0.011487387" inkscape:randomized="0" sodipodi:cy="4271.7378" sodipodi:cx="282.28931" inkscape:rounded="0" sodipodi:r2="15.646836" sodipodi:sides="8"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath3347" stroke-linejoin="miter" sodipodi:sides="8" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.34379637" fill="none" style="marker-end:none;marker-start:none;marker-mid:none;" transform="matrix(0.727174,0,0,0.727174,38.25777,1254.7001)" stroke-miterlimit="4" inkscape:rounded="0" sodipodi:r1="27.155294" sodipodi:r2="27.24193" sodipodi:arg1="1.5707963" sodipodi:arg2="-2.3580603" sodipodi:type="star" d="M104.6,4261l-19.304-46.4,0.098,38.4,19.146-46.4-27.1,27.2,46.38-19.3-38.426,0.1,46.446,19.2-27.24-27.1,19.29,46.4-0.09-38.5-19.15,46.5,27.1-27.3-46.382,19.3,38.432-0.1-46.447-19.1,27.247,27.1z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="4233.834" sodipodi:cx="104.59527"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f14.svgpath5832" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M114.31,4305.9l-54.977-38.4,42.247,53.1-37.383-55.7,20.208,64.8-14.737-65.4-4.56,67.7,9.899-66.4-28.712,61.5,33.197-58.3-48.986,47,52.013-42.4-62.644,26.1,63.804-20.7-67.842,1.7,66.977,3.8-63.877-23,61.105,27.7-51.286-44.4,46.981,47.9-31.768-60,26.511,61.6-7.959-67.4,2.461,67,16.924-65.7-21.921,63.4,39.522-55.1-43.344,51.2,56.787-37.2-58.916,32.1,66.376-14.2-66.526,8.7,66.996,10.8-65.147-16,58.577,34.2z" fill-rule="evenodd" fill="#520100" sodipodi:r1="52.870548" inkscape:flatsided="false" transform="translate(10,118.65212)" sodipodi:arg2="-2.2448164" sodipodi:arg1="0.52982957" inkscape:randomized="0" sodipodi:cy="4279.2217" sodipodi:cx="68.691193" inkscape:rounded="0" sodipodi:r2="14.99335" sodipodi:sides="17"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e573" display="none" height="1000px" width="288" y="4362.6" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3393" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345578,100)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3395">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3397" xlink:href="#d0e573" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3399" xml:space="preserve">اگر فقط یک ستاره معمولی ساده بدون این تزیین کاریها میخواهید، میتوانید کاری کنید که اهرم نامتوازن ساز مثل آن یکی اهرم غیر-نامتوازنساز رفتار کند:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3401" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,4500.043)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e579" display="none" height="1000px" width="258" y="4392" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3404" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3406">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3408" xlink:href="#d0e579" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3410" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5254" font-weight="bold">Ctrl</flowSpan> درگ کنید تا پرتوهای ستاره کاملا شعاعی بمانند (بدون نامتوازن شدن)</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3414" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,4528.9054)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e586" display="none" height="1000px" width="258" y="4420.9" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3417" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8,104)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3419">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3421" xlink:href="#d0e586" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3423" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5250" font-weight="bold">Ctrl</flowSpan> و <flowSpan id="flowSpan5252" font-weight="bold">کلیک</flowSpan> کردن بدون درگ کردن حالت نامتوازن را حذف کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e593" display="none" height="1000px" width="288" y="4439.2" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3428" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.0949323,114)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3430">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3432" xlink:href="#d0e593" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3434" xml:space="preserve">به عنوان یک بحث مکمل مفید برای درگ کردن اهرمها در صفحه، نوار کنترل یک بخش Spoke ratio دارد که فاصله دو اهرم ستاره نسبت به مرکز شکل را تعریف میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e599" display="none" height="1000px" width="288" y="4478" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3439" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345693,116)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3441">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3443" xlink:href="#d0e599" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3445" xml:space="preserve">ستارههای Inkscape دو حقهی اضافی هم دارند. در هندسه، یک پنج ضلعی شکلی است با گوشههای تیز و مستقیم. در دنیای واقعی ولی، پنج ضلعیها درجههای انحنا و نرمی متفاوتی دارند. – و Inkscape میتواند چنین اشکالی را بسازد. البته گرد کردن یک ستاره و پنج ضلعی از گرد کردن مستطیل کمی متفاوت است. شما از یک اهرم مستقل برای این منظور استفاده نمیکنید، و</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3447" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,4664.1069)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e605" display="none" height="1000px" width="258" y="4552.1" x="20"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3450" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(12,106)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3452">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3454" xlink:href="#d0e605" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3456" style="text-anchor:start;text-align:start;" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">نگهداشتن <flowSpan id="flowSpan5256" font-weight="bold">Shift</flowSpan> و <flowSpan id="flowSpan5258" font-weight="bold">درگ</flowSpan> کردن هر اهرم در جهت مماس ستاره یا پنج ضلعی را گرد میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3460" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,4693.5271)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e612" display="none" height="1000px" width="258" y="4581.5" x="20"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3463" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(12.032811,106)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3465">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3467" xlink:href="#d0e612" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3469" style="text-anchor:start;text-align:start;" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">نگهداشتن <flowSpan id="flowSpan5260" font-weight="bold">Shift</flowSpan> و <flowSpan id="flowSpan5262" font-weight="bold">کلیک</flowSpan> کردن روی یک اهرم انحنای لبههای شکل را از بین میبرد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e619" display="none" height="1000px" width="288" y="4599.8" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3474" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(7.9103572,120)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3476">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3478" xlink:href="#d0e619" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3480" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">درگ کردن در جهت «مماس» یعنی در جهتی عمود بر جهت مرکز شکل. اگر یک اهرم را با نگهداشتن کلید Shift در خلاف جهت عقربههای ساعت اطراف مرکز شکل بچرخانید، انحنای مثبت میگیرید؛ با چرخاندن اهرم در جهت عقربههای ساعت، انحنای منفی میگیرید. (مثالهای پایین را برای مشاهده انحنای منفی ببینید.)</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e622" display="none" height="1000px" width="288" y="4662.7" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3483" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(8.1277467,120)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3485">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3487" xlink:href="#d0e622" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3489" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">اینجا مقایسهای بین یک مربع گرد شده (ابزار مستطیل) و چند ضلعی (۴ راس) گرد شده (ابزار ستاره) میبینید:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="shapes-f15.svgrect4263" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" rx="18.04" ry="18.04" height="87.192" width="87.192" y="4823.9" x="66.117" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f15.svgpath4264" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M203.96,4729.2c-8.43,8.4-56.22,8.4-64.65,0s-8.43-56.2,0-64.6c8.43-8.5,56.22-8.5,64.65,0,8.42,8.4,8.42,56.2,0,64.6z" fill-rule="evenodd" fill="#000" sodipodi:r1="45.711628" inkscape:flatsided="true" transform="matrix(1.174602,0,0,1.174602,9.451083,-649.45615)" sodipodi:arg2="1.5707963" sodipodi:arg1="0.78539816" inkscape:randomized="0" sodipodi:cy="4696.8921" sodipodi:cx="171.63371" inkscape:rounded="0.18435333" sodipodi:r2="32.323002" sodipodi:sides="4"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f15.svgtext4886" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="7.73008299px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="4838.5625" x="194.07954" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#ffffff"><tspan id="shapes-f15.svgtspan4891" y="4838.5625" x="194.07954" sodipodi:role="line">پنج ضلعی</tspan><tspan id="tspan5268" y="4847.8384" x="194.07954" sodipodi:role="line">گوشه گرد</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f15.svgtext6237" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="7.59622049px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="4838.6074" x="92.517342" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#ffffff"><tspan id="shapes-f15.svgtspan4894" y="4838.6074" x="92.517342" sodipodi:role="line">مستطیل </tspan><tspan id="tspan5264" y="4847.7227" x="92.517342" sodipodi:role="line">گوشه گرد</tspan><tspan id="shapes-f15.svgtspan4900" y="4856.8384" x="92.517342" sodipodi:role="line"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e635" display="none" height="1000px" width="288" y="4802.9" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3503" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.8447316,124)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3505">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3507" xlink:href="#d0e635" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3509" xml:space="preserve">همانطور که میبینید، در حالیکه مستطیل گوشه-گرد شده در طرفینش خطوط صافی دارد چند ضلعی گوشه-گرد شده هیچ خط صافی ندارد؛ انحنای گوشهها در محل رئوس از حداکثر شروع میشود و در وسط اضلاع به حداقل میرسد.Inkscape این رفتار را اضافه کردن تانژانت خطی بزیه (collinear Bezier tangents) به هر گرهی شئ بوجود میآورد. ببا تبدیل کردن شکل به مسیر (path) میتوانید آن گرهها را ببینید و با ابزار گره (Node) آنها را تغییر دهید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e638" display="none" height="1000px" width="288" y="4898.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3512" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.9103812,104)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3514">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3516" xlink:href="#d0e638" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3518" xml:space="preserve">در نوار کنترلها (وقتی ابزار ترسیم ستاره فعال باشد) میتوانید پارامتر Rounded را تنظیم کنید. با تنظیم کردن این پارامتر در واقع نسبت طول تانژانتها به طول ضلع مجاور راس در چند ضلعی یا ستاره تنظیم میشود. مقدار این پارامتر میتواند منفی باشد، که جهت تانژانتها را برعکس میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv5270" xml:space="preserve">مقادیر بین ۰.۲ و ۰.۴ گردشدگی نرمالی با مقدار نرمیای که شما نیاز داشته باشید، نتیجه میدهند؛ سایر مقادیر اشکال زیبا، پیچیده و کاملا غیر قابل پیشبینی نتیجه میدهند. یک ستاره با مقدار انحنای زیاد در گوشهها ممکن است از موقعیت اهرمهایش خیلی دور شود. در اینجا چند مثال است، مقدار گردشدگی (roundedness) هر یک را ببینید:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1575" stroke-linejoin="miter" sodipodi:sides="5" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="3.37504339" fill="none" transform="matrix(0.307966,-3.233534e-2,-3.233534e-2,-0.307966,-24.0515,5384.7665)" stroke-miterlimit="4" inkscape:rounded="5.13" sodipodi:r1="27.797562" sodipodi:r2="27.797562" sodipodi:arg1="0.22082877" sodipodi:arg2="0.8491473" sodipodi:type="star" d="M281.19,558.07c-19.31,85.99,57.4-43.45-8.76,14.78-66.16,58.22,71.98-1.41-15.77,6.81-87.75,8.21,59.05,41.17-16.77-3.77-75.81-44.93,23.58,68.02-11.35-12.89-34.92-80.92-20.9,68.88-1.6-17.11,19.31-85.99-57.4,43.44,8.76-14.78,66.17-58.22-71.97,1.41,15.78-6.81,87.74-8.21-59.06-41.17,16.76,3.77,75.82,44.93-23.58-68.02,11.35,12.89,34.93,80.92,20.9-68.88,1.6,17.11z" stroke-opacity="0.1311475" inkscape:randomized="0" sodipodi:cy="551.97913" sodipodi:cx="254.06618"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1556" stroke-linejoin="miter" sodipodi:sides="18" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.03125" fill="none" style="marker-start:none;marker-mid:none;marker-end:none;" transform="matrix(1.252191,0,0,-1.252191,-258.8556,5761.7585)" stroke-miterlimit="4" inkscape:rounded="0.37" sodipodi:r1="56.586357" sodipodi:r2="2.4662609" sodipodi:arg1="1.170892" sodipodi:arg2="-2.686023" sodipodi:type="star" d="M399.24,511.26c6.01-20.78-3.16-58.04-24.24-53.2-20.86,4.78-7.53,74.88,5.09,57.6,12.75-17.48,16.88-55.63-4.59-58.29-21.23-2.64-32.68,67.79-14.92,55.86,17.97-12.06,34.89-46.49,15.63-56.34-19.05-9.74-53.89,52.52-33.12,47.39,21-5.18,48.68-31.75,33.95-47.6-14.57-15.67-68.61,30.93-47.33,33.21,21.51,2.31,56.61-13.19,48.18-33.12-8.33-19.7-75.04,5.6-55.84,15.02,19.43,9.53,57.71,6.97,56.61-14.64-1.08-21.37-72.43-20.41-57.6-4.99,14.99,15.6,51.84,26.29,58.2,5.61,6.28-20.45-61.09-43.96-52.43-24.39,8.76,19.78,39.73,42.43,52.77,25.17,12.91-17.07-42.36-62.2-40.92-40.85,1.46,21.58,22.82,53.46,40.98,41.71,17.96-11.63-18.54-72.94-24.48-52.39-6.01,20.78,3.16,58.04,24.24,53.21,20.86-4.78,7.53-74.88-5.09-57.6-12.75,17.47-16.88,55.62,4.59,58.29,21.23,2.64,32.68-67.79,14.92-55.87-17.97,12.06-34.89,46.5-15.63,56.35,19.05,9.74,53.89-52.53,33.12-47.4-21,5.19-48.68,31.76-33.95,47.6,14.56,15.67,68.61-30.92,47.33-33.2-21.51-2.31-56.61,13.19-48.18,33.11,8.33,19.71,75.04-5.59,55.84-15.01-19.43-9.53-57.71-6.97-56.61,14.64,1.08,21.36,72.43,20.41,57.6,4.98-14.99-15.59-51.84-26.28-58.2-5.6-6.28,20.45,61.09,43.95,52.43,24.39-8.76-19.78-39.73-42.43-52.77-25.17-12.91,17.06,42.36,62.19,40.92,40.85-1.46-21.59-22.82-53.46-40.98-41.71-17.96,11.63,18.54,72.94,24.48,52.38z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="459.14322" sodipodi:cx="377.2099"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1559" stroke-linejoin="miter" sodipodi:sides="4" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.36259648" fill="#cecece" style="marker-start:none;marker-mid:none;marker-end:none;" fill-rule="evenodd" transform="matrix(0.549977,0,0,-0.549977,34.5958,5537.1495)" stroke-miterlimit="4" inkscape:rounded="1.85" sodipodi:r1="33.805592" sodipodi:r2="0.93718392" sodipodi:arg1="0" sodipodi:arg2="0.78539816" sodipodi:type="star" d="M112.41,584.08c0,61.33,10.22-42.7-33.147,0.67-43.365,43.36,60.667,33.14-0.663,33.14-61.327,0,42.7,10.22-0.663-33.14-43.364-43.37-33.143,60.66-33.143-0.67,0-61.32-10.221,42.71,33.143-0.66,43.363-43.36-60.664-33.14,0.663-33.14,61.33,0-42.702-10.22,0.663,33.14,43.367,43.37,33.147-60.66,33.147,0.66z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="584.08337" sodipodi:cx="78.599991"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath2808" stroke-linejoin="miter" sodipodi:sides="4" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1pt" fill="#8eff00" fill-rule="evenodd" transform="matrix(0.74894,0,0,-0.74894,70.65535,5657.7875)" inkscape:rounded="0.25" sodipodi:r1="38.196964" sodipodi:r2="7.8936343" sodipodi:arg1="0" sodipodi:arg2="0.78539816" sodipodi:type="star" d="M323.81,626.7c0,8.28-26.76-0.26-32.61,5.59s2.69,32.61-5.58,32.61c-8.28,0,0.26-26.76-5.58-32.61-5.85-5.85-32.62,2.69-32.62-5.59,0-8.27,26.77,0.27,32.62-5.58,5.84-5.85-2.7-32.61,5.58-32.61,8.27,0-0.27,26.76,5.58,32.61s32.61-2.69,32.61,5.58z" inkscape:randomized="0" sodipodi:cy="626.70453" sodipodi:cx="285.61685"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath3430" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="1.00000191pt" fill="#8eff00" fill-rule="evenodd" transform="matrix(0.716804,0.217032,0.217032,-0.716804,-56.02363,5617.0155)" inkscape:rounded="0.24" sodipodi:r1="38.196964" sodipodi:r2="9.5492411" sodipodi:arg1="0" sodipodi:arg2="0.62831853" sodipodi:type="star" d="M323.81,626.7c0,7.44-26.1-0.4-30.47,5.62-4.37,6.01,11.15,28.41,4.08,30.71s-7.68-24.95-14.75-27.24c-7.08-2.3-23.58,19.38-27.96,13.37-4.37-6.02,21.36-15.02,21.36-22.46,0-7.43-25.73-16.43-21.36-22.45,4.38-6.01,20.88,15.67,27.96,13.37,7.07-2.3,7.68-29.54,14.75-27.24,7.07,2.29-8.45,24.7-4.08,30.71,4.37,6.02,30.47-1.82,30.47,5.61z" inkscape:randomized="0" sodipodi:cy="626.70453" sodipodi:cx="285.61685"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1586" stroke="#000" style="stroke-dasharray:1.4274618, 1.4274618;" stroke-width="1.42746115" sodipodi:type="star" sodipodi:sides="3" fill-rule="evenodd" fill="#000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" stroke-dashoffset="0" transform="matrix(0.112357,6.849093e-3,6.849093e-3,-0.112357,17.881487,5319.5815)" sodipodi:arg2="1.6461088" sodipodi:arg1="0.59891126" inkscape:randomized="0" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-miterlimit="4" inkscape:rounded="0.21" inkscape:flatsided="true" d="M378.67,671.15c-7.96,11.66-60.93,7.66-67.05-5.06-6.12-12.73,23.82-56.6,37.91-55.54,14.08,1.06,37.1,48.94,29.14,60.6z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath2214" stroke="#000" style="stroke-dasharray:1.4275137, 1.4275137;" stroke-width="1.42751729" sodipodi:type="star" sodipodi:sides="4" fill-rule="evenodd" fill="#000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" stroke-dashoffset="0" transform="matrix(0.111212,-1.740816e-2,-1.740816e-2,-0.111212,44.31171,5328.2505)" sodipodi:arg2="1.3843094" sodipodi:arg1="0.59891126" inkscape:randomized="0" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-miterlimit="4" inkscape:rounded="0.21" inkscape:flatsided="true" d="M378.67,671.15c-6.5,9.52-44.43,16.68-53.95,10.18s-16.68-44.43-10.18-53.95c6.5-9.53,44.43-16.68,53.95-10.18s16.68,44.43,10.18,53.95z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath2215" stroke="#000" style="stroke-dasharray:1.4274952, 1.4274952;" stroke-width="1.42749596" sodipodi:type="star" sodipodi:sides="5" fill-rule="evenodd" fill="#000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" stroke-dashoffset="0" transform="matrix(0.10622,-3.726607e-2,-3.726607e-2,-0.10622,69.8736,5331.8365)" sodipodi:arg2="1.2272298" sodipodi:arg1="0.59891126" inkscape:randomized="0" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-miterlimit="4" inkscape:rounded="0.21" inkscape:flatsided="true" d="M378.67,671.15c-5.4,7.91-33.77,18.06-42.97,15.37s-27.62-26.54-27.9-36.12,16.7-34.46,25.73-37.69c9.02-3.23,37.94,5.24,43.8,12.82,5.86,7.59,6.74,37.7,1.34,45.62z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath2216" stroke="#000" style="stroke-dasharray:1.4274604, 1.4274604;" stroke-width="1.42745888" sodipodi:type="star" sodipodi:sides="6" fill-rule="evenodd" fill="#000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" stroke-dashoffset="0" transform="matrix(0.112523,3.15394e-3,3.15394e-3,-0.112523,52.43847,5321.9775)" sodipodi:arg2="1.12251" sodipodi:arg1="0.59891126" inkscape:randomized="0" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-miterlimit="4" inkscape:rounded="0.21" inkscape:flatsided="true" d="M378.67,671.15c-4.6,6.73-26.86,17.44-34.99,16.82-8.13-0.61-28.53-14.53-32.06-21.88s-1.68-31.98,2.92-38.71c4.6-6.74,26.86-17.44,34.99-16.83,8.12,0.61,28.53,14.54,32.06,21.89,3.53,7.34,1.67,31.97-2.92,38.71z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath905" stroke-linejoin="miter" sodipodi:sides="3" fill-opacity="0.74998097" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="4.19999981" fill="#ff6000" style="marker-start:none;marker-mid:none;marker-end:none;" fill-rule="evenodd" transform="matrix(6.043272e-2,0,0,-6.043272e-2,178.5167,5114.4385)" stroke-miterlimit="4" inkscape:rounded="-3" sodipodi:r1="266.7514" sodipodi:r2="86.869286" sodipodi:arg1="0.54565505" sodipodi:arg2="0.65224913" sodipodi:type="star" d="M-423.46-910.2c-209.55-499.7-700.64-98-158.98-85.71,936.38,21.31-1232.1-42.69-302.93,75.52,537.5,68.35,435.24-557.81,153.71-94.81-486.64,800.26,652.97-1045.7,86.07-300.1-327.95,431.29,265.43,655.79,5.26,180.5-449.77-821.6,579.11,1088.3,216.87,224.6z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="-1048.6403" sodipodi:cx="-651.47363"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath4053" stroke-linejoin="miter" sodipodi:sides="6" fill-opacity="0.75" inkscape:flatsided="false" stroke="#acacac" stroke-linecap="butt" stroke-width="1.0000001pt" fill="#fcfcfc" fill-rule="evenodd" transform="matrix(0.47781,7.371536e-2,7.371536e-2,-0.47781,-104.9199,5421.5265)" inkscape:rounded="3" sodipodi:r1="27.681587" sodipodi:r2="11.966143" sodipodi:arg1="0.20131714" sodipodi:arg2="-3.0483195" sodipodi:type="star" d="M299.45,611.76c-49.54-107.97,39.73-95.58-39.03-6.65-68.24,77.04-38.87,111.31,20.68,27.37,68.74-96.89,102.64-13.38-13.76-37.13-100.84-20.57-115.83,21.99-13.36,31.6,118.28,11.08,62.91,82.19,25.27-30.49-32.6-97.61-76.96-89.31-34.04,4.23,49.54,107.97-39.73,95.58,39.04,6.65,68.23-77.05,38.87-111.31-20.69-27.37-68.73,96.89-102.64,13.38,13.76,37.13,100.85,20.57,115.84-21.99,13.37-31.6-118.28-11.08-62.91-82.19-25.28,30.48,32.6,97.62,76.96,89.32,34.04-4.22z" inkscape:randomized="0" sodipodi:cy="606.22424" sodipodi:cx="272.33234"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1545" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" sodipodi:sides="3" fill-rule="evenodd" fill="#000" sodipodi:r1="39.614254" sodipodi:r2="1.077998" transform="matrix(0.270281,-8.043548e-2,-8.043548e-2,-0.270281,53.0315,5280.8885)" sodipodi:arg2="3.3670445" sodipodi:arg1="2.3198469" inkscape:randomized="0" sodipodi:cy="420.22922" sodipodi:cx="397.5007" inkscape:rounded="-3" inkscape:flatsided="false" d="M370.53,449.24c85.87,79.85,52.13-143.54,25.92-29.25s101.5-72.07-10.59-37.63c-112.08,34.45,98.25,116.93,12.37,37.08-85.87-79.85,11.67,123.94,37.88,9.64,26.22-114.29-150.38,26.62-38.29-7.82,112.08-34.45-113.17-51.87-27.29,27.98z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1591" stroke-linejoin="miter" sodipodi:sides="3" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.57520527" fill="#8eff00" style="marker-start:none;marker-mid:none;marker-end:none;" fill-rule="evenodd" transform="matrix(1.627536,0,0,1.627536,-143.1836,4538.2905)" stroke-miterlimit="4" inkscape:rounded="0.25" sodipodi:r1="17.850517" sodipodi:r2="2.4989247" sodipodi:arg1="0.51914611" sodipodi:arg2="1.5663437" sodipodi:type="star" d="M278.42,385.92c-2.08,3.64-11.3-6.37-15.49-6.35-4.18,0.01-13.32,10.11-15.43,6.49-2.11-3.61,11.18-6.6,13.25-10.23,2.08-3.64-2.09-16.6,2.09-16.61,4.19-0.02,0.13,12.97,2.24,16.59,2.11,3.61,15.42,6.48,13.34,10.11z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="377.0665" sodipodi:cx="262.92249"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2547" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5184.9648" x="279.70953" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan2548" sodipodi:role="line" x="279.70953" y="5184.9648"/><tspan id="shapes-f16.svgtspan2550"/><tspan id="shapes-f16.svgtspan2552" sodipodi:role="line" x="279.70953" y="5189.7397">0.25</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2856" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5150.1284" x="280.21283" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan2555" sodipodi:role="line" x="280.21283" y="5150.1284"/><tspan id="shapes-f16.svgtspan2557"/><tspan id="shapes-f16.svgtspan2559" sodipodi:role="line" x="280.21283" y="5154.9033">0.25</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2561" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5226.5024" x="280.13705" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan2562" sodipodi:role="line" x="280.13705" y="5226.5024"/><tspan id="shapes-f16.svgtspan2564"/><tspan id="shapes-f16.svgtspan2566" sodipodi:role="line" x="280.13705" y="5231.2773">0.25</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2568" line-height="120.00000477%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="matrix(0.5000029,0.8660237,-0.8660237,0.5000029,0,0)" font-style="normal" sodipodi:linespacing="120%" font-stretch="normal" font-size="3.97900867px" font-variant="normal" y="2421.7817" x="4642.2881" font-family="Sans" fill="#000000"><tspan id="shapes-f16.svgtspan2569" sodipodi:role="line" x="4642.2881" y="2421.7817"/><tspan id="shapes-f16.svgtspan2571"/><tspan id="shapes-f16.svgtspan2573" sodipodi:role="line" x="4642.2881" y="2426.5566">0.37</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath1554" stroke-linejoin="miter" sodipodi:sides="9" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.375" fill="#cecece" fill-rule="evenodd" transform="matrix(0.964586,6.719919e-2,6.719919e-2,-0.964586,-346.5721,5801.1365)" stroke-miterlimit="4" inkscape:rounded="0.43" sodipodi:r1="23.08659" sodipodi:r2="14.29816" sodipodi:arg1="1.1382904" sodipodi:arg2="1.4814137" sodipodi:type="star" d="M461.58,641.84c-4.19,1.97-3.79-7.1-8.4-6.72-4.67,0.39-2.82,9.24-7.34,8.04-4.47-1.19,1.66-7.88-2.12-10.55-3.82-2.7-8.09,5.27-10.78,1.44-2.66-3.78,6.34-4.97,5.16-9.44-1.2-4.52-9.59-1.17-9.19-5.83,0.39-4.61,8.05,0.27,10.02-3.91,1.99-4.24-6.59-7.06-3.29-10.38,3.26-3.27,5.99,5.38,10.19,3.45,4.25-1.97-0.51-9.65,4.15-10.06,4.6-0.42,1.13,7.97,5.59,9.18,4.52,1.23,5.81-7.71,9.64-5.04,3.8,2.65-4.25,6.84-1.62,10.64,2.67,3.84,9.41-2.19,10.63,2.33,1.21,4.47-7.65,2.5-8.07,7.11-0.43,4.66,8.6,4.37,6.64,8.62-1.95,4.19-7.48-3.01-10.76,0.25-3.32,3.3,3.78,8.89-0.45,10.87z" inkscape:randomized="0" sodipodi:cy="620.88135" sodipodi:cx="451.8996"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2575" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5230.0317" x="126.22874" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan2576" sodipodi:role="line" x="126.22874" y="5230.0317"/><tspan id="shapes-f16.svgtspan2578"/><tspan id="shapes-f16.svgtspan2580" sodipodi:role="line" x="126.22874" y="5234.8066">0.43</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2582" line-height="120.00000477%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="matrix(0.3849059,0.9229558,-0.9229558,0.3849059,0,0)" font-style="normal" sodipodi:linespacing="120%" font-stretch="normal" font-size="3.97898889px" font-variant="normal" y="1926.4734" x="4771.5923" font-family="Sans" fill="#000000"><tspan id="shapes-f16.svgtspan2583" sodipodi:role="line" x="4771.5923" y="1926.4734"/><tspan id="shapes-f16.svgtspan2585"/><tspan id="shapes-f16.svgtspan2587" sodipodi:role="line" x="4771.5923" y="1931.2482">3.00</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2589" line-height="120.00000477%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="matrix(0.9999998,-5.9742909e-4,5.9742909e-4,0.9999998,0,0)" font-style="normal" sodipodi:linespacing="120%" font-stretch="normal" font-size="3.97898054px" font-variant="normal" y="5153.0781" x="118.05905" font-family="Sans" fill="#000000"><tspan id="shapes-f16.svgtspan2590" sodipodi:role="line" x="118.05905" y="5157.853">-</tspan><tspan id="shapes-f16.svgtspan2592"/><tspan id="shapes-f16.svgtspan2594">3.00</tspan><tspan id="shapes-f16.svgtspan2596" sodipodi:role="line" x="118.05905" y="5157.853"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath896" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" sodipodi:sides="3" fill-rule="evenodd" fill="#000" sodipodi:r1="120.20276" sodipodi:r2="60.101379" transform="matrix(0.120864,0,0,-0.120864,224.0977,5193.3395)" sodipodi:arg2="1.575272" sodipodi:arg1="0.52807445" inkscape:randomized="0" sodipodi:cy="492.50204" sodipodi:cx="224.45302" inkscape:rounded="0.41" inkscape:flatsided="false" d="M328.28,553.07c-21.5,36.87-61.42-0.28-104.1-0.47s-82.92,36.59-104.09-0.46c-21.178-37.06,30.94-53.05,52.45-89.92,21.5-36.87,9.77-90.11,52.45-89.92s30.47,53.33,51.65,90.38c21.17,37.06,73.15,53.52,51.64,90.39z"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2598" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5128.3325" x="246.78233" font-family="Sans" sodipodi:linespacing="120%" fill="#ffffff"><tspan id="shapes-f16.svgtspan2599" sodipodi:role="line" x="246.78233" y="5128.3325"/><tspan id="shapes-f16.svgtspan2601"/><tspan id="shapes-f16.svgtspan2603" sodipodi:role="line" x="246.78233" y="5133.1074">0.41</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2909" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5207.9946" x="31.764177" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan2606" sodipodi:role="line" x="31.764177" y="5212.7695">5.43</tspan><tspan id="shapes-f16.svgtspan2608"/><tspan id="shapes-f16.svgtspan2610" sodipodi:role="line" x="31.764177" y="5212.7695"/></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext2613" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5201.9175" x="73.424889" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan2613" sodipodi:role="line" x="73.424889" y="5201.9175"/><tspan id="shapes-f16.svgtspan2615"/><tspan id="shapes-f16.svgtspan2617" sodipodi:role="line" x="73.424889" y="5206.6924">1.85</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext3240" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5256.2007" x="72.718216" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan3241" sodipodi:role="line" x="72.718216" y="5256.2007"/><tspan id="shapes-f16.svgtspan3243"/><tspan id="shapes-f16.svgtspan3245" sodipodi:role="line" x="72.718216" y="5260.9756">0.21</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext3868" line-height="120.00000477%" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" transform="matrix(0.9999998,-5.9742906e-4,5.9742906e-4,0.9999998,0,0)" font-style="normal" sodipodi:linespacing="120%" font-stretch="normal" font-size="3.97898054px" font-variant="normal" y="5182.793" x="113.73191" font-family="Sans" fill="#000000"><tspan id="shapes-f16.svgtspan3869" sodipodi:role="line" x="113.73191" y="5187.5679">-</tspan><tspan id="shapes-f16.svgtspan3871"/><tspan id="shapes-f16.svgtspan3873">3.00</tspan><tspan id="shapes-f16.svgtspan3875" sodipodi:role="line" x="113.73191" y="5187.5679"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath4498" stroke-linejoin="miter" sodipodi:sides="9" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.71101642" fill="#cecece" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" transform="matrix(0.503029,8.386162e-2,-8.386162e-2,0.503029,550.5811,2637.6075)" stroke-miterlimit="4" inkscape:rounded="-0.43" sodipodi:r1="46.149918" sodipodi:r2="18.172943" sodipodi:arg1="0.932314" sodipodi:arg2="1.2813799" sodipodi:type="star" d="M132.89,5179.5c10.26-7.6-34.571-16-22.32-19.6,12.25-3.7-20.697,27.9-7.94,28.6,12.76,0.8-16.198-34.4-4.468-29.4,11.728,5.1-33.782,8.1-24.496,16.9,9.285,8.8,9.746-36.8,15.467-25.4s-31.059-15.5-29.594-2.8c1.466,12.7,31.136-22,28.169-9.6-2.966,12.5-13.803-31.8-20.843-21.2-7.041,10.7,37.955,3.3,27.689,10.9-10.265,7.6,9.916-33.3-2.34-29.7-12.252,3.7,27.016,26.9,14.256,26.1-12.763-0.7,28.99-19.1,17.26-24.2s3.43,38-5.85,29.2c-9.29-8.8,34.5,3.9,28.78-7.5s-21.76,31.3-23.22,18.6c-1.47-12.7,23.87,25.2,26.84,12.8,2.96-12.5-36.77,9.9-29.73-0.7,7.04-10.7,2.07,34.6,12.34,27z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="5142.4639" sodipodi:cx="105.38494"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext4499" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5234.6445" x="166.34573" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan4500" sodipodi:role="line" x="166.34573" y="5239.4194">-0.43</tspan><tspan id="shapes-f16.svgtspan4502"/><tspan id="shapes-f16.svgtspan4504" sodipodi:role="line" x="166.34573" y="5239.4194"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath5127" stroke-linejoin="miter" sodipodi:sides="5" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.71101642" fill="#00edff" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" transform="matrix(0.306731,-4.26791e-2,4.26791e-2,0.306731,-185.0316,3672.3215)" stroke-miterlimit="4" inkscape:rounded="-8.9362223" sodipodi:r1="17.613136" sodipodi:r2="8.111702" sodipodi:arg1="-2.7000003" sodipodi:arg2="-2.0716818" sodipodi:type="star" d="M-6.3694,5101.1c-45.965,97.2,106.37-51.3,12.028,0.4-94.339,51.6,112.81,3.3,6.1341-10.4-106.68-13.6,81.595,85.3,3.324,11.6-78.27-73.8,31.71,108.3,11.744,2.6s-55.938,104-9.973,6.8c45.965-97.3-93.215,63.6,1.124,11.9,94.338-51.6-116.17-21-9.4888-7.4,106.68,13.7-89.319-69-11.049,4.8,78.271,73.8-15.857-117,4.109-11.3s38.013-106.3-7.9528-9z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="5108.5903" sodipodi:cx="9.5541286"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext6108" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5257.6816" x="31.20429" font-family="Sans" sodipodi:linespacing="120%" fill="#000000"><tspan id="shapes-f16.svgtspan5129" sodipodi:role="line" x="31.20429" y="5262.4565">-8.94</tspan><tspan id="shapes-f16.svgtspan5131"/><tspan id="shapes-f16.svgtspan5133" sodipodi:role="line" x="31.20429" y="5262.4565"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f16.svgpath5833" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" sodipodi:sides="4" fill-rule="evenodd" fill="#000" sodipodi:r1="45.711628" sodipodi:r2="32.323002" transform="matrix(0.241306,0,0,0.241306,69.66014,4062.7215)" sodipodi:arg2="1.5707963" sodipodi:arg1="0.78539816" inkscape:randomized="0" sodipodi:cy="4696.8921" sodipodi:cx="171.63371" inkscape:rounded="0.39" inkscape:flatsided="true" d="M203.96,4729.2c-17.83,17.8-46.82,17.8-64.65,0s-17.83-46.8,0-64.6c17.83-17.9,46.82-17.9,64.65,0,17.82,17.8,17.82,46.8,0,64.6z"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f16.svgtext5837" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" xml:space="preserve" font-variant="normal" font-size="3.97900414px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5192.7197" x="106.31843" font-family="Sans" sodipodi:linespacing="120%" fill="#ffffff"><tspan id="shapes-f16.svgtspan5838" sodipodi:role="line" x="106.31843" y="5192.7197"/><tspan id="shapes-f16.svgtspan5840"/><tspan id="shapes-f16.svgtspan5842" sodipodi:role="line" x="106.31843" y="5197.4946">0.39</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e654" display="none" height="1000px" width="288" y="5175.1" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3603" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(8.1728722,100)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3605">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3607" xlink:href="#d0e654" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3609" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">اگر میخواهید که پرههای یک ستاره تیز باشند ولی نقاط مقعرش نرم باشند یا برعکس، باید از ستاره یک آفست (offset) بسازید (Ctrl+J):</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f17.svgtext3939" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="6.2156806px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5317.2046" x="39.064491" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f17.svgtspan3940" y="5317.2046" x="39.064491" sodipodi:role="line">ستاره اصلی</tspan><tspan id="shapes-f17.svgtspan3946" y="5324.6636" x="39.064491" sodipodi:role="line"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f17.svgtext3948" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="6.2156806px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5317.2046" x="121.15958" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f17.svgtspan3949" y="5317.2046" x="121.15958" sodipodi:role="line">آفست متصل شده، درونی</tspan><tspan id="shapes-f17.svgtspan3955" y="5324.6636" x="121.15958" sodipodi:role="line"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="shapes-f17.svgtext3957" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="6.2156806px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5317.2046" x="220.99135" font-family="DejaVu Sans Mono" xml:space="preserve" fill="#000000"><tspan id="shapes-f17.svgtspan3958" y="5317.2046" x="220.99135" sodipodi:role="line">آفست متصل شده، بیرونی</tspan><tspan id="shapes-f17.svgtspan3964" y="5324.6636" x="220.99135" sodipodi:role="line"/></text>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="shapes-f17.svgpath2694" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="inkscape:offset" d="M95.281,5226.1c-0.505,1.3-0.992,2.3-1.531,3.8-0.965,2.7-1.946,5.5-3.281,8-1.336,2.6-2.997,5.3-6.625,6.3-3.809,1.1-6.832-0.5-9.532-2-2.699-1.6-5.288-3.6-7.718-5.4-1.16-0.8-1.941-1.2-2.969-1.9,0.626,0.8,0.92,1.3,1.656,2.2,1.901,2.3,4.002,4.7,5.688,7.3,1.686,2.5,3.47,5.4,2.469,9.3-0.987,3.8-3.865,5.7-6.563,7.2-2.698,1.6-5.7,2.8-8.469,4-1.371,0.6-2.144,1.1-3.281,1.7,1.049-0.2,1.689-0.1,2.875-0.4,2.912-0.5,6.066-1.1,9.125-1.3,3.059-0.1,6.475-0.2,9.344,2.6,2.825,2.7,2.97,6.1,2.969,9.3-0.002,3.1-0.439,6.3-0.782,9.3-0.165,1.4-0.105,2.3-0.187,3.6,0.388-1,0.694-1.5,1.093-2.6,1.012-2.8,2.065-5.8,3.438-8.5,1.373-2.8,3.005-5.8,6.875-6.8,3.809-1.1,6.832,0.5,9.531,2,2.704,1.6,5.284,3.5,7.714,5.3,1.16,0.9,1.95,1.3,2.97,2-0.62-0.8-0.92-1.4-1.65-2.3-1.9-2.2-4-4.6-5.69-7.2s-3.47-5.5-2.47-9.4c0.99-3.8,3.87-5.6,6.56-7.2,2.7-1.5,5.7-2.8,8.47-4,1.37-0.6,2.15-1.1,3.28-1.6-1.04,0.1-1.69,0.1-2.87,0.3-2.91,0.5-6.07,1.1-9.13,1.3s-6.47,0.3-9.34-2.5c-2.826-2.8-2.971-6.2-2.969-9.3s0.439-6.3,0.781-9.3c0.173-1.5,0.139-2.5,0.219-3.8z" fill-rule="evenodd" xlink:href="#shapes-f17.svgpath2693" inkscape:original="M 96.125 5217.4375 C 90.627188 5218.3264 88.703451 5238.2846 82.65625 5239.9688 C 75.920688 5241.8446 62.131885 5223.9677 57.03125 5228.75 C 52.146599 5233.3298 70.825716 5246.1406 69.15625 5252.625 C 67.412966 5259.3961 45.033762 5262.3791 46.625 5269.1875 C 48.148858 5275.7076 68.594118 5265.937 73.375 5270.625 C 78.367278 5275.5203 69.745627 5296.4113 76.4375 5298.4375 C 82.846009 5300.3779 84.612152 5277.7964 91.0625 5276 C 97.798062 5274.1242 111.58686 5292.001 116.6875 5287.2188 C 121.57215 5282.639 102.89303 5269.8281 104.5625 5263.3438 C 106.30578 5256.5727 128.68499 5253.5897 127.09375 5246.7812 C 125.56989 5240.2611 105.12463 5250.0317 100.34375 5245.3438 C 95.351472 5240.4485 103.97312 5219.5574 97.28125 5217.5312 C 96.880718 5217.41 96.491521 5217.3782 96.125 5217.4375 z " transform="matrix(1.32052,0,0,1.32052,42.68152,-1566.8061)" stroke="#000" stroke-dashoffset="0" fill-opacity="0.75" inkscape:href="#shapes-f17.svgpath2693" stroke-linecap="butt" stroke-miterlimit="4" inkscape:radius="-4.4234619" stroke-width="0.4732984" fill="#ffb800"/>
d048f1c15089c16b8ca1b264513a2f92ff86e703JazzyNico <path id="shapes-f17.svgpath2696" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="inkscape:offset" d="M97.5,5207.5c-0.947,0-1.963,0-2.969,0.2-7.058,1.1-9.237,5.9-10.781,8.8-1.544,3-2.513,5.9-3.469,8.5-0.465,1.3-0.798,2-1.219,3.1-1.266-0.9-2.361-1.7-3.937-2.8-2.538-1.9-5.19-3.9-8.75-5.5-1.78-0.9-3.857-1.7-6.75-1.8s-6.799,1.1-9.375,3.5c-2.603,2.4-4.091,6.7-3.938,9.8,0.154,3.1,1.118,5.1,2.032,6.9,1.827,3.4,3.957,5.8,5.937,8.1,1.153,1.4,1.853,2.4,2.75,3.5-1.387,0.6-2.558,1.2-4.343,2-2.892,1.2-5.986,2.5-9.188,4.8-1.601,1.1-3.349,2.5-4.875,5-1.526,2.4-2.46,6.4-1.656,9.8,0.812,3.5,3.785,6.9,6.531,8.4,2.746,1.4,4.998,1.5,6.938,1.6,3.879,0.1,7.028-0.5,10.062-1,1.765-0.3,2.917-0.5,4.344-0.7-0.128,1.5-0.217,2.8-0.438,4.8-0.358,3.1-0.792,6.4-0.437,10.3,0.177,2,0.508,4.2,1.875,6.7,1.366,2.6,4.337,5.4,7.718,6.4,3.416,1.1,7.877,0.2,10.469-1.5,2.592-1.6,3.879-3.5,4.907-5.2,2.054-3.2,3.071-6.3,4.124-9.2,0.614-1.7,1.064-2.8,1.594-4.1,1.267,0.9,2.361,1.6,3.938,2.8,2.536,1.9,5.186,3.9,8.746,5.5,1.78,0.8,3.86,1.6,6.75,1.7,2.9,0.1,6.8-1,9.38-3.4,2.6-2.5,4.09-6.8,3.94-9.8-0.16-3.1-1.12-5.2-2.03-6.9-1.83-3.4-3.96-5.8-5.94-8.2-1.16-1.3-1.86-2.3-2.75-3.4,1.39-0.7,2.56-1.2,4.34-2,2.89-1.3,5.99-2.5,9.19-4.8,1.6-1.1,3.35-2.5,4.87-5,1.53-2.5,2.46-6.4,1.66-9.9-0.81-3.4-3.78-6.9-6.53-8.3s-5-1.6-6.94-1.6c-3.88-0.2-7.03,0.5-10.06,1-1.77,0.3-2.92,0.4-4.34,0.6,0.12-1.5,0.21-2.8,0.43-4.7,0.36-3.1,0.79-6.4,0.44-10.3-0.18-2-0.51-4.2-1.87-6.8-1.37-2.5-4.34-5.3-7.72-6.4-0.827-0.2-1.713-0.4-2.66-0.5z" fill-rule="evenodd" xlink:href="#shapes-f17.svgpath2693" inkscape:original="M 96.125 5217.4375 C 90.627188 5218.3264 88.703451 5238.2846 82.65625 5239.9688 C 75.920688 5241.8446 62.131885 5223.9677 57.03125 5228.75 C 52.146599 5233.3298 70.825716 5246.1406 69.15625 5252.625 C 67.412966 5259.3961 45.033762 5262.3791 46.625 5269.1875 C 48.148858 5275.7076 68.594118 5265.937 73.375 5270.625 C 78.367278 5275.5203 69.745627 5296.4113 76.4375 5298.4375 C 82.846009 5300.3779 84.612152 5277.7964 91.0625 5276 C 97.798062 5274.1242 111.58686 5292.001 116.6875 5287.2188 C 121.57215 5282.639 102.89303 5269.8281 104.5625 5263.3438 C 106.30578 5256.5727 128.68499 5253.5897 127.09375 5246.7812 C 125.56989 5240.2611 105.12463 5250.0317 100.34375 5245.3438 C 95.351472 5240.4485 103.97312 5219.5574 97.28125 5217.5312 C 96.880718 5217.41 96.491521 5217.3782 96.125 5217.4375 z " transform="matrix(0.827366,0,0,0.827366,187.7036,1028.4779)" stroke="#000" stroke-dashoffset="0" fill-opacity="0.75" inkscape:href="#shapes-f17.svgpath2693" stroke-linecap="butt" stroke-miterlimit="4" inkscape:radius="9.9201479" stroke-width="0.75540936" fill="#ffb800"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f17.svgpath2693" stroke-linejoin="miter" sodipodi:sides="6" fill-opacity="0.75" inkscape:flatsided="false" stroke="#000" stroke-linecap="butt" stroke-width="0.625" fill="#ffb800" style="marker-end:none;marker-start:none;marker-mid:none;" fill-rule="evenodd" transform="translate(-22.78474,118.77088)" stroke-miterlimit="4" inkscape:rounded="0.25" sodipodi:r1="41.765072" sodipodi:r2="18.491833" sodipodi:arg1="0.77559456" sodipodi:arg2="1.3411834" sodipodi:type="star" d="M116.68,5287.2c-5.1,4.8-18.88-13.1-25.616-11.2-6.45,1.8-8.213,24.4-14.622,22.4-6.692-2,1.916-22.9-3.076-27.8-4.781-4.7-25.22,5.1-26.744-1.4-1.592-6.8,20.792-9.8,22.535-16.6,1.67-6.5-17.006-19.3-12.122-23.9,5.101-4.7,18.876,13.2,25.612,11.3,6.45-1.8,8.214-24.4,14.622-22.5,6.691,2.1-1.916,22.9,3.081,27.8,4.78,4.7,25.22-5,26.74,1.5,1.59,6.8-20.79,9.8-22.54,16.5-1.67,6.5,17.01,19.3,12.13,23.9z" stroke-dashoffset="0" inkscape:randomized="0" sodipodi:cy="5257.9824" sodipodi:cx="86.855721"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e673" display="none" height="1000px" width="288" y="5332.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3634" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.7299019,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3636">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3638" xlink:href="#d0e673" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3640" xml:space="preserve">با <flowSpan id="flowSpan5272" font-weight="bold">Shift+درگ</flowSpan> کردن اهرمها در Inkscape یکی از بهترین سرگرمیهای انسان را تجربه کنید. اما این سرگرمی میتواند بهتر هم شود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e679" display="none" height="1000px" width="288" y="5362.2" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3645" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345792,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3647">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3649" xlink:href="#d0e679" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3651" xml:space="preserve">برای نزدیکتر شدن اشکال به دنیای واقعی، Inkscape میتواند ستارهها و چندضلعیها را تصادفی (randomize) کند. تصادفی کردن نرم (Slight) یک ستاره را کمی نامنظم میکند ولی هنوز وجههاش را حفظ میکند. تصادفی کردن قوی یک روش هیجان انگیز برای به دست آوردن مجموعهای از اشیاء غیر قابل پیشبینی دیوانهکننده است. یک ستاره گوشه گرد شده، وقتی تصادفی شود همچنان گوشه گرد میماند. اینجا چند میانبر آمدهاست:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3655" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,5542.5497)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e688" display="none" height="1000px" width="258" y="5434.5" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3658" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3660">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3662" xlink:href="#d0e688" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3664" xml:space="preserve">با<flowSpan id="flowSpan5274" font-weight="bold"> Alt+درگ</flowSpan> کردن یک اهرم از ستاره یا چندضلعی یک شکل تصادفی ساخته میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3668" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,5571.97)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e695" display="none" height="1000px" width="258" y="5464" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3671" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3673">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3675" xlink:href="#d0e695" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3677" xml:space="preserve">با <flowSpan id="flowSpan5276" font-weight="bold">Alt+کلیک</flowSpan> کردن یک اهرم حالت تصادفی حذف میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e702" display="none" height="1000px" width="288" y="5480.5" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3682" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.114648,106)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3684">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3686" xlink:href="#d0e702" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3688" xml:space="preserve">چه یک ستارهی تصادفی بکشید یا یک ستاره را با درگ کردن اهرمش تصادفی کنید، شکل خواهد لرزید چون موقعیت هر اهرمش بر روی حالت تصادفی منطبق میشود. بنابراین، جابهجا کردن اهرم بدون نگهداشتن Alt شکل را دوباره در همان سطح تصادفی، دوباره-تصادفی میکند، در حالیکه نگهداشتن Alt و درگ کردن اهرم همان حالت تصادفی را حفظ کرده و فقط سطح آن را تنظیم میکند. در اینجا ستارههایی آمدهاند که پارامترهایشان دقیقا مشابه هستند، اما هر کدام با کمی جابهجا کردن اهرمشان دوباره-تصادفی شدهاند. (در تمام اشکال سطح تصادفی سازی ۰.۱ است):</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f18.svgpath2788" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M58.553,5590.9c-2.573,3.4-15.025-3.5-17.918-0.9-2.79,2.5,2.345,13.8-1.678,14.3-4.171,0.5-3.815-14.6-7.67-15.8-3.717-1.1-17.979,13.8-20.426,10.9-2.5377-3,10.265-12.7,9.009-16.5-1.211-3.7-17.879-6.6-17.172-10.4,0.7336-3.8,17.702-1.3,20.074-4.5,2.287-3.2-12.72-18.7-9.402-20.4,3.441-1.8,15.229,12.9,19.096,12,3.729-0.8,9.056-18.4,12.69-16.9,3.767,1.5-1.457,17.7,1.295,20.6,2.654,2.8,15.207-3.8,16.541-0.2,1.384,3.8-13.038,9.9-12.837,14.1,0.193,4,10.878,10.5,8.397,13.7z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.728476" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,16.330246,983.1082)" sodipodi:arg2="0.98389742" sodipodi:arg1="0.5059504" inkscape:randomized="0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.364238" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f18.svgpath2789" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M62.192,5577.2c-0.733,3.7-11.065,1.3-13.354,4.4-2.202,3,0.954,16.5-2.147,18.6-3.224,2.1-10.016-9.4-13.797-9.6-3.637-0.2-5.862,11.4-9.399,10.1-3.677-1.3,2.956-10.2,0.649-13.4-2.22-3.2-17.575-0.2-18.85-3.8-1.3258-3.8,12.33-5.9,12.606-9.9,0.266-3.9-11.16-13.3-8.5838-16.1,2.6778-2.9,16.669,7.8,20.11,5.9,3.311-1.8,1.811-16.6,5.419-16.4,3.751,0.2,4.374,11.2,7.702,12.9,3.203,1.6,11.043-5.2,13.397-2.2,2.447,3.1-8.982,7.4-8.346,11.1,0.611,3.7,15.299,4.9,14.594,8.4z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="29.479511" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,76.37022,983.1082)" sodipodi:arg2="0.64669515" sodipodi:arg1="0.16874813" inkscape:randomized="0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.18827" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f18.svgpath2790" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M62.487,5591.1c-2.584,3.2-19.795-4.8-23.125-2.6-3.211,2.1,1.401,15.8-2.556,16.8-4.103,1-1.338-12.7-5.129-13.9-3.657-1-19.069,8.4-21.492,5.3-2.5119-3.3,10.704-13.8,9.457-17.8-1.203-3.8-19.512-0.1-18.462-3.9,1.0886-4,14.981-5.7,17.32-9.1,2.256-3.2-6.854-14-3.398-16.1,3.584-2,15.403,9.4,19.48,9.5,3.933,0.1,6.508-13.9,9.898-12.1,3.515,1.8-4.156,14.7-1.096,17.2,2.951,2.4,17.494-6.3,19.072-2.7,1.636,3.7-13.965,11.1-14.782,15.1-0.788,3.7,17.305,11.1,14.813,14.3z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.461117" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,136.4111,983.1082)" sodipodi:arg2="1.0163215" sodipodi:arg1="0.53837452" inkscape:randomized="0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.230559" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f18.svgpath2791" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M60.008,5593.6c-1.883,3.4-12.402-8.2-15.83-6.5-3.306,1.6-1.726,20.6-5.635,20.7-4.053,0.1-4.988-16.2-8.797-17.4-3.673-1.1-13.903,7-16.41,4-2.598-3,9.392-11.8,8.745-15.9-0.624-3.8-15.727-2.2-15.135-6,0.6135-4,11.013-1.7,12.747-5.1,1.672-3.3-1.474-16.7,2.196-18.5,3.805-1.7,6.817,10.2,10.617,9.3,3.665-0.9,10.537-11.7,14.221-10.6,3.821,1.2-4.262,11.4-1.488,14.2,2.676,2.8,14.591-1.9,15.512,1.8,0.956,3.8-9.663,10.4-9.963,14.4-0.289,3.9,11.036,12.4,9.22,15.6z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.324377" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,196.4497,983.1082)" sodipodi:arg2="1.075916" sodipodi:arg1="0.59796906" inkscape:randomized="0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.162188" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f18.svgpath2792" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M59.226,5596.8c-2.425,3.3-15.132-7.7-18.888-6.7-3.624,1-6.802,16.9-10.457,16.7-3.789-0.1,2.399-14.8-1.253-16.7-3.522-1.7-14.588,7.8-16.308,4.3-1.783-3.6,6.846-14.3,5.691-18-1.114-3.6-16.06-6.3-14.948-10.2,1.1536-4,19.097,2.1,21.458-1.3,2.278-3.4-4.961-14.2-1.253-15,3.844-0.8,9.38,11.6,13.462,12.2,3.937,0.6,9.297-19,12.452-16.6,3.272,2.4-7.578,16.5-4.826,19.6,2.655,3,18.78-2,18.937,1.9,0.164,4-12.063,8.2-12.607,12.1-0.525,3.7,10.879,14.6,8.54,17.7z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.103865" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,256.4904,983.1082)" sodipodi:arg2="1.2035873" sodipodi:arg1="0.72564034" inkscape:randomized="0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.051932" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e715" display="none" height="1000px" width="288" y="5652.2" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3696" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.8078252,90)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3698">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3700" xlink:href="#d0e715" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3702" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">و اینجا ستاره وسطی از ردیف قبلی آورده شده و سطح تصادفیسازی آن از ۰.۲- تا ۰.۲ تغییر داده شدهاست:</flowDiv>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f19.svgtext2848" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5773.1318" x="284.15491" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f19.svgtspan2849" y="5773.1318" x="284.15491" sodipodi:role="line"/><tspan id="shapes-f19.svgtspan2851"/><tspan id="shapes-f19.svgtspan2853" y="5779.5698" x="284.15491" sodipodi:role="line">+0.2</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f19.svgtext2841" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5773.1318" x="222.89142" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f19.svgtspan2842" y="5773.1318" x="222.89142" sodipodi:role="line"/><tspan id="shapes-f19.svgtspan2844"/><tspan id="shapes-f19.svgtspan2846" y="5779.5698" x="222.89142" sodipodi:role="line">+0.1</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f19.svgtext2833" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5779.7036" x="161.42322" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f19.svgtspan2835" y="5786.1416" x="161.42322" sodipodi:role="line">0</tspan><tspan id="shapes-f19.svgtspan2837"/><tspan id="shapes-f19.svgtspan2839" y="5786.1416" x="161.42322" sodipodi:role="line"/></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f19.svgtext2814" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5779.7036" x="93.021225" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f19.svgtspan2821" y="5786.1416" x="93.021225" sodipodi:role="line">-0.1</tspan><tspan id="shapes-f19.svgtspan2829"/><tspan id="shapes-f19.svgtspan2831" y="5786.1416" x="93.021225" sodipodi:role="line"/></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f19.svgtext2805" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="5779.7036" x="36.32832" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f19.svgtspan2807" y="5786.1416" x="36.32832" sodipodi:role="line">-0.2</tspan><tspan id="shapes-f19.svgtspan2809"/><tspan id="shapes-f19.svgtspan2811" y="5786.1416" x="36.32832" sodipodi:role="line"/></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f19.svgpath2797" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M62.487,5591.1c-2.584,3.2-19.795-4.8-23.125-2.6-3.211,2.1,1.401,15.8-2.556,16.8-4.103,1-1.338-12.7-5.129-13.9-3.657-1-19.069,8.4-21.492,5.3-2.5119-3.3,10.704-13.8,9.457-17.8-1.203-3.8-19.512-0.1-18.462-3.9,1.0886-4,14.981-5.7,17.32-9.1,2.256-3.2-6.854-14-3.398-16.1,3.584-2,15.403,9.4,19.48,9.5,3.933,0.1,6.508-13.9,9.898-12.1,3.515,1.8-4.156,14.7-1.096,17.2,2.951,2.4,17.494-6.3,19.072-2.7,1.636,3.7-13.965,11.1-14.782,15.1-0.788,3.7,17.305,11.1,14.813,14.3z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.461117" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,200.1905,1093.0449)" sodipodi:arg2="1.0163215" sodipodi:arg1="0.53837452" inkscape:randomized="0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.230559" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f19.svgpath2798" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M60.295,5590.3c-2.167,3.4-14.768-4.9-18.133-2.7-3.245,2.2-0.057,16.9-3.924,17.3-4.01,0.4-5.384-14.6-9.219-15.9-3.699-1.2-13.19,10.5-15.922,7.7-2.833-2.9,8.055-13.3,6.638-17.1-1.367-3.6-16.392-3.8-15.931-7.6,0.4777-4.1,15.429-2,17.496-5.5,1.994-3.3-7.249-15.2-3.942-17.2,3.428-2.2,11.183,10.8,15.179,10.2,3.853-0.5,7.352-15.1,11.014-13.8,3.797,1.4-1.483,15.5,1.432,18.3,2.811,2.7,16.416-3.7,17.677,0,1.307,3.8-13.033,8.5-13.394,12.5-0.347,3.9,13.12,10.5,11.029,13.8z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.461117" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,136.4111,1093.0449)" sodipodi:arg2="1.0163215" sodipodi:arg1="0.53837452" inkscape:randomized="0" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.230559" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f19.svgpath2799" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M64.679,5591.8c-2.999,3.2-24.823-4.6-28.117-2.4-3.177,2.1,2.773,14.7-1.188,16.2-4.107,1.7,2.703-10.7-1.04-11.7-3.611-1-24.996,6.3-27.06,2.8-2.1399-3.6,13.334-14.3,12.275-18.5-1.022-4-22.639,3.6-20.993-0.2,1.7068-3.9,14.536-9.3,17.144-12.6,2.515-3.2-6.4602-13-2.853-15,3.739-2,19.716,8,23.781,8.7,3.921,0.6,5.725-12.7,8.781-10.5,3.169,2.3-6.804,14-3.625,16.3,3.067,2.1,18.584-8.9,20.468-5.5,1.954,3.6-14.914,13.9-16.17,17.6-1.212,3.7,21.489,11.8,18.597,14.8z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.461117" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,263.9699,1093.0449)" sodipodi:arg2="1.0163215" sodipodi:arg1="0.53837452" inkscape:randomized="0.2" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.230559" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f19.svgpath2800" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M58.104,5589.5c-1.756,3.5-9.742-5-13.142-2.8-3.28,2.2-1.593,17.9-5.293,17.8-3.835-0.2-9.433-16.5-13.307-17.9-3.737-1.3-7.367,12.5-10.354,10.1-3.098-2.5,5.388-12.8,3.82-16.4-1.513-3.4-13.292-7.6-13.4-11.4-0.1119-3.9,15.877,1.7,17.672-1.9,1.732-3.4-7.644-16.3-4.487-18.3,3.273-2.2,7.054,12.2,10.878,11.1,3.687-1.1,8.266-16.3,12.131-15.6,4.007,0.9,1.214,16.3,3.96,19.3,2.648,3,15.348-1,16.282,2.7,0.968,3.9-12.112,5.9-12.005,10,0.103,3.9,8.938,10,7.245,13.3z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.461117" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,69.08828,1093.0449)" sodipodi:arg2="1.0163215" sodipodi:arg1="0.53837452" inkscape:randomized="-0.1" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.230559" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f19.svgpath2801" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:type="star" d="M55.912,5588.8c-1.352,3.4-4.714-5.2-8.15-3-3.314,2.2-3.197,18.9-6.661,18.3-3.591-0.6-13.488-18.4-17.397-19.9-3.77-1.5-1.597,14.5-4.785,12.5-3.305-2,2.703-12.3,1.002-15.7-1.641-3.2-10.225-11.5-10.868-15.1-0.6669-3.8,16.323,5.3,17.848,1.7,1.47-3.4-8.041-17.4-5.033-19.5,3.12-2.2,3.01,13.6,6.577,11.9,3.44-1.6,9.257-17.4,13.247-17.2,4.138,0.2,3.937,17,6.489,20.3,2.462,3.2,14.285,1.6,14.887,5.4,0.624,4-11.195,3.4-10.617,7.4,0.558,3.9,4.765,9.5,3.461,12.9z" fill-rule="evenodd" fill="#ff6c2e" sodipodi:r1="30.461117" inkscape:flatsided="false" transform="matrix(0.847225,0,0,0.847225,12.395329,1093.0449)" sodipodi:arg2="1.0163215" sodipodi:arg1="0.53837452" inkscape:randomized="-0.2" sodipodi:cy="5574.6763" sodipodi:cx="34.143131" inkscape:rounded="0.22" sodipodi:r2="15.230559" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e728" display="none" height="1000px" width="288" y="5764.4" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3730" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(7.7298878,88)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3732">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3734" xlink:href="#d0e728" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3736" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">یکی از اهرمهای ستارهی وسطی این ردیف را با نگهداشتن <flowSpan id="flowSpan5278" font-weight="bold">Alt درگ</flowSpan> کنید و ببینید که چطور به همسایههای راست و چپش تغییر شکل میدهد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e734" display="none" height="1000px" width="288" y="5793.8" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3741" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.9103625,88)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3743">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3745" xlink:href="#d0e734" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3747" xml:space="preserve">شما احتمالا آنطور که نیاز دارید از ستارههای تصادفی استفاده خواهید کرد، اما من به خصوص به ساختن لکه باکتریها، گیاهان زبر بزرگ و مناظر فانتزی با آنها علاقه دارم:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath1599" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M-27.728,6073.8c4.227,5.7,9.747,7.9,17.311,4.3,40.796-18.9-86.677-90.9-45.309-108.7,41.367-17.9,38.426,133.6,79.447,115.9,41.021-17.6-85.882-102.3-43.768-118,42.114-15.6,10.671,111.8,52.829,96.9,42.157-14.9-66.905-108.4-24.487-123.8s6.3072,143.2,49.273,130.6c42.962-12.7-78.565-123.5-35.751-136.5,42.814-12.9,15.198,146.6,58.146,134.8,42.947-11.8-78.229-132-34.315-142.3,43.914-10.2-9.116,133.1,34.2,123.6,43.312-9.6-55.846-112.5-11.336-119.5,44.508-7-13.312,122.6,31.18,117.5,44.488-5.1-45.236-120.3-0.842-125.2,44.39-5-14.104,134.7,30.31,130.1,44.42-4.6-38.921-132.7,6.05-134.5,44.96-1.8-41.683,133.5,3.31,131.2,44.99-2.3-24.87-122.6,19.84-122.7,44.7-0.1-25.39,112.8,18.95,113.6,44.35,0.8-45.2-127.2-0.28-125.5s-33.15,131.8,11.65,134.9-19.34-129.9,25.3-126.8c44.63,3.1-49.14,114.1-4.38,119,44.75,4.8-14.85-128.7,29.28-121.3,44.12,7.5-61.17,122.7-17.13,131.2,44.04,8.6-13.12-140.8,30.73-132.3,43.84,8.6-40.4,123.2,2.99,134,43.4,10.9-5.71-129.7,37.05-118.2s-72.52,105.9-29.78,118.1c42.73,12.1-0.72-125.4,41.83-112.1s-66.61,102.3-24.04,116.4c42.56,14.1,13.33-115.4,55.14-99.7,41.81,15.6-83.28,110.4-41.37,125.7s23.59-142,64.91-125.3-75.91,110.6-35.42,128.7c40.48,18.1,19.6-145.7,59.91-126,39.69,19.4-87.02,109.2-53.1,132" stroke-dashoffset="0" stroke="#d9d9d9" stroke-linecap="butt" stroke-miterlimit="4" stroke-width="0.69434953" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgrect1295" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:none;marker-mid:none;" d="M338.54,6038.2c-2.04,2.6-3.88,4.4-4.99,3.7-3.33-2,0.34-25.3-3.01-27.2-3.69-2.2-6.36,12.8-10.07,10.7-3.37-1.9,9.25-8.6,5.79-10.4-3.83-1.9-14.7,5.2-18.57,3.4-3.5-1.7-2.36-13.4-5.88-15-3.87-1.9-3.35,14.2-7.33,12.6-3.61-1.5,6.69-16.8,3.09-18.2-3.97-1.6-20.54,13.7-24.53,12.2-3.61-1.4,10.79-12,7.12-13.3-4.05-1.4-14.43,13.9-18.52,12.5-3.7-1.2,7.5-21.8,3.8-22.9-4.09-1.3-10.7,11-14.85,10-3.76-1,4.93-10.7,1.15-11.5-4.18-1-10,14.4-14.14,13.4-3.76-0.9-6.84-13.1-10.66-13.7-4.21-0.8-3.03,11.4-7.24,10.5-3.82-0.8,2.79-21.1-1.06-21.6-4.26-0.7-6.91,16.7-11.14,16-3.83-0.5-1.2-11-5.08-11.5-4.29-0.5-14.76,11.1-19.01,10.7-3.85-0.4,8.19-11.5,4.29-11.7-4.32-0.3-15.9,14.7-20.2,14.4-3.89-0.2,2.93-17-0.97-17.1-4.31-0.1-8.5,15-12.78,15-3.87,0-4.31-20.5-8.17-20.3-4.27,0.1,1.13,16.5-3.18,16.8-3.91,0.3-4.59-7.7-8.45-7.4-4.25,0.3-0.49,7.5-4.73,8-3.83,0.4-11.19-13.5-15.02-13-4.23,0.5-2.67,21.6-6.94,22.2-3.87,0.6,0.63-18.3-3.18-17.6-4.214,0.9-2.42,14.4-6.589,15.3-3.778,0.8-6.453-18.3-10.209-17.4-4.148,1.1,3.682,21-0.442,22.1-3.734,1-11.935-16.6-15.646-15.5-4.098,1.2,2.892,16.5-1.237,17.7-3.74,1-13.97-8.4-17.635-7.2-4.047,1.4,6.564,16.7,2.519,18.2-3.662,1.3-9.859-20.5-13.48-19.1-3.998,1.5,0.721,24.7-3.27,26.3-3.615,1.5-12.287-23.6-15.823-22-3.904,1.8,10.94,19.9,7.027,21.7-3.543,1.7-19.163-10.4-22.629-8.7-3.8271,2,12.636,13.7,8.7956,15.6-3.478,1.7-13.581-17.3-16.928-15.4-3.6961,2.1,1.6124,18.4-2.1215,20.5-3.3811,1.8-7.6557-7.7-11.005-5.8-3.699,2.2,5.9232,11.4,2.254,13.7-2.198,1.4-7.606-4-12.022-7.3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke-dashoffset="0" stroke="#000" stroke-linecap="butt" stroke-miterlimit="4" stroke-width="1.06071377" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath2853" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" sodipodi:sides="10" fill-rule="evenodd" fill="#000" sodipodi:r1="1251.4492" sodipodi:r2="717.9032" transform="matrix(1.44104e-2,1.44104e-2,-1.44104e-2,1.44104e-2,213.3568,5945.3733)" sodipodi:arg2="0.67945593" sodipodi:arg1="0.32910642" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.35" inkscape:flatsided="false" d="M586.43,1426.2c-43.66,223.1-607.31-342.5-726.13-152.6-112.6,180,553.03,440.4,382.12,578.7-180.35,145.8-273.95-407.7-456.44-305.9-172.93,96.6-11.44,801.3-215.6,792.8-215.44-8.9-83.98-767-303.43-842.7-207.96-71.8-426.05,622.4-600.85,515.3-184.3-113,354.64-587.5,223.6-773.3-124.2-176-522.9,318.6-603.8,115.2-85.4-214.7,303.1-189.8,324.7-409.71,20.5-208.42-506.8-141.74-455.7-344.73,54-214.2,691.1,193.6,847.25,59.03,147.96-127.53-367.85-470.09-183.95-586,193.95-122.32,341.55,357.44,556.76,280.71,203.92-72.7-292.41-729.01-70.13-723.96,234.58,5.33,103.62,441.76,304.16,552.87,190.04,105.3,296.29-451.98,460.08-332.45,172.84,126.14-122.18,713.87,42.571,871.44,156.12,149.32,631.61-214.95,669.22-24.66,39.69,200.81-672.27,93.03-650.52,316.16,20.61,211.5,497.47,202.4,456.09,413.8z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath1638" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" sodipodi:sides="10" fill-rule="evenodd" fill="#000" sodipodi:r1="288.60358" sodipodi:r2="523.09772" transform="matrix(-3.240508e-2,0,0,-3.653582e-2,225.3936,5978.8706)" sodipodi:arg2="1.3344848" sodipodi:arg1="1.0714496" inkscape:randomized="0.2" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.41" inkscape:flatsided="false" d="M-461.01,1115.3c-89.54,41.8,75.07,313.5-17,344.7-98.55,33.3-21.14-293.8-140.04-305.5-111.07-10.9-111.45,326.3-202.38,280-97.33-49.6,83.59-124.6-8.13-203.1-85.68-73.3-217.34,121-280.94,31.1-67.9-96.3,330.7-149.6,269.99-250-56.72-93.86-231.19,102.2-214.29-10.5,18.2-120.56,209.37-120.36,257.39-210.46,44.86-84.18-352.89-87.96-262.89-151.1,96.34-67.59,261.53,92.71,343.86,25.88,76.92-62.43-65.72-224.3,28.27-248.04,100.62-25.42-3.67,213.88,114.04,241.54,109.97,25.83,122.89-255.01,205.82-200,88.79,58.89-72.68,131.54,16.18,214.57,83.02,77.57,253.34-68.35,311.9,11.53,62.687,85.5-314.7,4.05-297.71,106.42,15.88,95.63,215.94,192.38,225.53,293.06,10.26,107.9-238.61-200.78-268.64-95.28-28.04,98.58,356.82,219.98,305.42,308.28-55.021,94.6-290.54-227.7-386.38-183.1z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath2855" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" sodipodi:sides="10" fill-rule="evenodd" fill="#000" sodipodi:r1="2299.585" sodipodi:r2="4673.7515" transform="matrix(5.131326e-3,8.887717e-3,-8.887717e-3,5.131326e-3,131.9634,6042.3654)" sodipodi:arg2="-0.12863391" sodipodi:arg1="-0.33254745" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.35" inkscape:flatsided="false" d="M1192.9-27.844c482.9,745.56,2477.9-79.186,2577.4,724.7,110.8,895.34-2260.4,135.2-2413.8,1083.5-137.7,851.6,2372.7,1191.9,1776.1,1742.2-664.3,612.9-1875.5-2082.8-2485.3-1340.6-547.54,666.4,1284.1,2154,488.72,2366.5-885.8,236.7-327.08-871.4-1212.1-704.9-794.67,149.6-1006,2531.5-1792.1,2199.1-875.5-370.3,215.8-2086.9-630.4-2610.8-759.8-470.4-646.4,1051.7-1051.3,224.5-451-921.3,1293.2-948.2,719.9-1705.5-514.9-680-2808.4,351.2-2892.3-503.1-93.6-951.53,2411.1,176.5,2464.1-721.78,47.6-806.61-2506.4-1245.3-1870.9-1908.7,707.7-738.9,1743.6,498.15,2577.5-27.6,748.7-472-1190-1457.1-315.1-1613.5,974.4-174.2,1798.9,855,2800.8,879.2,899.56,21.7-605.38-1743.7,274.02-1624.5,979.41,132.8-545.19,2655.8,315.59,2977.2,772.92,288.59,1449.9-1912.2,1911.9-1176.6,514.6,819.05-1780.6,910.33-1242.7,1740.7z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath2856" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" sodipodi:sides="7" fill-rule="evenodd" fill="#000" sodipodi:r1="1962.3131" sodipodi:r2="987.2879" transform="matrix(-1.219143e-2,0,0,-9.208558e-3,44.4855,5970.2198)" sodipodi:arg2="-1.0812633" sodipodi:arg1="-1.6417338" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.4" inkscape:flatsided="false" d="M-588.58-1237.5c467.43-23.4-60.18,1037,375.08,1257.3,378.77,191.71,563.66-436.8,875.13-141.04,357.97,339.87-464.71,212.17-396.03,674.57,59.77,402.38,1333,182.42,1226.9,572.11-122,447.9-1057.6,283-1244.2,717.5-162.35,378.1,678.16,506.9,313.49,713.6-419.07,237.6-421.33-855-908.3-886.5-423.76-27.5-847.12,1206.8-1171.1,947.7-372.4-297.8,553.08-987,143.9-1326.3-356-295.38-1063.4,758.9-1074.6,341.3-12.8-479.8,1041.5-607.5,1031.9-1137.5-8.4-461.25-1145.3-356.26-833.1-656.03,358.8-344.49,684.6,339.49,1117.8,40.25,376.93-260.39,136.36-1096.5,543.12-1116.9z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath2857" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" sodipodi:sides="7" fill-rule="evenodd" fill="#000" sodipodi:r1="1395.4882" sodipodi:r2="866.36334" transform="matrix(-8.987418e-3,0,0,-6.788472e-3,33.87873,6043.1463)" sodipodi:arg2="-1.0962105" sodipodi:arg1="-1.6706296" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.4" inkscape:flatsided="false" d="M-624.47-581.43c325.22,56.06,9.04,753.22,309.98,918.23,234.37,128.49,581.31-539.04,760.22-379.94,229.74,204.3-465.84,517.23-317.07,802.08,115.86,221.83,895.34-44.69,853.46,194.02-53.76,306.54-699.31,70.34-850.97,383.64-118.1,244.1,261.11,693.7,5.94,752.3-327.68,75.2-268.14-428.6-571.08-381.9-235.91,36.3-425.65,907.6-636.91,739-271.2-216.4,198.9-667.1-80.9-853.5-217.9-145.2-642.1-86.7-720.7-317.8-100.9-296.85,545-125.9,617-441.67,56.1-245.91-582.1-516.88-375.5-681.65,265.4-211.58,294.8,291.45,603.6,157.1,240.48-104.61,149.66-933.56,402.93-889.91z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath2854" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" sodipodi:sides="7" fill-rule="evenodd" fill="#000" sodipodi:r1="1251.4492" sodipodi:r2="717.9032" transform="matrix(1.57534e-2,0,0,1.57534e-2,272.2065,6025.1808)" sodipodi:arg2="0.77790537" sodipodi:arg1="0.32910642" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.4" inkscape:flatsided="false" d="M586.43,1426.2c-43.92,278.2-473.02-298.8-642.88-85.9s30.811,778.3-228.28,900.4c-259.08,122.1-113.21-638-388.63-674-275.42-35.9-331.64,698.6-527.44,521s331.95-497.4,148.8-716.3c-183.2-218.9-587.8,149-658.5-126.8-70.6-275.77,281.5-364.74,412.3-596.47,130.9-231.72-276.9-479-71.1-630.45s366.1,220.76,643.81,138.72c277.68-82.038,182.27-375.84,449.97-389.69,267.7-13.84-241.94,460.31,23.78,552.89,265.71,92.58,626.34-408.15,720.34-156.88,94,251.28-346.05,473.06-354.59,754.57s516.35,230.81,472.42,508.91z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f20.svgpath1295" style="marker-start:none;marker-mid:none;marker-end:none;" sodipodi:type="star" d="M-243.69,1096.3c-31.67,187.7,292.04,205.5,168.19,354.5-123.84,149-286.2-273-452.9-185-166.7,88.1,66.85,485.7-113.85,439.6-180.69-46.1,150.24-338.8-32.76-413.9-182.99-75-457.29,259.8-578.79,103.8-121.4-155.9,444.91-179.2,432.09-357.1-12.83-177.95-402.59-55.07-345.89-244.36,56.7-189.28,305.03-15.84,451.14-142.56,146.1-126.73-325.34-272.92-157.71-375.45,167.66-102.53,216.43,413.99,406.72,457.3s142.12-528.03,290.44-397.43c148.31,130.6-148.45,281.4-72.6,448.02s316.86-148.25,361.58,32.57-323.99,92.41-355.66,280.01z" fill-rule="evenodd" fill="#000" sodipodi:r1="292.23001" inkscape:flatsided="false" transform="matrix(1.57534e-2,0,0,1.57534e-2,180.8244,6049.5958)" sodipodi:arg2="0.77809157" sodipodi:arg1="0.32929262" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" inkscape:rounded="0.4" sodipodi:r2="717.9032" sodipodi:sides="7"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="text3758" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" font-size="8.5px" font-style="normal" font-stretch="normal" font-variant="normal" y="6105.0132" x="270.84113" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan3760" style="text-anchor:start;text-align:start;" font-weight="bold" font-style="normal" font-stretch="normal" font-variant="normal" y="6105.0132" x="270.84113" font-family="DejaVu Sans">مارپیچها</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e753" display="none" height="1000px" width="288" y="6051.9" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3763" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.0949279,58)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3765">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3767" xlink:href="#d0e753" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3769" xml:space="preserve">مارپیچ Inkscape شکل تطبیق پذیری است، و برعکس ستاره مبحث عمیقی برای بررسی ندارد، گاهی مارپیج واقعا مفید واقع میشود. یک مارپیچ، مثل یک ستاره، از مرکز کشیده میشود؛ موقع کشیدن درست مثل موقع تغییر دادن میتوان از این میانبرها استفاده کرد:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3771" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,6166.5054)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e759" display="none" height="1000px" width="258" y="6092.5" x="20"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3774" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(12,68)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3776">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3778" xlink:href="#d0e759" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3780" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">با نگهداشتن Ctrl و درگ کردن زاویه با گامهای ۱۵ درجهای افزایش مییابد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e766" display="none" height="1000px" width="288" y="6110.8" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3785" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(8.0703254,78)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3787">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3789" xlink:href="#d0e766" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3791" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">وقتی مارپیج کشیده شده باشد، دو اهرم در دو سر ابتدا و انتهای شکل دیده میشود. هر دو اهرم وقتی درگ شوند، مارپیج را رول کرده یا از رول خارج میکنند (مثل ادامه دادن مارپیج میماند و تعداد پیچهای آن را بیشتر یا کمتر میکند). سایر میانبرها:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e769" display="none" height="1000px" width="288" y="6151.3" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3794" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" transform="translate(8.2138812,92)" font-size="8.39999962px" font-style="normal" font-family="Serif" line-height="133.00000429%" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3796">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3798" xlink:href="#d0e769" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3800" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">اهرم خارجی:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3802" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,6265.8469)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e775" display="none" height="1000px" width="258" y="6167.8" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3805" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,92)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3807">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3809" xlink:href="#d0e775" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3811" xml:space="preserve">با نگهداشتن <flowSpan id="flowSpan5282" font-weight="bold">Shift</flowSpan> و <flowSpan id="flowSpan5280" font-weight="bold">درگ</flowSpan> کردن شکل حول مرکزش دوران/مقیاس میشود (نه رول شدن و از رول خارج شدن)</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3815" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,6295.2671)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e782" display="none" height="1000px" width="258" y="6197.3" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3818" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,92)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3820">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3822" xlink:href="#d0e782" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3824" xml:space="preserve">با نگهداشتن Alt و درگ کردن، زاویه حین رول شدن یا از رول خارج شدن قفل میشود.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e789" display="none" height="1000px" width="288" y="6215.5" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3829" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.2138813,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3831">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3833" xlink:href="#d0e789" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3835" xml:space="preserve">اهرم داخلی:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3837" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,6340.0164)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e795" display="none" height="1000px" width="258" y="6232" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3840" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,102)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3842">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3844" xlink:href="#d0e795" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3846" xml:space="preserve">نگهداشتن Alt و درگ کردن، همگرایی یا از هم دور شدن عمودی را تغییر میدهد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3850" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,6368.2646)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e802" display="none" height="1000px" width="258" y="6250.3" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3853" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,112)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3855">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3857" xlink:href="#d0e802" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3859" xml:space="preserve">نگهداشتن Alt و کلیک کردن، واگرایی شکل را ریست میکند.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <circle id="circle3863" sodipodi:rx="2" sodipodi:cy="0" sodipodi:ry="2" cx="0" transform="translate(297.43048,6386.5128)" cy="0" sodipodi:cx="0" r="2"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e809" display="none" height="1000px" width="258" y="6268.5" x="20"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3866" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(12,112)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3868">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3870" xlink:href="#d0e809" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3872" xml:space="preserve">نگهداشتن Shift وکلیک کردن، اهرم داخلی را به مرکز شکل میبرد.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e816" display="none" height="1000px" width="288" y="6285" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3877" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(8.0539208,116)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3879">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3881" xlink:href="#d0e816" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3883" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">واگرایی یک مارپیچ مقدار انحنای پیچشدگی آن است. وقتی مقدار آن برابر با ۱ باشد، مارپیچ یکنواخت است؛ وقتی کمتر از ۱ باشد (با نگهداشتن Alt و درگ کردن به سمت بالا)، مارپیچ در نزدیکی محیط متراکمتر است؛ و وقتی بزرگتر از ۱ باشد (با نگهداشتن Alt و درگ کردن به سمت پایین)، مارپیچ در نزدیکی مرکز متراکمتر خواهد شد.</flowDiv>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f21.svgtext2996" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="6465.7881" x="55.595207" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f21.svgtspan2985" y="6465.7881" x="55.595207" sodipodi:role="line"/><tspan id="shapes-f21.svgtspan2987"/><tspan id="shapes-f21.svgtspan2989" y="6472.2261" x="55.595207" sodipodi:role="line">0.2</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f21.svgtext3053" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="6465.7881" x="115.28775" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f21.svgtspan2978" y="6465.7881" x="115.28775" sodipodi:role="line"/><tspan id="shapes-f21.svgtspan2980"/><tspan id="shapes-f21.svgtspan2982" y="6472.2261" x="115.28775" sodipodi:role="line">0.5</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f21.svgtext2982" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="6465.7881" x="295.30881" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f21.svgtspan2971" y="6465.7881" x="295.30881" sodipodi:role="line"/><tspan id="shapes-f21.svgtspan2973"/><tspan id="shapes-f21.svgtspan2975" y="6472.2261" x="295.30881" sodipodi:role="line">6</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f21.svgtext3039" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="6465.7881" x="237.84541" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f21.svgtspan2964" y="6465.7881" x="237.84541" sodipodi:role="line"/><tspan id="shapes-f21.svgtspan2966"/><tspan id="shapes-f21.svgtspan2968" y="6472.2261" x="237.84541" sodipodi:role="line">2</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="shapes-f21.svgtext2960" style="writing-mode:lr-tb;text-anchor:start;" font-weight="normal" sodipodi:linespacing="120%" font-variant="normal" font-size="5.36503792px" font-stretch="normal" line-height="120.00000477%" font-style="normal" y="6465.7881" x="177.37082" font-family="Sans" xml:space="preserve" fill="#000000"><tspan id="shapes-f21.svgtspan2956" y="6465.7881" x="177.37082" sodipodi:role="line"/><tspan id="shapes-f21.svgtspan2958"/><tspan id="shapes-f21.svgtspan2960" y="6472.2261" x="177.37082" sodipodi:role="line">1</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f21.svgpath2948" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="6" sodipodi:radius="28.251171" d="M138.39,6322.5c0.42,0.6-0.57,0.8-0.95,0.7-1.05-0.4-1-1.8-0.44-2.6,1.01-1.4,3.06-1.3,4.24-0.2,1.74,1.6,1.49,4.3-0.08,5.9-2.09,2.1-5.56,1.7-7.53-0.3-2.47-2.7-1.99-6.9,0.6-9.2,3.14-2.9,8.09-2.3,10.82,0.8,3.21,3.7,2.51,9.4-1.11,12.5-4.19,3.6-10.62,2.8-14.11-1.4-3.97-4.7-3.03-11.9,1.62-15.7,5.23-4.4,13.15-3.3,17.4,1.9,4.72,5.7,3.55,14.4-2.14,19-6.26,5.1-15.68,3.8-20.69-2.4-5.47-6.8-4.06-16.9,2.66-22.3,7.3-5.9,18.21-4.4,23.98,2.9,6.22,7.8,4.59,19.5-3.17,25.6-8.34,6.6-20.75,4.9-27.27-3.4-6.98-8.9-5.11-22,3.69-28.9,9.37-7.4,23.27-5.4,30.55,3.9,7.74,9.9,5.63,24.6-4.2,32.2-10.41,8.1-25.81,5.9-33.84-4.4-8.49-11-6.15-27.1,4.71-35.5,11.45-8.9,28.34-6.4,37.14,4.9,9.24,12,6.67,29.6-5.24,38.8" stroke-linecap="butt" transform="matrix(-1,0,0,1,318.1285,185.87819)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.75835" sodipodi:cy="6322.4868" sodipodi:cx="138.38965" stroke-miterlimit="4" sodipodi:expansion="1" sodipodi:type="spiral" stroke-width="1pt" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f21.svgpath2949" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="6" sodipodi:radius="28.251171" d="M138.39,6322.5h-0.04c-0.09,0-0.1-0.1-0.08-0.2,0.08-0.2,0.33-0.2,0.48-0.1,0.31,0.2,0.3,0.7,0.1,0.9-0.34,0.5-1.03,0.5-1.45,0.1-0.66-0.5-0.59-1.5-0.05-2.1,0.79-0.9,2.17-0.8,2.98,0,1.13,1,0.96,2.9-0.09,3.9-1.4,1.4-3.73,1.2-5.06-0.2-1.72-1.7-1.42-4.6,0.32-6.3,2.19-2,5.7-1.7,7.68,0.5,2.45,2.6,1.97,6.8-0.63,9.2-3.15,2.8-8.1,2.3-10.86-0.8-3.29-3.7-2.6-9.5,1.04-12.7,4.28-3.7,10.92-2.9,14.58,1.3,4.26,4.9,3.32,12.5-1.52,16.6-5.59,4.8-14.17,3.7-18.85-1.8-5.36-6.3-4.13-15.9,2.09-21.2,7.06-5.9,17.83-4.5,23.67,2.5,6.58,7.8,5.02,19.8-2.75,26.2-8.72,7.3-21.92,5.5-29.04-3.1-7.93-9.6-6-24.1,3.49-31.9,10.54-8.7,26.44-6.5,34.95,3.9,9.42,11.5,7.07,28.8-4.32,38.1" stroke-linecap="butt" transform="matrix(-1,0,0,1,378.3648,184.45119)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.75835" sodipodi:cy="6322.4868" sodipodi:cx="138.38965" stroke-miterlimit="4" sodipodi:expansion="2" sodipodi:type="spiral" stroke-width="1pt" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f21.svgpath2950" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="6" sodipodi:radius="28.251171" d="M138.39,6322.5h0.01,0.01-0.08c-0.06,0-0.06-0.1-0.03-0.1,0.07-0.1,0.21-0.1,0.3-0.1,0.17,0.1,0.16,0.4,0.05,0.5-0.2,0.3-0.59,0.3-0.84,0.1-0.41-0.3-0.38-0.9-0.08-1.3,0.5-0.6,1.44-0.6,2.02-0.1,0.91,0.8,0.83,2.1,0.1,3-1.11,1.3-3.12,1.2-4.34,0.1-1.83-1.6-1.62-4.5-0.08-6.2,2.25-2.5,6.21-2.2,8.58,0,3.4,3.1,2.96,8.5-0.05,11.7-4.24,4.6-11.51,4-15.82-0.1-5.97-5.7-5.13-15.4,0.37-21.1,7.52-7.7,20.15-6.6,27.56,0.7,10,9.8,8.47,26.2-1.04,35.7" stroke-linecap="butt" transform="matrix(-1,0,0,1,438.601,179.22019)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.75835" sodipodi:cy="6322.4868" sodipodi:cx="138.38965" stroke-miterlimit="4" sodipodi:expansion="6" sodipodi:type="spiral" stroke-width="1pt" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f21.svgpath2952" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="6" sodipodi:radius="28.251171" d="M138.39,6322.5c2.66,3.6-2.06,5.3-4.66,3.4-3.29-2.4-2.8-7.3-0.15-10,3.6-3.6,9.58-2.9,12.88,0.7,4.01,4.4,3.15,11.4-1.28,15.2-5.11,4.4-12.98,3.4-17.21-1.7-4.75-5.7-3.58-14.4,2.1-19,6.25-5.1,15.66-3.8,20.65,2.4,5.41,6.8,3.99,16.8-2.72,22.2-7.22,5.7-17.96,4.2-23.59-3-6-7.7-4.38-19,3.24-24.9,8.06-6.3,19.98-4.6,26.19,3.4,6.55,8.5,4.73,20.9-3.68,27.4-8.83,6.8-21.83,4.9-28.57-3.9-7.05-9.1-5.06-22.7,4.09-29.6,9.53-7.3,23.52-5.3,30.76,4.2,7.51,9.9,5.36,24.4-4.46,31.8-10.18,7.8-25.11,5.5-32.8-4.6-7.96-10.5-5.66-25.9,4.79-33.8,10.8-8.2,26.6-5.8,34.73,5,8.38,11.1,5.94,27.3-5.12,35.6-11.38,8.6-28,6.1-36.54-5.2-8.78-11.7-6.21-28.7,5.41-37.5,11.94-8.9,29.36-6.3,38.29,5.6,9.15,12.2,6.46,30-5.71,39.1" stroke-linecap="butt" transform="matrix(-1,0,0,1,257.8923,186.82919)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.75835" sodipodi:cy="6322.4868" sodipodi:cx="138.38965" stroke-miterlimit="4" sodipodi:expansion="0.5" sodipodi:type="spiral" stroke-width="1pt" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f21.svgpath2953" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="6" sodipodi:radius="28.251171" d="M138.39,6322.5c9.96,13.6-4.98,16.3-12.09,8.8-6.17-6.5-4.74-17.1,1.96-22.7,7.59-6.3,19.13-4.7,25.19,2.9,6.56,8.2,4.8,20.5-3.43,26.9-8.72,6.8-21.62,4.9-28.31-3.8-7.01-9.1-5.03-22.5,4.07-29.4,9.44-7.2,23.31-5.1,30.45,4.3,7.38,9.7,5.24,24-4.48,31.3-10,7.6-24.62,5.3-32.12-4.6-7.69-10.3-5.43-25.2,4.79-32.9,10.45-7.8,25.7-5.5,33.5,4.9,7.96,10.7,5.6,26.2-5.04,34.2-10.84,8-26.63,5.6-34.68-5.2-8.2-11-5.75-27,5.25-35.2,11.18-8.3,27.43-5.8,35.72,5.3,8.41,11.4,5.88,27.8-5.43,36.2-11.48,8.5-28.17,6-36.66-5.5-8.6-11.6-6.01-28.5,5.6-37.1,11.75-8.7,28.82-6,37.49,5.7,8.79,11.9,6.13,29.1-5.73,37.9-12,8.9-29.42,6.2-38.28-5.8-8.95-12.1-6.23-29.7,5.87-38.6,12.23-9.1,29.98-6.3,38.99,5.9,9.11,12.3,6.34,30.2-5.99,39.3" stroke-linecap="butt" transform="matrix(-1,0,0,1,197.656,186.82919)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.75835" sodipodi:cy="6322.4868" sodipodi:cx="138.38965" stroke-miterlimit="4" sodipodi:expansion="0.2" sodipodi:type="spiral" stroke-width="1pt" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e838" display="none" height="1000px" width="288" y="6431.2" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3917" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(8.0539155,110)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3919">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3921" xlink:href="#d0e838" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3923" xml:space="preserve">حداکثر تعداد پیچهای مارپیچ ۱۰۲۴ است.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e841" display="none" height="1000px" width="288" y="6449.3" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRoot id="flowRoot3926" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="133.00000429%" font-weight="normal" font-size="8.39999962px" transform="translate(7.4345761,112)" font-stretch="normal" font-variant="normal" font-style="normal" font-family="DejaVu Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3928">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3930" xlink:href="#d0e841" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3932" xml:space="preserve">همانطور که ابزار ترسیم بیضی برای رسم کردن کمانها استفاده میشود، از ابزار مارپیچ برای کشیدن منحنیهایی که انحناهای نرمی داشته باشند نیز میتوان استفاده کرد. در مقایسه با یک منحنی بیضوی ساده، یک کمان یا یک مارپیچ مناسبتر است چون میتوان آن را با کشیدن یک اهرم در امتداد منحنی کوتاهتر یا بلندتر کرد بدون اینکه شکلش تغییر یابد. همچنین، یک مارپیچ بدون پُر شدگی کشیده میشود، میتوانید آن را با رنگ دلخواه در کنید و خطوط را برای به دست آوردن افکت مناسب حذف کنید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3031" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="3.3807619" sodipodi:radius="40.249962" d="M84.272,6515.5c-0.242-12,11.069-20.8,22.538-20.1,13.64,0.9,23.48,13.7,22.21,27.1-1.42,14.9-15.51,25.6-30.22,24-15.983-1.8-27.382-17-25.491-32.8,2.021-16.9,18.085-28.9,34.831-26.8,17.69,2.3,30.27,19.1,27.98,36.7-2.4,18.4-19.98,31.5-38.288,29-19.079-2.5-32.606-20.8-30.025-39.7,2.679-19.7,21.521-33.7,41.113-31,20.25,2.8,34.59,22.2,31.77,42.4-2.9,20.8-22.82,35.5-43.522,32.6-21.279-3-36.334-23.5-33.315-44.7,1.448-10.1,6.893-19.5,14.978-25.8" fill-rule="evenodd" transform="matrix(-0.128635,0.679333,-0.679333,-0.128635,4583.635,7447.7808)" sodipodi:argument="-17.179831" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" sodipodi:expansion="0.28900903" sodipodi:type="spiral" sodipodi:t0="0.076614626" fill="#ff6c2e"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath2997" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.8106463" sodipodi:radius="36.507183" d="M241.28,6460.6c-0.33-2.3,2.45-3.6,4.23-3.7,8.24-0.8,12.7,9.2,13.01,15.9,0.43,9.3-4.18,18.1-10.49,24.6" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,28.84725,2215.0068)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.77700925" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath2998" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.8656998" sodipodi:radius="47.161507" d="M241.28,6460.6c-0.33-2.3,2.45-3.6,4.23-3.7,8.24-0.8,12.7,9.2,13.01,15.9,0.72,15.6-11.89,28.6-25.07,34.8" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,20.64587,2215.4248)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.76208192" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath2999" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.7562277" sodipodi:radius="28.202633" d="M241.28,6460.6c-0.33-2.3,2.45-3.6,4.23-3.7,8.24-0.8,12.7,9.2,13.01,15.9,0.21,4.6-0.84,9.1-2.7,13.3" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,37.4653,2215.0068)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.79235041" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3000" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.686516" sodipodi:radius="20.110537" d="M241.28,6460.6c-0.33-2.3,2.45-3.6,4.23-3.7,8.24-0.8,12.7,9.2,13.01,15.9,0.01,0.2,0.01,0.3,0.02,0.4" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,46.19077,2215.0068)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.81291085" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3001" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.5610781" sodipodi:radius="10.697699" d="M241.28,6460.6c-0.33-2.3,2.45-3.6,4.23-3.7,2.73-0.3,5.41,1,7.4,2.8" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,55.02361,2215.0068)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.8527261" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3002" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.9435861" sodipodi:radius="67.193001" d="M241.28,6460.6c-0.33-2.3,2.45-3.6,4.23-3.7,8.24-0.8,12.7,9.2,13.01,15.9,1.25,27.1-31.04,40.9-53.46,40.9-1.64,0-3.28,0-4.91-0.1" stroke-linecap="butt" transform="matrix(0.690923,2.577214e-2,-2.577214e-2,0.690923,178.8262,2211.9878)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.74191737" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3003" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.8106463" sodipodi:radius="32.027428" d="M171.5,6461.9c-1.86,12.1-13.94,20-25.81,18-13.63-2.2-22.45-15.8-20.15-29.2,2.61-15.2,17.81-24.9,32.7-22.3,15.51,2.8,26.13,17.7,24.73,33.2" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,3.796244,2269.6968)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-17.5138" sodipodi:cy="6456.9546" sodipodi:cx="151.28812" stroke-miterlimit="4" sodipodi:expansion="1" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.6494782" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3004" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.8106463" sodipodi:radius="32.027428" d="M171.5,6461.9c-1.86,12.1-13.94,20-25.81,18-13.63-2.2-22.45-15.8-20.15-29.2,2.61-15.2,17.81-24.9,32.7-22.3,15.51,2.8,26.13,17.7,24.73,33.2" stroke-linecap="round" transform="matrix(-0.691404,0,0,0.691404,230.3145,2269.5678)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-17.5138" sodipodi:cy="6456.9546" sodipodi:cx="151.28812" stroke-miterlimit="4" sodipodi:expansion="1" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.6494782" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3626" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="3.7046297" sodipodi:radius="44.105801" d="M103.2,6518.4h0.09c0.06,0.1-0.03,0.2-0.12,0.3-0.25,0.1-0.52-0.1-0.61-0.3-0.21-0.6,0.26-1.1,0.77-1.3,1.04-0.3,2,0.6,2.24,1.6,0.44,1.8-1.09,3.4-2.77,3.7-2.917,0.6-5.435-1.9-5.903-4.6-0.767-4.5,3.027-8.3,7.243-8.9,6.58-0.9,12.05,4.7,12.82,10.9,1.15,9.3-6.8,17-15.68,17.9-12.862,1.4-23.347-9.6-24.448-21.9-1.551-17.3,13.282-31.3,29.858-32.6,17.76-1.3,33.85,10.7,39.85,27.1" fill-rule="evenodd" transform="matrix(0.679332,-0.128635,-0.128635,-0.679332,991.4957,11169.793)" sodipodi:argument="-17.179831" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" sodipodi:expansion="3.8924387" sodipodi:type="spiral" sodipodi:t0="0" fill="#ff6c2e"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3627" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="3.7046297" sodipodi:radius="30.881491" d="M36.158,6582.7c-0.323-2,1.42-3.6,3.28-3.9,3.058-0.4,5.517,2.3,5.813,5.2,0.465,4.5-3.495,8.1-7.752,8.4-6.396,0.5-11.402-5.1-11.786-11.2-0.557-8.8,7.261-15.7,15.683-16.1,11.888-0.5,21.035,10,21.425,21.4,0.466,13.6-10.269,25-23.271,27.5" stroke-linecap="butt" transform="matrix(0.178949,-0.667845,0.667845,0.178949,-4364.555,5565.5288)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-21.729349" sodipodi:cy="6583.0801" sodipodi:cx="38.83165" stroke-miterlimit="4" sodipodi:expansion="3.8924387" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.53471386" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3628" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="3.7046297" sodipodi:radius="30.881491" d="M36.158,6582.7c-0.323-2,1.42-3.6,3.28-3.9,3.058-0.4,5.517,2.3,5.813,5.2,0.465,4.5-3.495,8.1-7.752,8.4-6.396,0.5-11.402-5.1-11.786-11.2-0.557-8.8,7.261-15.7,15.683-16.1,11.888-0.5,21.035,10,21.425,21.4,0.466,13.6-10.269,25-23.271,27.5" stroke-linecap="butt" transform="matrix(-0.178949,-0.667845,-0.667845,0.178949,4482.981,5558.1798)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-21.729349" sodipodi:cy="6583.0801" sodipodi:cx="38.83165" stroke-miterlimit="4" sodipodi:expansion="3.8924387" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.53471386" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3629" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="3.7046297" sodipodi:radius="30.881491" d="M36.158,6582.7c-0.323-2,1.42-3.6,3.28-3.9,3.058-0.4,5.517,2.3,5.813,5.2,0.465,4.5-3.495,8.1-7.752,8.4-6.396,0.5-11.402-5.1-11.786-11.2-0.557-8.8,7.261-15.7,15.683-16.1,11.888-0.5,21.035,10,21.425,21.4,0.466,13.6-10.269,25-23.271,27.5" stroke-linecap="butt" transform="matrix(0.488897,-0.488897,0.488897,0.488897,-3191.239,3489.2388)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-21.729349" sodipodi:cy="6583.0801" sodipodi:cx="38.83165" stroke-miterlimit="4" sodipodi:expansion="3.8924387" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.53471386" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3630" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="3.7046297" sodipodi:radius="30.881491" d="M36.158,6582.7c-0.323-2,1.42-3.6,3.28-3.9,3.058-0.4,5.517,2.3,5.813,5.2,0.465,4.5-3.495,8.1-7.752,8.4-6.396,0.5-11.402-5.1-11.786-11.2-0.557-8.8,7.261-15.7,15.683-16.1,11.888-0.5,21.035,10,21.425,21.4,0.466,13.6-10.269,25-23.271,27.5" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,45.65217,2121.9368)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-21.729349" sodipodi:cy="6583.0801" sodipodi:cx="38.83165" stroke-miterlimit="4" sodipodi:expansion="3.8924387" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.53471386" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3632" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.7562277" sodipodi:radius="28.202633" d="M253.98,6460.7c6.16,6.9,5.36,17.5,1.84,25.4" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,114.6817,2218.0178)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.93520707" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3633" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.7562277" sodipodi:radius="28.202633" d="M241.32,6459.8c0.7-3,4.87-3.3,7.23-2.6,10.57,3,11.3,17.5,8.39,26-0.33,1-0.7,1.9-1.12,2.9" stroke-linecap="butt" transform="matrix(0.691404,0,0,0.691404,114.8965,2203.1028)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.81344151" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3634" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.7562277" sodipodi:radius="28.202633" d="M241.32,6459.8c0.7-3,4.87-3.3,7.23-2.6,10.57,3,11.3,17.5,8.39,26-0.33,1-0.7,1.9-1.12,2.9" stroke-linecap="butt" transform="matrix(0.345702,-0.598773,0.598773,0.345702,-3685.309,4585.5008)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.81344151" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3635" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.8132913" sodipodi:radius="36.96331" d="M241.32,6459.8c0.7-3,4.87-3.3,7.23-2.6,10.57,3,11.3,17.5,8.39,26-1.9,5.6-5.29,10.6-9.45,14.7" stroke-linecap="butt" transform="matrix(-0.488897,-0.488897,0.488897,-0.488897,-2782.131,9971.249)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.79694211" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3636" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.8126345" sodipodi:radius="36.849499" d="M241.32,6459.8c0.7-3,4.87-3.3,7.23-2.6,10.57,3,11.3,17.5,8.39,26-1.88,5.5-5.22,10.5-9.32,14.6" stroke-linecap="butt" transform="matrix(-0.691404,6.12067e-8,-6.12067e-8,-0.691404,435.779,11175.913)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.7971282" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f22.svgpath3089" stroke-linejoin="miter" style="marker-end:none;marker-start:none;marker-mid:none;" sodipodi:revolution="2.9095716" sodipodi:radius="57.635422" d="M241.32,6459.8c0.7-3,4.87-3.3,7.23-2.6,10.57,3,11.3,17.5,8.39,26-5.81,17-23.61,26.9-40.46,29.6" stroke-linecap="butt" transform="matrix(-0.345702,0.598773,-0.598773,-0.345702,4245.693,8823.9778)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-16.24534" sodipodi:cy="6461.3071" sodipodi:cx="242.34204" stroke-miterlimit="4" sodipodi:expansion="13.200652" sodipodi:type="spiral" stroke-width="1.44633455pt" sodipodi:t0="0.7705704" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e857" display="none" height="1000px" width="288" y="6663.9" x="10"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3957" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(7.7299128,106)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3959">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3961" xlink:href="#d0e857" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3963" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">مارپیچهایی که با خطوط نقطهچنی رسم شده باشند نیز بسیار جذاب هستند – آنها تمرکز نرم شکل را با نشانه(نقطه یا خط چین)های با فاصله یکسان ترکیب میکنند و ترکیبهای موجدار زیبایی میسازند:</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f23.svgpath3032" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:1.8749997, 1.8749997;marker-mid:none;" sodipodi:revolution="18.821123" sodipodi:radius="68.998032" d="M103.2,6518.4c0.37,0.5-0.43,0.7-0.76,0.6-0.87-0.3-0.89-1.4-0.45-2.1,0.77-1.1,2.44-1.1,3.45-0.3,1.47,1.2,1.37,3.5,0.15,4.8-1.61,1.8-4.43,1.6-6.101,0-2.092-2-1.871-5.4,0.134-7.4,2.417-2.4,6.427-2.1,8.747,0.3,2.72,2.8,2.37,7.4-0.43,10-3.22,3.1-8.406,2.6-11.363-0.5-3.354-3.7-2.878-9.4,0.705-12.7,4.018-3.7,10.388-3.2,13.988,0.8,3.98,4.4,3.38,11.4-0.99,15.3-4.81,4.3-12.365,3.6-16.596-1.1-4.616-5.2-3.884-13.4,1.272-17.9,5.594-4.9,14.334-4.2,19.194,1.4,5.25,6,4.39,15.3-1.55,20.5-6.38,5.6-16.299,4.6-21.796-1.7-5.875-6.8-4.889-17.3,1.835-23.1,7.16-6.2,18.261-5.1,24.391,2,6.5,7.5,5.39,19.2-2.12,25.7-7.94,6.8-20.219,5.6-26.976-2.3-7.132-8.3-5.891-21.2,2.395-28.3,8.724-7.4,22.181-6.1,29.561,2.6,7.76,9.1,6.39,23.1-2.67,30.8-9.5,8.1-24.135,6.7-32.149-2.8-8.385-9.9-6.89-25.1,2.954-33.4,10.283-8.7,26.085-7.2,34.725,3.1,9.01,10.6,7.39,27-3.23,36-11.06,9.3-28.038,7.6-37.305-3.4-9.636-11.4-7.888-29,3.511-38.6,11.839-9.9,29.984-8.1,39.884,3.7,10.26,12.2,8.38,30.9-3.79,41.1-12.62,10.6-31.937,8.7-42.455-3.9-10.886-13-8.885-32.9,4.067-43.7,13.391-11.2,33.878-9.2,45.018,4.2,11.51,13.8,9.39,34.8-4.34,46.3-14.17,11.8-35.824,9.6-47.591-4.5-12.132-14.5-9.879-36.8,4.622-48.9,14.941-12.4,37.769-10.1,50.159,4.8,12.75,15.3,10.37,38.7-4.9,51.4-15.72,13.1-39.709,10.7-52.722-5-13.378-16.1-10.873-40.7,5.176-54,16.488-13.7,41.646-11.1,55.286,5.3,14,16.9,11.37,42.6-5.46,56.6-17.26,14.3-43.581,11.6-57.839-5.6-14.622-17.7-11.865-44.6,5.729-59.1,18.033-15,45.52-12.2,60.4,5.8,15.24,18.4,12.36,46.5-6,61.7-18.81,15.6-47.461,12.6-62.963-6.1-15.864-19.2-12.856-48.5,6.282-64.3,19.576-16.2,49.391-13.1,65.511,6.4,16.49,20,13.36,50.4-6.55,66.8-20.35,16.8-51.33,13.6-68.073-6.7-17.105-20.7-13.847-52.3,6.833-69.3,21.118-17.4,53.26-14.1,70.62,7,17.73,21.5,14.34,54.2-7.11,71.9-21.88,18-55.187,14.5-73.17-7.3-18.345-22.3-14.836-56.1,7.384-74.4,22.658-18.7,57.126-15.1,75.726,7.5,18.96,23,15.33,58.1-7.66,77-23.43,19.3-59.052,15.6-78.275-7.8-19.583-23.8-15.823-60,7.934-79.6,24.197-19.9,60.981-16,80.821,8.1,20.2,24.6,16.32,62-8.21,82.1-24.96,20.5-62.906,16.6-83.367-8.3-20.82-25.4-16.811-63.9,8.485-84.7,25.733-21.1,64.832-17,85.912,8.6,21.44,26.2,17.31,65.8-8.76,87.2-26.5,21.8-66.759,17.6-88.456-8.9-22.057-26.9-17.797-67.7,9.033-89.7,27.269-22.4,68.683-18,91.003,9.2,22.68,27.6,18.29,69.6-9.31,92.2-28.03,23-70.61,18.6-93.543-9.4-23.293-28.4-18.783-71.6,9.582-94.8,28.804-23.6,72.541-19,96.091,9.7,6.5,7.9,11.19,17.3,13.62,27.3" stroke-linecap="butt" transform="matrix(-0.172154,0.642449,-0.642449,-0.172154,4273.769,7924.1757)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.806286" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" stroke-miterlimit="4" sodipodi:expansion="0.98582262" sodipodi:type="spiral" stroke-width="3.74999928" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f23.svgpath3088" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:3.7499994, 3.7499994;marker-mid:none;" sodipodi:revolution="18.821123" sodipodi:radius="68.998032" d="M103.2,6518.4c0.37,0.5-0.43,0.7-0.76,0.6-0.87-0.3-0.89-1.4-0.45-2.1,0.77-1.1,2.44-1.1,3.45-0.3,1.47,1.2,1.37,3.5,0.15,4.8-1.61,1.8-4.43,1.6-6.101,0-2.092-2-1.871-5.4,0.134-7.4,2.417-2.4,6.427-2.1,8.747,0.3,2.72,2.8,2.37,7.4-0.43,10-3.22,3.1-8.406,2.6-11.363-0.5-3.354-3.7-2.878-9.4,0.705-12.7,4.018-3.7,10.388-3.2,13.988,0.8,3.98,4.4,3.38,11.4-0.99,15.3-4.81,4.3-12.365,3.6-16.596-1.1-4.616-5.2-3.884-13.4,1.272-17.9,5.594-4.9,14.334-4.2,19.194,1.4,5.25,6,4.39,15.3-1.55,20.5-6.38,5.6-16.299,4.6-21.796-1.7-5.875-6.8-4.889-17.3,1.835-23.1,7.16-6.2,18.261-5.1,24.391,2,6.5,7.5,5.39,19.2-2.12,25.7-7.94,6.8-20.219,5.6-26.976-2.3-7.132-8.3-5.891-21.2,2.395-28.3,8.724-7.4,22.181-6.1,29.561,2.6,7.76,9.1,6.39,23.1-2.67,30.8-9.5,8.1-24.135,6.7-32.149-2.8-8.385-9.9-6.89-25.1,2.954-33.4,10.283-8.7,26.085-7.2,34.725,3.1,9.01,10.6,7.39,27-3.23,36-11.06,9.3-28.038,7.6-37.305-3.4-9.636-11.4-7.888-29,3.511-38.6,11.839-9.9,29.984-8.1,39.884,3.7,10.26,12.2,8.38,30.9-3.79,41.1-12.62,10.6-31.937,8.7-42.455-3.9-10.886-13-8.885-32.9,4.067-43.7,13.391-11.2,33.878-9.2,45.018,4.2,11.51,13.8,9.39,34.8-4.34,46.3-14.17,11.8-35.824,9.6-47.591-4.5-12.132-14.5-9.879-36.8,4.622-48.9,14.941-12.4,37.769-10.1,50.159,4.8,12.75,15.3,10.37,38.7-4.9,51.4-15.72,13.1-39.709,10.7-52.722-5-13.378-16.1-10.873-40.7,5.176-54,16.488-13.7,41.646-11.1,55.286,5.3,14,16.9,11.37,42.6-5.46,56.6-17.26,14.3-43.581,11.6-57.839-5.6-14.622-17.7-11.865-44.6,5.729-59.1,18.033-15,45.52-12.2,60.4,5.8,15.24,18.4,12.36,46.5-6,61.7-18.81,15.6-47.461,12.6-62.963-6.1-15.864-19.2-12.856-48.5,6.282-64.3,19.576-16.2,49.391-13.1,65.511,6.4,16.49,20,13.36,50.4-6.55,66.8-20.35,16.8-51.33,13.6-68.073-6.7-17.105-20.7-13.847-52.3,6.833-69.3,21.118-17.4,53.26-14.1,70.62,7,17.73,21.5,14.34,54.2-7.11,71.9-21.88,18-55.187,14.5-73.17-7.3-18.345-22.3-14.836-56.1,7.384-74.4,22.658-18.7,57.126-15.1,75.726,7.5,18.96,23,15.33,58.1-7.66,77-23.43,19.3-59.052,15.6-78.275-7.8-19.583-23.8-15.823-60,7.934-79.6,24.197-19.9,60.981-16,80.821,8.1,20.2,24.6,16.32,62-8.21,82.1-24.96,20.5-62.906,16.6-83.367-8.3-20.82-25.4-16.811-63.9,8.485-84.7,25.733-21.1,64.832-17,85.912,8.6,21.44,26.2,17.31,65.8-8.76,87.2-26.5,21.8-66.759,17.6-88.456-8.9-22.057-26.9-17.797-67.7,9.033-89.7,27.269-22.4,68.683-18,91.003,9.2,22.68,27.6,18.29,69.6-9.31,92.2-28.03,23-70.61,18.6-93.543-9.4-23.293-28.4-18.783-71.6,9.582-94.8,28.804-23.6,72.541-19,96.091,9.7,6.5,7.9,11.19,17.3,13.62,27.3" stroke-linecap="butt" transform="matrix(-0.179293,0.654509,-0.669124,-0.175376,4647.701,7944.0327)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.806286" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" stroke-miterlimit="4" sodipodi:expansion="0.98582262" sodipodi:type="spiral" stroke-width="7.49999857" sodipodi:t0="0" fill="none"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="shapes-f23.svgpath3090" stroke-linejoin="miter" style="marker-end:none;marker-start:none;stroke-dasharray:0.60429269, 7.2515122;marker-mid:none;" sodipodi:revolution="18.821123" sodipodi:radius="68.998032" d="M103.2,6518.4c0.37,0.5-0.43,0.7-0.76,0.6-0.87-0.3-0.89-1.4-0.45-2.1,0.77-1.1,2.44-1.1,3.45-0.3,1.47,1.2,1.37,3.5,0.15,4.8-1.61,1.8-4.43,1.6-6.101,0-2.092-2-1.871-5.4,0.134-7.4,2.417-2.4,6.427-2.1,8.747,0.3,2.72,2.8,2.37,7.4-0.43,10-3.22,3.1-8.406,2.6-11.363-0.5-3.354-3.7-2.878-9.4,0.705-12.7,4.018-3.7,10.388-3.2,13.988,0.8,3.98,4.4,3.38,11.4-0.99,15.3-4.81,4.3-12.365,3.6-16.596-1.1-4.616-5.2-3.884-13.4,1.272-17.9,5.594-4.9,14.334-4.2,19.194,1.4,5.25,6,4.39,15.3-1.55,20.5-6.38,5.6-16.299,4.6-21.796-1.7-5.875-6.8-4.889-17.3,1.835-23.1,7.16-6.2,18.261-5.1,24.391,2,6.5,7.5,5.39,19.2-2.12,25.7-7.94,6.8-20.219,5.6-26.976-2.3-7.132-8.3-5.891-21.2,2.395-28.3,8.724-7.4,22.181-6.1,29.561,2.6,7.76,9.1,6.39,23.1-2.67,30.8-9.5,8.1-24.135,6.7-32.149-2.8-8.385-9.9-6.89-25.1,2.954-33.4,10.283-8.7,26.085-7.2,34.725,3.1,9.01,10.6,7.39,27-3.23,36-11.06,9.3-28.038,7.6-37.305-3.4-9.636-11.4-7.888-29,3.511-38.6,11.839-9.9,29.984-8.1,39.884,3.7,10.26,12.2,8.38,30.9-3.79,41.1-12.62,10.6-31.937,8.7-42.455-3.9-10.886-13-8.885-32.9,4.067-43.7,13.391-11.2,33.878-9.2,45.018,4.2,11.51,13.8,9.39,34.8-4.34,46.3-14.17,11.8-35.824,9.6-47.591-4.5-12.132-14.5-9.879-36.8,4.622-48.9,14.941-12.4,37.769-10.1,50.159,4.8,12.75,15.3,10.37,38.7-4.9,51.4-15.72,13.1-39.709,10.7-52.722-5-13.378-16.1-10.873-40.7,5.176-54,16.488-13.7,41.646-11.1,55.286,5.3,14,16.9,11.37,42.6-5.46,56.6-17.26,14.3-43.581,11.6-57.839-5.6-14.622-17.7-11.865-44.6,5.729-59.1,18.033-15,45.52-12.2,60.4,5.8,15.24,18.4,12.36,46.5-6,61.7-18.81,15.6-47.461,12.6-62.963-6.1-15.864-19.2-12.856-48.5,6.282-64.3,19.576-16.2,49.391-13.1,65.511,6.4,16.49,20,13.36,50.4-6.55,66.8-20.35,16.8-51.33,13.6-68.073-6.7-17.105-20.7-13.847-52.3,6.833-69.3,21.118-17.4,53.26-14.1,70.62,7,17.73,21.5,14.34,54.2-7.11,71.9-21.88,18-55.187,14.5-73.17-7.3-18.345-22.3-14.836-56.1,7.384-74.4,22.658-18.7,57.126-15.1,75.726,7.5,18.96,23,15.33,58.1-7.66,77-23.43,19.3-59.052,15.6-78.275-7.8-19.583-23.8-15.823-60,7.934-79.6,24.197-19.9,60.981-16,80.821,8.1,20.2,24.6,16.32,62-8.21,82.1-24.96,20.5-62.906,16.6-83.367-8.3-20.82-25.4-16.811-63.9,8.485-84.7,25.733-21.1,64.832-17,85.912,8.6,21.44,26.2,17.31,65.8-8.76,87.2-26.5,21.8-66.759,17.6-88.456-8.9-22.057-26.9-17.797-67.7,9.033-89.7,27.269-22.4,68.683-18,91.003,9.2,22.68,27.6,18.29,69.6-9.31,92.2-28.03,23-70.61,18.6-93.543-9.4-23.293-28.4-18.783-71.6,9.582-94.8,28.804-23.6,72.541-19,96.091,9.7,6.5,7.9,11.19,17.3,13.62,27.3" stroke-linecap="butt" transform="matrix(-0.179293,0.654509,-0.669124,-0.175376,4546.363,7943.6527)" stroke="#000" stroke-dashoffset="0" sodipodi:argument="-36.806286" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" stroke-miterlimit="4" sodipodi:expansion="0.98582262" sodipodi:type="spiral" stroke-width="0.60429269" sodipodi:t0="0" fill="none"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <text id="text3968" style="writing-mode:lr-tb;text-anchor:start;" font-weight="bold" font-size="8.5px" font-style="normal" y="6939.314" x="266.27155" font-family="Sans" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <tspan id="tspan3970" font-weight="bold" font-style="normal" font-stretch="normal" font-variant="normal" y="6939.314" x="266.27155" font-family="DejaVu Sans">جمع بندی</tspan>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="d0e876" display="none" height="1000px" width="288" y="6840.2" x="10"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <g id="g4010" inkscape:label="Layer 1" inkscape:groupmode="layer" transform="translate(0,7024.2031)">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <rect id="rect1494" ry="6.1828" fill-rule="evenodd" rx="0" transform="scale(1,-1)" height="69.248" width="319.99" y="-18.334" x="-0.11217" fill="url(#linearGradient10637)"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1508" stroke-width="1pt" fill="#FFF" d="m80.493,5.976-4.9567,0,0,0.3171,0.14846,0c0.66805,0,0.74228,0.0338,0.74228,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74228,0.3172h-0.14846v0.3171h5.0639l0.16495-1.8016h-0.36289c-0.10722,0.4723-0.29691,0.8907-0.49485,1.0864-0.25566,0.2699-0.72577,0.3981-1.4186,0.3981h-0.54433c-0.24742,0-0.45361-0.0405-0.52784-0.1012-0.05773-0.0406-0.06598-0.081-0.06598-0.2227v-1.7206h0.16495c0.5031,0,0.70928,0.0404,0.87423,0.1821,0.21443,0.1754,0.2969,0.3914,0.31341,0.7895h0.38763v-2.2133h-0.38763c-0.04124,0.6612-0.37114,0.9244-1.1546,0.9244h-0.19794v-1.5385c0-0.2901,0.07423-0.3374,0.51959-0.3374h0.42887c0.72578,0,1.0804,0.0608,1.3608,0.2497,0.27217,0.1754,0.47011,0.5533,0.59382,1.1606h0.35463l-0.11546-1.7274zm-10.944,2.7059,0.93196,0c0.74227,0,1.1299-0.0472,1.4598-0.1755,0.58558-0.2294,0.91547-0.6612,0.91547-1.1943,0-0.5129-0.28866-0.9043-0.833-1.1269-0.32166-0.135-0.833-0.2092-1.4021-0.2092h-2.8866v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07422,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7712v-0.3171h-0.21444c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-1.336zm0-0.3172,0-1.7274c0-0.3104,0.04948-0.3442,0.5031-0.3442h0.52784c0.85774,0,1.2619,0.3307,1.2619,1.046,0,0.695-0.42062,1.0256-1.2948,1.0256h-0.99794zm-7.1753-2.4832-0.34639,0-1.8969,3.9341c-0.16495,0.3508-0.19793,0.398-0.32164,0.506-0.13196,0.1281-0.36289,0.2092-0.58557,0.2092h-0.03299v0.3171h2.1856v-0.3171h-0.16495c-0.44536,0-0.66804-0.1282-0.66804-0.3846,0-0.081,0.02474-0.1755,0.07422-0.2835l0.27217-0.5938h2.1856l0.44536,0.9042c0.04948,0.1012,0.06598,0.1485,0.06598,0.1823,0,0.1079-0.20619,0.1754-0.51134,0.1754h-0.34639v0.3171h2.5567v-0.3171h-0.11546c-0.41238,0-0.5031-0.054-0.69279-0.4319l-2.1031-4.2174zm-0.40413,1.1067,0.93196,1.9164-1.8474,0,0.91547-1.9164zm-5.6907-1.0594-0.3134,0-0.3299,0.3981c-0.58557-0.3509-0.90722-0.4521-1.4598-0.4521-0.80001,0-1.4598,0.2632-2.0206,0.8097-0.52784,0.5129-0.77526,1.0797-0.77526,1.7747,0,1.4508,1.1629,2.4899,2.7876,2.4899,1.3196,0,2.1608-0.6342,2.3505-1.7678l-0.38763-0.054c-0.08248,0.3576-0.18145,0.6005-0.3299,0.803-0.33815,0.4655-0.86599,0.7017-1.534,0.7017-1.2206,0-1.798-0.695-1.798-2.1457,0-0.7626,0.12371-1.2754,0.40413-1.6804,0.25567-0.3778,0.76701-0.614,1.2949-0.614,0.57732,0,1.0887,0.2497,1.4021,0.6816,0.1567,0.2226,0.28041,0.4858,0.47011,1.0053h0.36288l-0.12371-1.95zm-8.2557,0.0067-0.30515,0-0.3299,0.4049c-0.38763-0.3036-0.91547-0.4656-1.501-0.4656-1.0804,0-1.8062,0.5668-1.8062,1.4102,0,0.7356,0.44536,1.1,1.6577,1.3564l0.7835,0.1619c0.61031,0.1283,0.66804,0.1418,0.84124,0.2496,0.24742,0.1553,0.37938,0.3779,0.37938,0.6411,0,0.2699-0.12371,0.4926-0.37113,0.6749-0.27217,0.1956-0.54434,0.2699-0.99795,0.2699-0.61031,0-1.0474-0.1552-1.435-0.5061-0.3464-0.3171-0.51959-0.6343-0.6433-1.1539h-0.35464l0.03299,1.9231h0.32165l0.37113-0.4588c0.55258,0.371,1.0144,0.506,1.732,0.506,1.2124,0,1.9876-0.5802,1.9876-1.4845,0-0.4183-0.1732-0.776-0.49485-1.0324-0.22268-0.1754-0.54433-0.2902-1.2041-0.4251l-0.88248-0.1822c-0.73402-0.1552-1.0804-0.4183-1.0804-0.83,0-0.4724,0.47011-0.7963,1.1711-0.7963,0.57732,0,1.0474,0.2026,1.3773,0.5871,0.23918,0.2767,0.38763,0.5601,0.49484,0.9042h0.35464l-0.09897-1.7544zm-11.151,2.7059,0-1.8355,0-0.1956c0-0.2834,0.07423-0.3172,0.74227-0.3172h0.1567v-0.3171h-2.7134v0.3171h0.14846c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.14846v0.3171h2.7134v-0.3171h-0.1567c-0.66804,0-0.74227-0.0337-0.74227-0.3172v-0.1957-0.8569l0.9567-0.7894,1.4351,1.7206c0.13196,0.1619,0.16495,0.216,0.16495,0.2834,0,0.108-0.1567,0.1552-0.56083,0.1552h-0.25567v0.3171h2.8206v-0.3171h-0.1567c-0.45361,0-0.56907-0.0472-0.80826-0.3373l-1.9959-2.3551,1.2289-1.0054c0.39588-0.3442,0.89898-0.5399,1.3938-0.5399v-0.3171h-2.5402v0.3171h0.20619c0.37938,0,0.53609,0.0608,0.53609,0.2025,0,0.0944-0.16495,0.2901-0.40413,0.4858l-2.0206,1.66zm-9.2207-2.6654-1.699,0,0,0.3171,0.20618,0c0.42062,0,0.61032,0.054,0.75877,0.2227v2.8679c0,0.9245-0.16495,1.1201-0.9567,1.1471v0.3171h2.3505v-0.3171c-0.78353-0.027-0.94848-0.2226-0.94848-1.1471v-2.5035l3.6784,4.0622h0.3464v-3.5021c0-0.9245,0.16495-1.1202,0.95671-1.1472v-0.3171h-2.3505v0.3171c0.78351,0.027,0.94846,0.2227,0.94846,1.1472v2.1189l-3.2908-3.5832zm-5.3609,0.8299,0-0.1956c0-0.2834,0.07423-0.3172,0.73402-0.3172h0.16495v-0.3171h-2.7299v0.3171h0.16495c0.66804,0,0.74227,0.0338,0.74227,0.3172v0.1956,3.212,0.1957c0,0.2835-0.07423,0.3172-0.74227,0.3172h-0.16495v0.3171h2.7299v-0.3171h-0.16495c-0.65979,0-0.73402-0.0337-0.73402-0.3172v-0.1957-3.212z"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <path id="path1517" stroke-width="1pt" fill="#FFF" d="M305.97,6.204h1.35v2.8174c0,0.5319-0.02,0.8614-0.05,0.9886-0.13,0.485-0.42,0.819-0.87,1.003-0.31,0.127-0.77,0.19-1.38,0.19-1.43,0-2.15-0.428-2.15-1.2849l1.43-0.007c0.1,0.2679,0.36,0.4019,0.81,0.4019,0.32,0,0.55-0.101,0.68-0.303,0.1-0.1554,0.15-0.4096,0.15-0.7627v-0.12c-0.43,0.3436-0.9,0.5154-1.41,0.5154-0.56,0-1-0.1765-1.34-0.5295-0.33-0.3578-0.5-0.8144-0.5-1.3699,0-0.4848,0.19-0.8897,0.57-1.2145,0.36-0.3012,0.79-0.4519,1.29-0.4519,0.64,0,1.12,0.2095,1.42,0.6285v-0.5014zm-0.07,1.6382c0-0.226-0.09-0.4048-0.26-0.5367-0.18-0.1365-0.38-0.2047-0.62-0.2047-0.25,0-0.46,0.0729-0.63,0.2189-0.16,0.1459-0.24,0.3436-0.24,0.5931,0,0.2071,0.08,0.386,0.25,0.5366,0.08,0.0706,0.17,0.1248,0.26,0.1624,0.1,0.0377,0.2,0.0565,0.3,0.0565,0.28,0,0.5-0.0682,0.66-0.2048,0.19-0.1506,0.28-0.3577,0.28-0.6213zm-6.29-1.6382h1.41v0.6143c0.24-0.4519,0.6-0.6778,1.06-0.6778l0.43,0.0423v1.2922c-0.21-0.0376-0.4-0.0565-0.56-0.0565-0.6,0-0.9,0.3554-0.9,1.0662v1.3699h-1.44v-3.6506zm-2.67-0.1271c0.62,0,1.14,0.1648,1.56,0.4943,0.43,0.3531,0.65,0.8403,0.65,1.4616,0,0.6073-0.21,1.0898-0.64,1.4475-0.41,0.3295-0.92,0.4943-1.54,0.4943-0.68,0-1.23-0.153-1.64-0.459-0.46-0.3389-0.69-0.8402-0.69-1.504,0-0.6213,0.23-1.1085,0.7-1.4616,0.42-0.3154,0.96-0.4731,1.6-0.4731zm-0.04,2.8668c0.24,0,0.44-0.0894,0.59-0.2683s0.22-0.3931,0.22-0.6426-0.07-0.4636-0.21-0.6425-0.33-0.2683-0.58-0.2683-0.46,0.087-0.61,0.2612c-0.08,0.0895-0.13,0.186-0.17,0.2895-0.04,0.0989-0.06,0.2189-0.06,0.3601,0,0.2589,0.07,0.4755,0.21,0.6496,0.14,0.1742,0.35,0.2613,0.61,0.2613zm-4.05-0.5155h1.45v1.4264h-1.45v-1.4264zm-3.56-0.0141c0.15,0.3766,0.4,0.5649,0.74,0.5649,0.36,0,0.58-0.0989,0.68-0.2966,0.08,0,0.3,0.0142,0.63,0.0424,0.34,0.0282,0.64,0.0424,0.89,0.0424-0.24,0.466-0.54,0.7908-0.91,0.9744-0.33,0.16-0.77,0.2401-1.32,0.2401-0.65,0-1.17-0.1671-1.56-0.5014-0.42-0.353-0.63-0.8473-0.63-1.4828,0-0.6072,0.23-1.0874,0.69-1.4404,0.41-0.3107,0.93-0.466,1.57-0.466,0.63,0,1.14,0.16,1.54,0.4801,0.4,0.3154,0.63,0.7814,0.69,1.3981l0.01,0.4448h-3.02zm1.52-0.8614c-0.05-0.3295-0.29-0.4943-0.71-0.4943-0.16,0-0.33,0.0447-0.5,0.1342-0.17,0.0894-0.26,0.2094-0.28,0.3601h1.49zm-7.76-1.3487h1.44l-0.01,0.459c0.4-0.3813,0.84-0.5719,1.34-0.5719,0.56,0,1,0.1741,1.32,0.5225,0.33,0.3436,0.5,0.7955,0.5,1.3557,0,0.579-0.16,1.0521-0.48,1.4192-0.34,0.3907-0.79,0.5861-1.35,0.5861-0.31,0-0.55-0.0353-0.73-0.1059-0.17-0.0706-0.37-0.2142-0.59-0.4307v1.687h-1.44v-4.921zm2.27,2.7468c0.26,0,0.47-0.0895,0.63-0.2684,0.16-0.1835,0.24-0.4048,0.24-0.6637,0-0.2636-0.08-0.4778-0.23-0.6425-0.14-0.1695-0.34-0.2542-0.6-0.2542-0.24,0-0.44,0.0847-0.62,0.2542-0.17,0.1694-0.26,0.3765-0.26,0.6213,0,0.2542,0.08,0.4778,0.23,0.6708,0.16,0.1883,0.36,0.2825,0.61,0.2825zm-6.81-1.6453c0.11-0.4754,0.38-0.812,0.78-1.0097,0.3-0.1412,0.73-0.2118,1.29-0.2118,0.53,0,0.96,0.1036,1.28,0.3107,0.39,0.2495,0.59,0.6237,0.59,1.1227v1.6876c0,0.1082,0.01,0.2071,0.03,0.2965,0.01,0.0895,0.05,0.2071,0.11,0.3531h-1.49l-0.05-0.4237c-0.34,0.3531-0.76,0.5296-1.24,0.5296-0.39,0-0.72-0.0918-1.01-0.2754-0.31-0.2165-0.47-0.5131-0.47-0.8897,0-0.4095,0.13-0.7131,0.4-0.9109,0.2-0.1412,0.5-0.2447,0.93-0.3106l1.02-0.1201c0.22-0.0376,0.33-0.0965,0.33-0.1765,0-0.1836-0.14-0.2754-0.41-0.2754-0.16,0-0.29,0.0189-0.39,0.0565-0.1,0.033-0.18,0.1153-0.23,0.2471h-1.47zm1.27,1.3558c0,0.1977,0.17,0.2965,0.5,0.2965,0.21,0,0.39-0.0659,0.55-0.1977s0.25-0.2966,0.25-0.4943l-0.96,0.1201c-0.06,0.0047-0.14,0.0353-0.22,0.0918-0.08,0.0518-0.12,0.1129-0.12,0.1836zm-1.58-1.038l-1.44,0.0706c-0.09-0.193-0.17-0.3319-0.26-0.4166-0.11-0.0989-0.27-0.1483-0.46-0.1483-0.27,0-0.47,0.0942-0.62,0.2825-0.14,0.1835-0.21,0.4119-0.21,0.6849,0,0.2353,0.08,0.4354,0.24,0.6002,0.16,0.16,0.36,0.24,0.59,0.24,0.38,0,0.62-0.2094,0.74-0.6284l1.45,0.0636c-0.24,1.0685-0.97,1.6028-2.2,1.6028-0.66,0-1.19-0.16-1.59-0.4801-0.45-0.3484-0.68-0.838-0.68-1.4687,0-0.6402,0.25-1.1345,0.74-1.4828,0.43-0.3107,0.98-0.4661,1.64-0.4661,0.53,0,0.97,0.1318,1.34,0.3954,0.36,0.259,0.61,0.6426,0.72,1.151zm-7.4,1.038c0.1,0.1647,0.22,0.273,0.38,0.3248,0.11,0.0329,0.27,0.0494,0.5,0.0494,0.06,0,0.1-0.0024,0.13-0.0071,0.03-0.0094,0.07-0.0259,0.12-0.0494,0.1-0.0424,0.15-0.1059,0.15-0.1906,0-0.1271-0.22-0.2142-0.67-0.2613-0.61-0.0706-1.02-0.1506-1.24-0.2401-0.45-0.1789-0.67-0.4872-0.67-0.925,0-0.4754,0.23-0.8214,0.68-1.0379,0.35-0.1648,0.78-0.2472,1.32-0.2472,1.11,0,1.75,0.379,1.94,1.1369l-1.37,0.0917c-0.07-0.1223-0.16-0.2118-0.27-0.2683-0.1-0.0329-0.23-0.0494-0.38-0.0494-0.36,0-0.54,0.0847-0.54,0.2542,0,0.0565,0.06,0.1059,0.18,0.1483,0.13,0.0423,0.44,0.0941,0.94,0.1553s0.85,0.1507,1.04,0.2683c0.3,0.1695,0.45,0.4472,0.45,0.8332,0,0.4425-0.21,0.7862-0.61,1.0309-0.33,0.1977-0.74,0.2966-1.23,0.2966-0.6,0-1.07-0.0683-1.4-0.2048-0.46-0.1883-0.76-0.5295-0.87-1.0238l1.42-0.0847zm-5.93-3.7847h1.44v2.2807l1.17-0.9533h2l-1.75,1.3699,1.76,2.2877h-1.7l-1.08-1.4898-0.4,0.2895v1.1933h-1.44v-4.978zm-4.85,1.3204h1.45v0.4801c0.37-0.386,0.83-0.579,1.36-0.579,0.43,0,0.78,0.1201,1.04,0.3601,0.27,0.2354,0.4,0.5696,0.4,1.0027v2.4078h-1.42l-0.01-2.0548c0-0.1883-0.06-0.3412-0.18-0.4589s-0.27-0.1766-0.45-0.1766c-0.24,0-0.42,0.0918-0.55,0.2754s-0.19,0.3978-0.19,0.6426v1.7582h-1.45v-3.6576zm-1.98,0.007h1.44v3.6364h-1.44v-3.6364zm0-1.3345h1.44v0.9815h-1.44v-0.9815zm-2.12,3.5587h1.45v1.4264h-1.45v-1.4264zm-5.7-2.2242l0.62,2.2737c0.04-0.2731,0.13-0.652,0.28-1.1368,0.06-0.2166,0.12-0.4378,0.17-0.6638,0.05-0.16,0.08-0.3177,0.12-0.4731l1.48,0.0071,0.33,1.1368c0.11,0.419,0.19,0.8073,0.24,1.1651,0.03-0.1883,0.06-0.3672,0.1-0.5367,0.04-0.1741,0.09-0.3836,0.17-0.6284,0.06-0.1883,0.11-0.3672,0.16-0.5366,0.05-0.1742,0.12-0.3766,0.19-0.6073h1.48l-1.29,3.6576h-1.56l-0.55-2.0971-0.6,2.0971h-1.56l-1.28-3.6576h1.5zm-6.53,0l0.61,2.2737c0.05-0.2731,0.14-0.652,0.29-1.1368,0.06-0.2166,0.12-0.4378,0.17-0.6638,0.04-0.16,0.08-0.3177,0.12-0.4731l1.48,0.0071,0.33,1.1368c0.11,0.419,0.19,0.8073,0.24,1.1651,0.03-0.1883,0.06-0.3672,0.1-0.5367,0.04-0.1741,0.09-0.3836,0.17-0.6284,0.06-0.1883,0.11-0.3672,0.16-0.5366,0.05-0.1742,0.12-0.3766,0.19-0.6073h1.48l-1.29,3.6576h-1.56l-0.56-2.0971-0.6,2.0971h-1.55l-1.28-3.6576h1.5zm-6.53,0l0.61,2.2737c0.04-0.2731,0.14-0.652,0.28-1.1368,0.07-0.2166,0.12-0.4378,0.18-0.6638,0.04-0.16,0.08-0.3177,0.11-0.4731l1.49,0.0071,0.33,1.1368c0.11,0.419,0.19,0.8073,0.24,1.1651,0.03-0.1883,0.06-0.3672,0.1-0.5367,0.04-0.1741,0.09-0.3836,0.17-0.6284,0.05-0.1883,0.11-0.3672,0.16-0.5366,0.05-0.1742,0.11-0.3766,0.19-0.6073h1.48l-1.29,3.6576h-1.56l-0.56-2.0971-0.6,2.0971h-1.55l-1.29-3.6576h1.51z"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <g id="g1515" filter="url(#filter1149)" fill-rule="evenodd" transform="matrix(0.0294185,0,0,0.0294185,0.1569075,1.9855595)">
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1516" d="M397.64,320.25,280.39,282.52l-29.65-157.68,94.34-95.688,48.518,17.52,90.297,88.949-86.254,184.64z" stroke="#000" stroke-width="0.93619299pt" fill="#FFF"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1518" d="m476.96,339.17c18.824,3.7644,22.59,16.942,18.824,20.706-3.7634,3.7654-13.175,7.5298-20.705,1.8821-7.5318-5.6465-7.5318-18.824,1.8813-22.588z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1519" d="m286.46,340.43c-1.8342,0.48921-17.158-12.716-29.293-6.5953-12.132,6.1196-20.276,19.823-8.9423,25.446,11.335,5.6232,19.438-0.86115,29.374-7.8386,9.9379-6.9764,9.5793-8.3206,8.8608-11.012z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1520" d="m510.36,306.93c10.237-2.5598,33.886,0,30.119,15.058-3.7633,15.062-35.764,9.4119-56.473,1.8852-1.8823-15.061,21.529-15.737,26.354-16.943z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path1521" d="m359.24,21.363c-11.313,0-22.606,4.3206-31.275,12.99l-154.09,154.06c-8.4969,8.4967-12.762,19.543-12.931,30.631h-0.0585c0,0.0395,0.0566,0.0774,0.0585,0.11702-0.002,0.18609-0.0585,0.36977-0.0585,0.55586h0.2633c2.9491,11.221,79.15,25.523,87.651,34.025,12.839,12.839-49.233,22.268-36.395,35.107,12.839,12.839,77.59,24.843,90.43,37.682,12.839,12.839-26.238,26.51-13.399,39.349s55.967-3.2094,48.155,30.28c17.338,17.338,53.512,9.0588,77.733-8.2795,12.839-12.839-24.629-11.707-11.79-24.546s45.247-12.908,72.555-43.621c-10.992-17.095-46.981-24.375-34.142-37.214s37.8-6.3179,91.659-30.777c26.292-11.941,24.12-21.01,24.019-32.006-0.002-0.23138,0-0.43973,0-0.67288h-0.0585c-0.16-11.08-4.46-22.13-12.95-30.63l-154.07-154.06c-8.66-8.669-19.99-12.989-31.3-12.989zm-1.3165,20.04c5.0295,0.13102,9.0916,3.9651,17.056,9.1279l72.789,53.977c0.79681,0.51671,1.5557,1.0557,2.2527,1.6091,0.69703,0.55327,1.3337,1.1401,1.9309,1.7261,0.5972,0.58495,1.14,1.1721,1.6383,1.7846,0.49726,0.61244,0.94845,1.2385,1.3458,1.8724,0.39844,0.6349,0.75476,1.2798,1.0532,1.9309,0.29867,0.65226,0.53281,1.325,0.7314,1.9894,0.19976,0.66341,0.36832,1.319,0.46811,1.9894,0.0999,0.67165,0.14627,1.3452,0.14627,2.0187l-43.123-20.83-4.3006,32.562-23.727-11.117-36.629,24.458-14.014-48.331-18.051,42.275-50.408,5.032,0.55587-22.439c0-5.3897,29.057-43.122,46.751-52.105l32.386-23.259c4.7787-3.0977,8.1289-4.35,11.147-4.2714zm-66.996,220.21c22.944,5.9503,48.476,13.757,68.957,13.897l0.87768,9.2157c-17.538-1.8078-54.648-10.276-63.398-14.745l-6.4363-8.3672z" stroke-width="1pt" fill="#000"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <use id="use1328" fill-rule="nonzero" xlink:href="#path1508" transform="matrix(5.176729,0,0,5.176729,-102.7023,-39.434692)" height="1052.3622" fill-opacity="0.06461535" width="744.09448" y="0" x="0" font-family="Sans" fill="#ffffff"/>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <flowRoot id="flowRoot3973" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" font-weight="normal" font-size="8.39999962px" transform="translate(8.0703305,106)" line-height="133.00000429%" font-style="normal" font-family="Serif" fill="#000000">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowRegion id="flowRegion3975">
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <use id="use3977" xlink:href="#d0e876" height="3962.5" width="320" y="0" x="0"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico </flowRegion>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <flowDiv id="flowDiv3979" style="text-anchor:start;text-align:start;" font-weight="normal" xml:space="preserve" font-style="normal" font-stretch="normal" font-variant="normal" font-family="DejaVu Sans">ابزارهای ترسیم شکل Inkscape بسیار قدرتمند هستند. حقههای آنها را یاد بگیرید و با آنها در اوقات فراغت بازی کنید – این وقتی کار طراحیتان را انجام میدهید، نتیجه بخش خواهد بود، چون استفاده از اشیا به جای مسیرها اغلب باعث میشود اثر هنری وکتور شده سریعتر ساخته شده و آسانتر تغییر داده شود. اگر ایدههایی برای بهتر کردن اشکال دارید، لطفا با توسعه دهندگان تماس بگیرید.</flowDiv>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="text3491" font-weight="normal" xml:space="preserve" font-size="6px" font-style="normal" font-stretch="normal" font-variant="normal" y="7054" x="12.5" font-family="DejaVu Sans" fill="#000000"><tspan id="tspan3493" sodipodi:role="line" x="12.5" y="7054">این سند تحت Creative Commons لیسانس Attribution-Noncommercial 3.0 Unported منتشر شده است.</tspan></text>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="text2697" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,-1,1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-7.4958191" x="-7038.6235" font-family="DejaVu Sans Mono" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan2699" sodipodi:role="line" style="letter-spacing:0.29056421;" font-weight="normal" font-style="normal" font-stretch="normal" font-variant="normal" y="-7.4958191" x="-7038.6235" font-family="DejaVu Sans Mono">از <tspan id="tspan2935" font-weight="bold">ctrl+ جهت بالا</tspan> برای پیمایش به بالا استفاده کنید</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path2703" opacity="0.5" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,206.86066,6744.6393)" fill="#000"/>
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico <text id="text10639" opacity="0.5" style="writing-mode:lr-tb;text-anchor:start;text-align:start;" line-height="125%" font-weight="normal" xml:space="preserve" transform="matrix(0,1,-1,0,0,0)" font-style="normal" font-stretch="normal" font-size="6.96932268px" font-variant="normal" y="-326.58597" x="0.87666702" font-family="DejaVu Sans Mono" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan10641" sodipodi:role="line" style="letter-spacing:0.29056421;" font-weight="normal" font-style="normal" font-stretch="normal" font-variant="normal" y="-326.58597" x="0.87666702" font-family="DejaVu Sans Mono">از <tspan id="tspan2933" font-weight="bold">ctrl+ جهت پایین</tspan> برای پیمایش به پایین استفاده کنید</tspan></text>
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico <path id="path10644" opacity="0.5" d="m338.53,197.82-13.108-1.2709,7.6547-10.717z" fill-rule="evenodd" transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.22949,312.86077)" fill="#000"/>