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
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. -->
<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-basic.svg" xmlns:string="http://www.jclark.com/xt/java/java.lang.String" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:version="0.32" height="3170pt" width="256pt" version="1.1" xmlns:cc="http://web.resource.org/cc/" xmlns:xlink="http://www.w3.org/1999/xlink" inkscape:version="0.92" xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview id="base" inkscape:window-x="0" inkscape:window-y="0" snaptoguides="true" inkscape:zoom="2.0000000" inkscape:cx="160.00000" inkscape:cy="3864.0000" inkscape:window-width="780" showborder="false" inkscape:window-height="580" showguides="true"/>
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient841">
<stop id="stop842" stop-color="#0082ab" offset="0"/>
<stop id="stop843" stop-color="#fff" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient1657" y2=".91667" xlink:href="#linearGradient841" y1=".16666" x2=".51619" x1=".51619"/>
<filter id="filter48" style="color-interpolation-filters:sRGB" height="1.2" width="1.2" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
<feFlood id="feFlood50" result="flood" flood-color="rgb(255,255,255)" flood-opacity=".68628"/>
<feComposite id="feComposite52" operator="in" result="composite1" in2="SourceGraphic" in="flood"/>
<feGaussianBlur id="feGaussianBlur54" result="blur" stdDeviation="20" in="composite1"/>
<feOffset id="feOffset56" result="offset" dx="0" dy="0"/>
<feComposite id="feComposite58" operator="over" result="composite2" in2="offset" in="SourceGraphic"/>
</filter>
</defs>
<metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer">
<rect id="rect582" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.89" y=".27753" x=".18215" fill="url(#linearGradient1657)"/>
<path id="path93" d="m150.97 4.9606h-9.5795v0.61293h0.28691c1.2911 0 1.4345 0.065212 1.4345 0.61293v6.9639c0 0.54772-0.14346 0.61293-1.4345 0.61293h-0.28691v0.61293h9.7867l0.31879-3.482h-0.70133c-0.20721 0.91287-0.57381 1.7214-0.95636 2.0996-0.49411 0.52164-1.4026 0.76942-2.7416 0.76942h-1.052c-0.47817 0-0.87666-0.07825-1.0201-0.19562-0.11158-0.07825-0.12752-0.15649-0.12752-0.43035v-3.3251h0.31879c0.9723 0 1.3708 0.078248 1.6896 0.35211 0.41442 0.33907 0.57381 0.75638 0.6057 1.5258h0.74914v-4.2776h-0.74914c-0.0797 1.278-0.71728 1.7866-2.2315 1.7866h-0.38255v-2.9734c0-0.56076 0.14346-0.65205 1.0042-0.65205h0.82885c1.4026 0 2.088 0.11737 2.63 0.48252 0.52599 0.33906 0.90853 1.0694 1.1476 2.2431h0.68538zm-21.15 5.2294h1.8011c1.4345 0 2.1837-0.09129 2.8212-0.33907 1.1317-0.4434 1.7693-1.278 1.7693-2.3083 0-0.99112-0.55788-1.7475-1.6099-2.1779-0.62164-0.26082-1.6099-0.40427-2.7097-0.40427h-5.5787v0.61293h0.28691c1.2911 0 1.4345 0.065212 1.4345 0.61293v6.9639c0 0.54772-0.14345 0.61293-1.4345 0.61293h-0.28691v0.61293h5.3556v-0.61293h-0.41443c-1.2911 0-1.4345-0.0652-1.4345-0.61293v-0.37819zm0-0.61293v-3.3384c0-0.59988 0.0956-0.6651 0.9723-0.6651h1.0201c1.6577 0 2.4387 0.63902 2.4387 2.0214 0 1.3432-0.8129 1.9822-2.5025 1.9822zm-13.87-4.799h-0.66945l-3.666 7.6029c-0.31878 0.67813-0.38253 0.76942-0.62162 0.97808-0.25503 0.24778-0.70133 0.40427-1.1317 0.40427h-0.0638v0.61293h4.2239v-0.61293h-0.31878c-0.86072 0-1.2911-0.24778-1.2911-0.74334 0-0.1565 0.0478-0.33907 0.14345-0.54772l0.526-1.1476h4.2239l0.86072 1.7475c0.0956 0.19562 0.12751 0.2869 0.12751 0.35211 0 0.20866-0.39848 0.33907-0.98823 0.33907h-0.66945v0.61293h4.9412v-0.61293h-0.22314c-0.79697 0-0.9723-0.10433-1.3389-0.83463zm-0.78103 2.1387 1.8011 3.7037h-3.5704zm-11-2.0474h-0.60569l-0.63757 0.76942c-1.1317-0.67814-1.7533-0.87375-2.8212-0.87375-1.5461 0-2.8213 0.5086-3.9051 1.5649-1.0201 0.99112-1.4983 2.0866-1.4983 3.4298 0 2.8038 2.2474 4.8121 5.3875 4.8121 2.5503 0 4.1761-1.2259 4.5427-3.4167l-0.75-0.104c-0.1594 0.69118-0.35067 1.1607-0.63757 1.5519-0.65352 0.89983-1.6736 1.3563-2.9647 1.3563-2.359 0-3.4748-1.3432-3.4748-4.147 0-1.4736 0.23909-2.4648 0.78103-3.2472 0.49411-0.7303 1.4823-1.1867 2.5025-1.1867 1.1158 0 2.104 0.48251 2.7097 1.3171 0.30284 0.43035 0.54193 0.93896 0.90854 1.9431h0.70132zm-15.955 0.013044h-0.58975l-0.63757 0.78246c-0.74914-0.58685-1.7693-0.89983-2.9009-0.89983-2.088 0-3.4907 1.0954-3.4907 2.7256 0 1.4215 0.86072 2.1257 3.2038 2.6212l1.5142 0.31298c1.1795 0.24778 1.2911 0.27386 1.6258 0.48251 0.47818 0.29995 0.7332 0.7303 0.7332 1.2389 0 0.52164-0.23909 0.95199-0.71726 1.3041-0.526 0.37819-1.052 0.52164-1.9287 0.52164-1.1795 0-2.0243-0.29995-2.7734-0.97808-0.66946-0.61293-1.0042-1.2259-1.2433-2.23h-0.68539l0.06376 3.7167h0.62163l0.71726-0.88679c1.0679 0.71725 1.9605 0.97807 3.3472 0.97807 2.3431 0 3.8414-1.1215 3.8414-2.869 0-0.80854-0.33473-1.4997-0.95636-1.9953-0.43036-0.33907-1.052-0.56076-2.3271-0.82158l-1.704-0.3523c-1.4186-0.29995-2.088-0.80855-2.088-1.604 0-0.91288 0.90854-1.5388 2.2634-1.5388 1.1157 0 2.0243 0.39124 2.6619 1.1346 0.46224 0.53468 0.74914 1.0824 0.95635 1.7475h0.68539zm-21.55 5.2296v-3.9255c0-0.54772 0.14346-0.61293 1.4345-0.61293h0.30285v-0.61293h-5.244v0.61293h0.28691c1.2911 0 1.4345 0.065212 1.4345 0.61293v6.9639c0 0.54772-0.14346 0.61293-1.4345 0.61293h-0.28691v0.61293h5.244v-0.61293h-0.30285c-1.2911 0-1.4345-0.0652-1.4345-0.61293v-2.0344l1.849-1.5258 2.7734 3.3255c0.25502 0.31299 0.31878 0.41732 0.31878 0.54772 0 0.20866-0.30284 0.29995-1.0839 0.29995h-0.49412v0.61293h5.4512v-0.61293h-0.30284c-0.87666 0-1.0998-0.09129-1.5621-0.65205l-3.857-4.552 2.375-1.9431c0.765-0.6651 1.737-1.0433 2.693-1.0433v-0.613h-4.909v0.61293h0.39848c0.7332 0 1.0361 0.11737 1.0361 0.39123 0 0.18258-0.31879 0.56077-0.78103 0.93896zm-17.82-5.1514h-3.283v0.61293h0.39848c0.8129 0 1.1795 0.10433 1.4664 0.43035v5.5424c0 1.7866-0.31878 2.1648-1.849 2.217v0.61293h4.5427v-0.61293c-1.5143-0.05217-1.8331-0.43035-1.8331-2.217v-4.8379l7.109 7.8507h0.66946v-6.7685c0-1.7866 0.31879-2.1648 1.849-2.217v-0.61293h-4.5427v0.61293c1.5142 0.052168 1.833 0.43035 1.833 2.217v4.0945zm-10.36 1.6041v-0.3782c0-0.54772 0.14346-0.61293 1.4186-0.61293h0.31879v-0.61293h-5.2759v0.61293h0.31879c1.2911 0 1.4345 0.065212 1.4345 0.61293v6.9639c0 0.54772-0.14346 0.61293-1.4345 0.61293h-0.31879v0.61293h5.2759v-0.61293h-0.31879c-1.2751 0-1.4186-0.0652-1.4186-0.61293v-0.37819z" inkscape:connector-curvature="0" stroke-width="1pt" fill="#fff"/>
<path id="path1124" d="m139.23 12.451h1.4992l-0.92097 3.0199h1.692l-0.14993 0.49261h-1.692l-0.40694 1.2422c-0.34268 1.0566-0.70679 2.3345-1.0923 3.8338-0.38552 1.485-0.57828 2.3488-0.57828 2.5916 0 0.32841 0.14993 0.49261 0.44978 0.49261 0.5283 0 1.1637-0.72821 1.9062-2.1846 0.0714-0.15706 0.17849-0.34982 0.32127-0.57828l0.42836 0.21418c-0.55686 1.1566-0.97094 1.899-1.2422 2.2275-0.58542 0.69965-1.2065 1.0495-1.8634 1.0495-0.44263 0-0.7996-0.13565-1.0709-0.40694-0.27129-0.28557-0.40694-0.64968-0.40694-1.0923 0-0.3998 0.0642-0.84958 0.19276-1.3493 0.14279-0.55686 0.5997-2.1561 1.3707-4.7976l0.36411-1.2422h-1.7134l0.17134-0.49261h1.7134zm10.766 2.8486h1.6063c-1.3565 4.3264-2.0347 7.0679-2.0347 8.2245 0 0.42836 0.11423 0.64254 0.34269 0.64254 0.27129 0 0.59256-0.25701 0.9638-0.77104 0.38552-0.52831 0.72107-1.178 1.0066-1.949l0.47119 0.19276c-0.75676 2.1418-1.6992 3.2127-2.8272 3.2127-0.97095 0-1.4564-0.54258-1.4564-1.6278 0-0.28557 0.0357-0.74962 0.10709-1.3922-0.55686 0.85671-1.0066 1.4778-1.3493 1.8634-0.68538 0.77104-1.4636 1.1566-2.3346 1.1566-0.51403 0-0.94239-0.17848-1.2851-0.53545-0.34269-0.35696-0.51403-0.7996-0.51403-1.3279 0-0.25701 0.21418-1.1209 0.64254-2.5916l0.38552-1.3279c0.42835-1.4707 0.64253-2.3774 0.64253-2.7201 0-0.27129-0.0928-0.40694-0.27843-0.40694-0.5997 0-1.3922 0.94238-2.3774 2.8272l-0.47119-0.2356c1.0852-2.2275 2.1775-3.3412 3.2769-3.3412 0.3998 0 0.72107 0.14992 0.9638 0.44978 0.25702 0.29985 0.38552 0.69251 0.38552 1.178 0 0.5997-0.14278 1.3493-0.42835 2.2489l-0.57829 1.8205c-0.47119 1.485-0.70679 2.3488-0.70679 2.5916 0 0.49975 0.25702 0.74962 0.77105 0.74962 0.45691 0 0.95666-0.27843 1.4992-0.8353 0.55686-0.55686 1.0566-1.2922 1.4992-2.206 0.67109-1.385 1.3636-3.3483 2.0775-5.8899zm6.3326-2.8486h1.4992l-0.92097 3.0199h1.692l-0.14993 0.49261h-1.692l-0.40694 1.2422c-0.34268 1.0566-0.70679 2.3345-1.0923 3.8338-0.38552 1.485-0.57828 2.3488-0.57828 2.5916 0 0.32841 0.14993 0.49261 0.44978 0.49261 0.5283 0 1.1637-0.72821 1.9062-2.1846 0.0714-0.15706 0.17849-0.34982 0.32127-0.57828l0.42836 0.21418c-0.55686 1.1566-0.97094 1.899-1.2422 2.2275-0.58542 0.69965-1.2065 1.0495-1.8634 1.0495-0.44263 0-0.7996-0.13565-1.0709-0.40694-0.27129-0.28557-0.40694-0.64968-0.40694-1.0923 0-0.3998 0.0643-0.84958 0.19276-1.3493 0.14279-0.55686 0.5997-2.1561 1.3707-4.7976l0.36411-1.2422h-1.7134l0.17134-0.49261h1.7134zm7.4107 3.2341c-1.0281-0.05712-1.9419 0.97094-2.7415 3.0842-0.55686 1.4707-0.83529 2.7915-0.83529 3.9623 0 1.0852 0.47833 1.6278 1.435 1.6278 0.77105 0 1.4421-0.49261 2.0133-1.4778 0.37124-0.62826 0.69251-1.4564 0.96381-2.4845 0.27129-1.0423 0.42835-2.0204 0.47119-2.9342 0.0571-1.128-0.37838-1.7206-1.3065-1.7777zm-0.0214-0.49261c0.84244 0 1.5278 0.33555 2.0561 1.0066 0.5283 0.65681 0.79246 1.5135 0.79246 2.5701 0 1.2994-0.46406 2.613-1.3922 3.9409-0.9995 1.4279-2.2132 2.1418-3.641 2.1418-0.87099 0-1.5849-0.29985-2.1418-0.89955-0.55687-0.61398-0.8353-1.3922-0.8353-2.3345 0-1.5992 0.58542-3.1127 1.7563-4.5406 1.0281-1.2565 2.1632-1.8848 3.4054-1.8848zm4.1765 3.384-0.44978-0.19276c0.37124-0.91383 0.82102-1.6706 1.3493-2.2703 0.5283-0.61398 0.9995-0.92097 1.4136-0.92097 0.92811 0 1.3922 0.67823 1.3922 2.0347 0 0.24274-0.0428 0.72821-0.1285 1.4564 0.98522-2.3274 2.0347-3.4911 3.1484-3.4911 0.31413 0 0.57828 0.09995 0.79246 0.29985 0.22846 0.18562 0.34269 0.41408 0.34269 0.68537 0 0.22846-0.0785 0.42122-0.2356 0.57828-0.15706 0.15706-0.34982 0.2356-0.57828 0.2356-0.48547 0-0.72821-0.27843-0.72821-0.8353 0-0.15706-0.05-0.2356-0.14992-0.2356-0.14279 0-0.34269 0.12851-0.5997 0.38552-0.25702 0.25702-0.47833 0.55686-0.66396 0.89955-0.57114 1.0281-1.4992 3.484-2.7843 7.3677h-1.6063c0.6711-2.0133 1.1066-3.484 1.3065-4.4121 0.31413-1.4564 0.4712-2.513 0.4712-3.1698 0-0.69965-0.11423-1.0495-0.34269-1.0495-0.1999 0-0.49261 0.25701-0.87813 0.77104-0.37124 0.51403-0.72821 1.1351-1.0709 1.8634zm12.101-8.2245c0.27129 0 0.49975 0.09995 0.68537 0.29985 0.1999 0.18562 0.29985 0.41408 0.29985 0.68537s-0.1 0.50689-0.29985 0.70679c-0.18562 0.1999-0.41408 0.29985-0.68537 0.29985s-0.50689-0.09995-0.70679-0.29985-0.29985-0.4355-0.29985-0.70679 0.1-0.49975 0.29985-0.68537c0.1999-0.1999 0.4355-0.29985 0.70679-0.29985zm0.32127 11.244 0.42835 0.21418c-0.95666 2.0276-1.999 3.0413-3.127 3.0413-0.3998 0-0.72821-0.14278-0.98522-0.42836-0.25702-0.29985-0.38552-0.67823-0.38552-1.1351 0-0.31413 0.0428-0.60684 0.1285-0.87813s0.32127-0.87813 0.70679-1.8205l0.81388-1.949c0.48547-1.1566 0.72821-1.9347 0.72821-2.3345 0-0.28557-0.12137-0.42836-0.36411-0.42836-0.49975 0-1.1851 0.78532-2.0561 2.356l-0.42836-0.25701c1.0138-1.8562 1.9847-2.7843 2.9128-2.7843 0.38552 0 0.69965 0.14279 0.94239 0.42836 0.24273 0.28557 0.3641 0.65681 0.3641 1.1137 0 0.54258-0.29271 1.5492-0.87813 3.0199l-0.89955 2.2489c-0.37125 0.92811-0.55687 1.5349-0.55687 1.8205 0 0.25702 0.11423 0.38552 0.34269 0.38552 0.27129 0 0.62112-0.24274 1.0495-0.72821 0.44264-0.49975 0.86386-1.128 1.2637-1.8848zm7.2607-5.8685c-0.42835-0.02856-0.9281 0.22132-1.4992 0.74962-0.55686 0.51403-1.078 1.2065-1.5635 2.0775-0.97094 1.7277-1.4564 3.177-1.4564 4.3478 0 0.91383 0.35696 1.3707 1.0709 1.3707 1.1566 0 2.2489-1.1351 3.2769-3.4054 0.69965-1.5421 1.0923-2.82 1.178-3.8338 0.0286-0.37124-0.05-0.67823-0.23559-0.92097-0.18563-0.24274-0.44264-0.37124-0.77105-0.38552zm1.7991-0.25701h1.5207c-0.35696 0.95666-0.84244 2.356-1.4564 4.1979-0.65682 1.9847-0.98523 3.334-0.98523 4.048 0 0.29985 0.11423 0.44978 0.34269 0.44978 0.49975 0 1.1994-0.97094 2.099-2.9128l0.47119 0.19276c-0.5997 1.2993-1.1137 2.1918-1.5421 2.6772-0.42836 0.48547-0.91383 0.72821-1.4564 0.72821-0.88527 0-1.3279-0.3998-1.3279-1.1994 0-0.21418 0.0642-0.64968 0.19276-1.3065-1.0138 1.6849-2.099 2.5273-3.2555 2.5273-0.7282 0-1.3208-0.24274-1.7777-0.72821-0.45691-0.48547-0.68537-1.1209-0.68537-1.9062 0-1.6278 0.64254-3.2055 1.9276-4.7333 1.2851-1.5421 2.6058-2.3131 3.9623-2.3131 0.71393 0 1.2565 0.39266 1.6278 1.178zm4.3979-4.6905 0.12851-0.49261c1.0709-0.04284 2.2846-0.11423 3.641-0.21418-0.11422 0.38552-0.1999 0.66395-0.25701 0.8353-0.15706 0.44264-0.37838 1.1137-0.66395 2.0133l-1.7348 5.6543c-0.82816 2.6986-1.2422 4.355-1.2422 4.9689 0 0.44264 0.1285 0.66395 0.38552 0.66395 0.35696 0 0.7996-0.38552 1.3279-1.1566 0.2713-0.3998 0.57829-0.92811 0.92097-1.5849l0.49261 0.2356c-0.42836 0.78532-0.74962 1.3422-0.9638 1.6706-0.65682 0.98522-1.4064 1.4778-2.2489 1.4778-0.42835 0-0.77818-0.15706-1.0495-0.47119-0.27129-0.31413-0.40694-0.71393-0.40694-1.1994 0-0.5997 0.24274-1.692 0.72821-3.2769l1.8848-6.1469c0.41408-1.3565 0.62112-2.1204 0.62112-2.2917 0-0.25701-0.0999-0.42836-0.29985-0.51403-0.1999-0.09995-0.62112-0.15706-1.2637-0.17134z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" stroke-width="1pt" fill="#fff"/>
<use id="use1325" opacity=".078652" xlink:href="#path93" transform="matrix(2.3944 0 0 2.3312 -82.964 -14.495)" height="1052.3622" width="320" y="0" x="0"/>
<g id="g839" filter="url(#filter48)" fill-rule="evenodd" transform="matrix(.058837 0 0 .058837 -4.7689 -3.2966)">
<path id="path805" d="m397.64 320.25-117.25-37.73l-29.65-157.68 94.34-95.688 48.518 17.52 90.297 88.949z" inkscape:connector-curvature="0" stroke="#000" stroke-width=".93619pt" fill="#fff"/>
<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" inkscape:connector-curvature="0" stroke-width="1pt"/>
<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" inkscape:connector-curvature="0" stroke-width="1pt"/>
<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" inkscape:connector-curvature="0" stroke-width="1pt"/>
<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.07-4.46-22.12-12.95-30.62l-154.07-154.06c-8.66-8.667-19.99-12.987-31.3-12.987zm-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.745z" inkscape:connector-curvature="0" stroke-width="1pt"/>
</g>
<use id="use2086" style="color:#000000" fill-opacity=".11077" xlink:href="#path1124" transform="matrix(3.7991 0 0 3.7991 -428.74 -36.475)" height="1052.3622" width="320" y="0" x="0" font-family="sans-serif" fill="#ffffff"/>
<text id="text7519" opacity=".5" transform="rotate(90)" line-height="125%" font-size="6.9693px" y="-326.81229" x="3.6203015" font-family="sans-serif" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="3.6203015" style="letter-spacing:.29056" y="-326.81229">Usar <tspan id="tspan7523" font-weight="bold">Ctrl+seta para baixo</tspan> para baixar </tspan></text>
<path id="path7527" opacity=".5" style="color:#000000" d="m332.89 158.62-8.1397-0.0221 4.0438 5.1906z" fill-rule="evenodd" inkscape:connector-curvature="0"/>
</g>
<text id="text1920" font-family="sans-serif" font-size="7" transform="scale(1.1307)" y="30" x="35" fill="#ffffff">
<tspan id="tspan1668" style="letter-spacing:2.1813" fill="#ffffff" dx="0 -0.57057059 0 0 0 0 0">::FORMAS</tspan>
</text>
<!--Author: bulia byak, buliabyak@users.sf.net-->
<rect id="d0e15" display="none" height="1e3px" width="264" y="46" x="35"/>
<flowRoot xml:space="preserve" font-family="sans-serif" font-size="7.2" font-style="italic" line-height="150%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e15"/>
</flowRegion>
<flowPara >Este tutorial aborda as 4 ferramentas de formas geométricas: Retângulo, Círculo, Estrela e Polígono, Espiral. Veremos as capacidades das formas geométricas do Inkscape e sugerir exemplos de como e quando podem ser usados.</flowPara>
</flowRoot>
<rect id="d0e18" display="none" height="1e3px" width="264" y="91.656" x="35"/>
<flowRoot xml:space="preserve" font-family="sans-serif" font-size="7.2" font-style="italic" line-height="150%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e18"/>
</flowRegion>
<flowPara >Use <flowSpan font-weight="bold">Ctrl+setas</flowSpan>, a <flowSpan font-weight="bold">roda do meio do rato</flowSpan>, ou <flowSpan font-weight="bold">arrastar com clique do botão do meio do rato</flowSpan> para deslocar a visualização da página para baixo. Para informações sobre sobre criação, seleção e transformação de objetos, ver o tutorial Básico em <flowSpan font-family="sans-serif">Ajuda > Tutoriais</flowSpan>.</flowPara>
</flowRoot>
<rect id="d0e36" display="none" height="1e3px" width="288" y="143.02" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e36"/>
</flowRegion>
<flowPara >O Inkscape tem 4 <flowSpan font-style="italic">ferramentas de formas geométricas</flowSpan> versáteis, cada uma delas permite criar e editar os seus próprios tipos de formas. Uma forma geométrica é um objeto que pode ser alterado de formas únicas dependendo do tipo, usando as <flowSpan font-style="italic">alças</flowSpan> e <flowSpan font-style="italic">parâmetros</flowSpan> numéricos que determinam a sua aparência.</flowPara>
</flowRoot>
<rect id="d0e48" display="none" height="1e3px" width="288" y="203.65" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e48"/>
</flowRegion>
<flowPara >Por exemplo, numa estrela é possível alterar o número de pontas, o seu comprimento, ângulo, arredondamento, etc. — mas uma estrela continua a ser uma estrela. Uma forma é "menos livre" que um caminho, mas permite outras transformações. É sempre possível converter uma forma geométrica num caminho (<flowSpan font-weight="bold">Ctrl+Shift+C</flowSpan>), mas um caminho numa forma não.</flowPara>
</flowRoot>
<rect id="d0e54" display="none" height="1e3px" width="288" y="273.36" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e54"/>
</flowRegion>
<flowPara >As ferramentas de forma são <flowSpan font-style="italic">Retângulo</flowSpan>, <flowSpan font-style="italic">Círculo</flowSpan>, <flowSpan font-style="italic">Estrela e Polígono</flowSpan>, e <flowSpan font-style="italic">Espiral</flowSpan>. Primeiro vamos ver como funcionam as ferramentas de formas geométricas; depois exploraremos cada uma delas em pormenor.</flowPara>
</flowRoot>
<text style="writing-mode:lr" font-weight="bold" font-size="8" y="336.140937" x="10" font-family="sans-serif" fill="#000000">
<tspan y="336.140937" x="10">Dicas gerais</tspan>
</text>
<rect id="d0e75" display="none" height="1e3px" width="288" y="341.34" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e75"/>
</flowRegion>
<flowPara >É criada uma nova forma ao <flowSpan font-weight="bold">arrastar</flowSpan> sobre a área de desenho com a respetiva ferramenta. Após a forma ser criada (desde que esteja selecionada), são mostradas vários tipos de alças, em forma de diamante, quadrado ou redondo (dependendo da ferramenta de forma geométrica), assim pode-se alterar a forma geométrica mexendo nessas alças.</flowPara>
</flowRoot>
<rect id="d0e81" display="none" height="1e3px" width="288" y="413.5" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e81"/>
</flowRegion>
<flowPara >Todos os quatro tipos de formas geométricas mostram as suas alças assim como na ferramenta de edição de nós (<flowSpan font-weight="bold">F2</flowSpan>). Quando se passa com o rato sobre uma alça, aparece na Barra de Estado (zona inferior do ecrã) a descrição do que essa alça permite alterar.</flowPara>
</flowRoot>
<rect id="d0e87" display="none" height="1e3px" width="288" y="463.48" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e87"/>
</flowRegion>
<flowPara >Além disso, cada ferramenta de forma geométrica mostra os seus parâmetros na barra<flowSpan font-style="italic">Controlos da Ferramenta</flowSpan> (logo acima da área de desenho). Geralmente esta barra tem alguns campos numéricos e um botão para repor os valores padrão, além de outros). Quando é selecionada a forma do tipo nativo da ferramenta atual, ao editar os seus valores na barra de Controlos de Ferramenta a forma é alterada.</flowPara>
</flowRoot>
<rect id="d0e93" display="none" height="1e3px" width="288" y="533.2" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e93"/>
</flowRegion>
<flowPara >Qualquer alteração feita na barra Controlos da Ferramenta será gravada e utilizada no próximo objeto que for criado com a mesma ferramenta. Por exemplo, depois de alterar o número de pontas de uma estrela, as novas estrelas criadas terão o mesmo número de pontas. Além disso, mesmo selecionando simplesmente uma forma geométrica, os seus parâmetros são enviados para a barra de Controlos da Ferramenta e por isso, define por si só os parâmetros para novas forma geométricas criadas.</flowPara>
</flowRoot>
<rect id="d0e96" display="none" height="1e3px" width="288" y="625.85" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
<flowPara >Com uma das ferramentas de formas geométricas ativada, pode-se selecionar um objeto <flowSpan font-weight="bold">clicando</flowSpan> nele. <flowSpan font-weight="bold">Ctrl+clique</flowSpan> (seleção em grupo) e <flowSpan font-weight="bold">Alt+clique</flowSpan> (selecionar objeto por baixo) também funciona como na ferramenta de Selecionar. <flowSpan font-weight="bold">Esc</flowSpan> desfaz a seleção.</flowPara>
</flowRoot>
<text style="writing-mode:lr" font-weight="bold" font-size="8" y="688.51329" x="10" font-family="sans-serif" fill="#000000">
<tspan y="688.51329" x="10">Retângulos</tspan>
</text>
<rect id="d0e117" display="none" height="1e3px" width="288" y="693.71" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
</flowRegion>
<flowPara >Um <flowSpan font-style="italic">retângulo</flowSpan> é a mais simples e talvez a forma mais comum em design e ilustração. O Inkscape tenta tornar o processo de criação e edição de retângulos o mais fácil e prático possível.</flowPara>
</flowRoot>
<rect id="d0e123" display="none" height="1e3px" width="288" y="733.17" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e123"/>
</flowRegion>
<flowPara >Mude para a ferramenta Retângulo com a tecla <flowSpan font-weight="bold">F4</flowSpan> ou clicando no botão correspondente na Caixa de Ferramentas. Desenhe um novo retângulo ao lado deste azul:</flowPara>
</flowRoot>
<text id="shapes-f01-pt.svgtext1578" opacity=".065574" transform="translate(10 780.62)" font-size="16.8" y="26.427183" x="44.104698" font-family="serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f01-pt.svgtspan1451" y="26.427183" x="44.104698" sodipodi:role="line">desenhe aqui</tspan></text>
<rect id="shapes-f01-pt.svgrect1449" style="color:#000000" fill-rule="evenodd" fill-opacity=".75" transform="translate(10 780.62)" height="53.706" width="77.318" stroke="#000" y="0.625" x="184.79" stroke-width="1pt" fill="#00f"/>
<rect id="d0e139" display="none" height="1e3px" width="288" y="847.66" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e139"/>
</flowRegion>
<flowPara >Depois, sem sair da ferramenta Retângulo, mude a seleção de um retângulo para a seleção de outro clicando sobre eles.</flowPara>
</flowRoot>
<rect id="d0e142" display="none" height="1e3px" width="288" y="876.48" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e142"/>
</flowRegion>
<flowPara >Teclas de atalho para desenho de retângulos:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 900.66)"/>
<rect id="d0e148" display="none" height="1e3px" width="258" y="894.66" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e148"/>
</flowRegion>
<flowPara >Com <flowSpan font-weight="bold">Ctrl</flowSpan>, desenhe um quadrado ou um retângulo de proporção inteira (2:1, 3:1, etc).</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 929.36)"/>
<rect id="d0e155" display="none" height="1e3px" width="258" y="923.36" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e155"/>
</flowRegion>
<flowPara >Com <flowSpan font-weight="bold">Shift</flowSpan>, desenha tendo como ponto de partida o centro.</flowPara>
</flowRoot>
<rect id="d0e162" display="none" height="1e3px" width="288" y="941.1" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e162"/>
</flowRegion>
<flowPara >Como se pode ver, o retângulo selecionado (o retângulo acabado de criar é selecionado automaticamente) mostra 3 alças em 3 dos seus cantos. Na verdade são 4 alças, mas 2 delas (no canto superior direito) sobrepõem-se caso o retângulo não tenha cantos arredondados. Estas 2 alças são as <flowSpan font-style="italic">alças de arredondamento</flowSpan>; as outras 2 (acima à esquerda e abaixo à direita) são as <flowSpan font-style="italic">alças de redimensionamento</flowSpan>.</flowPara>
</flowRoot>
<rect id="d0e171" display="none" height="1e3px" width="288" y="1021.5" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e171"/>
</flowRegion>
<flowPara >Vamos dar uma olhada nas alças de arredondamento primeiro. Agarre uma delas e arraste para baixo. Todos os 4 cantos do retângulo ficam arredondados e vê-se a segunda alça de arredondamento — ela permanece na posição original, no canto. Caso se queira os cantos arredondados simetricamente, é tudo o que se necessita de fazer. Para fazer cantos não simétricos, move-se a outra alça do canto.</flowPara>
</flowRoot>
<rect id="d0e174" display="none" height="1e3px" width="288" y="1092.3" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e174"/>
</flowRegion>
<flowPara >Aqui os 2 primeiros retângulos têm cantos arredondados circulares e os outros dois têm cantos arredondados elípticos:</flowPara>
</flowRoot>
<text id="shapes-f02-pt.svgtext3150" line-height="120.00000%" transform="translate(10 1129)" sodipodi:linespacing="120.00000%" font-size="5.9589" y="4.9780722" x="196.08449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f02-pt.svgtspan3151" sodipodi:role="line" x="196.08449" y="4.9780722">Cantos arredondados elípticos</tspan></text>
<text id="shapes-f02-pt.svgtext3143" line-height="120.00000%" transform="translate(10 1129)" sodipodi:linespacing="120.00000%" font-size="5.9589" y="-2.6239278" x="47.265598" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f02-pt.svgtspan3144" sodipodi:role="line" x="47.265598" y="-2.6239278"/><tspan id="shapes-f02-pt.svgtspan3146"/><tspan id="shapes-f02-pt.svgtspan3148" sodipodi:role="line" x="47.265598" y="4.5267232">Cantos arredondados circulares</tspan></text>
<rect id="shapes-f02-pt.svgrect1185" ry="7.1429" fill-rule="evenodd" fill-opacity=".75" transform="translate(10 1129)" height="33.94" width="56.849" stroke="#000" y="11.833" x="17.277" stroke-width="1pt" fill="#00f"/>
<rect id="shapes-f02-pt.svgrect1186" ry="16.97" fill-rule="evenodd" fill-opacity=".75" transform="translate(10 1129)" height="33.94" width="56.849" stroke="#000" y="11.833" x="92.003" stroke-width="1pt" fill="#00f"/>
<rect id="shapes-f02-pt.svgrect1187" ry="16.97" fill-rule="evenodd" fill-opacity=".75" rx="6.6372" transform="translate(10 1129)" height="33.94" width="56.849" stroke="#000" y="11.833" x="168.13" stroke-width="1pt" fill="#00f"/>
<rect id="shapes-f02-pt.svgrect1188" ry="5.9394" fill-rule="evenodd" fill-opacity=".75" rx="24.046" transform="translate(10 1129)" height="33.94" width="56.849" stroke="#000" y="11.833" x="242.69" stroke-width="1pt" fill="#00f"/>
<rect id="d0e187" display="none" height="1e3px" width="288" y="1187.2" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e187"/>
</flowRegion>
<flowPara >Ainda na ferramenta Retângulo, clique nestes retângulos para selecioná-los e repare nas alças de arredondamento.</flowPara>
</flowRoot>
<rect id="d0e190" display="none" height="1e3px" width="288" y="1215.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e190"/>
</flowRegion>
<flowPara >Na maioria das vezes, o raio e forma dos cantos arredondados têm de ser constantes dentro de toda a composição, mesmo que os tamanhos dos retângulos sejam diferentes (imagine como se fossem diagramas com caixas arredondadas de vários tamanhos). O Inkscape torna esta operação fácil. Mude para a ferramenta de Selecionar; na barra de Controlos da Ferramenta, existe um grupo de 4 botões do lado direito, o segundo a contar da esquerda, mostra 2 linhas arredondadas. Com este botão ativado, o tamanho do raio dos cantos é proporcional ao tamanho do retângulo caso se altere o tamanho do retângulo.</flowPara>
</flowRoot>
<rect id="d0e193" display="none" height="1e3px" width="288" y="1319.2" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e193"/>
</flowRegion>
<flowPara >Por exemplo, na imagem seguinte o retângulo vermelho original foi duplicado e ampliado várias vezes, para cima e para baixo, em diferentes proporções, com o botão "Ao redimensionar retângulos, redimensionar também o raio dos cantos arredondados" <flowSpan font-style="italic">desativado</flowSpan>:</flowPara>
</flowRoot>
<text id="shapes-f03-pt.svgtext3161" sodipodi:linespacing="140.00000%" transform="translate(10 1375.6)" line-height="140.00000%" font-size="5.9589" y="145.20607" x="37.091438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f03-pt.svgtspan3162" y="145.20607" x="37.091438" sodipodi:role="line">Dimensionando retângulos com cantos arredondados </tspan><tspan id="shapes-f03-pt.svgtspan3166" y="153.54850" x="37.091438" sodipodi:role="line">com "Dimensionar cantos arredondados em retângulos" DESATIVADO</tspan><tspan id="shapes-f03-pt.svgtspan3164" y="161.89092" x="37.091438" sodipodi:role="line"/></text>
<rect id="shapes-f03-pt.svgrect2134" ry="16.97" stroke-dasharray="0.62500000 1.2500000" fill-rule="evenodd" fill-opacity=".11037" rx="6.6372" transform="translate(10 1375.6)" height="122.77" width="196.91" stroke="#000" y=".32251" x="69.228" stroke-width=".625" fill="#00f"/>
<rect id="shapes-f03-pt.svgrect2133" ry="16.97" stroke-dasharray="0.62500000 1.2500000" fill-rule="evenodd" fill-opacity=".11037" rx="6.6372" transform="translate(10 1375.6)" height="63.106" width="196.91" stroke="#000" y=".32092" x="69.228" stroke-width=".625" fill="#00f"/>
<rect id="shapes-f03-pt.svgrect2756" ry="16.97" stroke-dasharray="0.62500000 1.2500000" fill-rule="evenodd" fill-opacity=".11037" rx="6.6372" transform="translate(10 1375.6)" height="105.78" width="151.47" stroke="#000" y=".32849" x="114.8" stroke-width=".625" fill="#00f"/>
<rect id="shapes-f03-pt.svgrect2130" ry="16.97" fill-rule="evenodd" fill-opacity=".75" rx="6.6372" transform="translate(10 1375.6)" height="63.106" width="82.83" stroke="#000" y=".32092" x="183.43" stroke-width=".625" fill="#ff0004"/>
<rect id="shapes-f03-pt.svgrect2757" ry="16.97" stroke-dasharray="0.62500000 1.2500000" fill-rule="evenodd" fill-opacity=".11037" rx="6.6371" transform="translate(10 1375.6)" height="55.115" width="60.756" stroke="#000" y=".33191" x="205.56" stroke-width=".625" fill="#00f"/>
<rect id="shapes-f03-pt.svgrect2759" ry="16.97" stroke-dasharray="0.62500000 1.2500000" fill-rule="evenodd" fill-opacity=".11037" rx="6.6372" transform="translate(10 1375.6)" height="149.52" width="47.954" stroke="#000" y=".33081" x="218.34" stroke-width=".625" fill="#00f"/>
<rect id="shapes-f03-pt.svgrect2758" ry="16.97" stroke-dasharray="0.62500000 1.2500000" fill-rule="evenodd" fill-opacity=".11037" rx="6.6371" transform="translate(10 1375.6)" height="28.79" width="38.352" stroke="#000" y=".31225" x="227.64" stroke-width=".625" fill="#00f"/>
<rect id="shapes-f03-pt.svgrect1911" ry="16.97" stroke-dasharray="0.62499992 1.2499998" fill-rule="evenodd" fill-opacity=".11037" rx="6.6371" transform="translate(10 1375.6)" height="41.087" width="229.82" stroke="#000" y=".35815" x="36.352" stroke-width="0.625" fill="#00f"/>
<rect id="d0e209" display="none" height="1e3px" width="288" y="1542.4" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e209"/>
</flowRegion>
<flowPara >Repare como o tamanho e a forma dos cantos arredondados são os mesmos em todos os retângulos, de tal maneira que os arredondamentos alinham-se exatamente no canto superior direito onde todos eles se encontram. Todos os retângulos azuis pontilhados foram obtidos a partir do retângulo vermelho original, apenas ampliando-o com a ferramenta de Selecionar, sem qualquer alteração manual das alças de arredondamento.</flowPara>
</flowRoot>
<rect id="d0e212" display="none" height="1e3px" width="288" y="1624" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e212"/>
</flowRegion>
<flowPara >Para uma comparação, eis de seguida a mesma composição mas agora criada com o mesmo botão "Ao redimensionar retângulos, redimensionar também o raio dos cantos arredondados" <flowSpan font-style="italic">ativado</flowSpan>:</flowPara>
</flowRoot>
<text id="shapes-f04-pt.svgtext3168" sodipodi:linespacing="140.00000%" transform="translate(10 1669.6)" line-height="140.00000%" font-size="5.9589" y="145.20508" x="37.091438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f04-pt.svgtspan3169" y="145.20508" x="37.091438" sodipodi:role="line">Dimensionando retângulos com cantos arredondados </tspan><tspan id="shapes-f04-pt.svgtspan3171" y="153.54750" x="37.091438" sodipodi:role="line">com "Dimensionar cantos arredondados em retângulos" ATIVADO</tspan><tspan id="shapes-f04-pt.svgtspan3173" y="161.88993" x="37.091438" sodipodi:role="line"/></text>
<rect id="shapes-f04-pt.svgrect2217" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width="0.625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="15.76" ry="16.984" width="196.68" height="63.16" stroke-dasharray="0.62499982 1.2499996" y=".40561" x="62.142"/>
<rect id="shapes-f04-pt.svgrect2218" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width="0.625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="15.76" ry="32.93" width="196.68" height="122.46" stroke-dasharray="0.62499984 1.2499996" y=".33054" x="62.142"/>
<rect id="shapes-f04-pt.svgrect2216" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width=".625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="12.157" ry="28.506" width="151.72" height="106.01" stroke-dasharray="0.62500000 1.2500000" y=".35556" x="107.19"/>
<rect id="shapes-f04-pt.svgrect1589" ry="16.97" fill-rule="evenodd" fill-opacity=".75" rx="6.6372" transform="translate(10 1669.6)" height="63.106" width="82.83" stroke="#000" y=".31943" x="176.34" stroke-width=".625" fill="#ff0004"/>
<rect id="shapes-f04-pt.svgrect2220" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width="0.625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="3.8557" ry="40.031" width="48.118" height="148.86" stroke-dasharray="0.62500035 1.2500006" y=".32016" x="210.94"/>
<rect id="shapes-f04-pt.svgrect2221" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width="0.625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="4.8443" ry="14.801" width="60.456" height="55.042" stroke-dasharray="0.62500014 1.2500003" y=".38217" x="198.64"/>
<rect id="shapes-f04-pt.svgrect2222" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width="0.625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="3.0813" ry="7.8653" width="38.454" height="29.249" stroke-dasharray="0.62499970 1.2499994" y=".31296" x="220.76"/>
<rect id="shapes-f04-pt.svgrect1912" fill-opacity=".11037" transform="translate(10 1669.6)" stroke="#000" stroke-width=".625" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="18.207" ry="11.527" width="227.21" height="42.865" stroke-dasharray="0.62499996 1.2499999" y=".31247" x="31.024"/>
<rect id="d0e228" display="none" height="1e3px" width="288" y="1836.4" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e228"/>
</flowRegion>
<flowPara >Agora os cantos arredondados estão tão diferentes quanto os retângulos aos quais pertencem, não havendo um mínimo encontro no canto superior direito (aproxime com a Lupa para ver). Este é o mesmo resultado (visível) que se obteria convertendo o retângulo original num caminho (<flowSpan font-weight="bold">Ctrl+Shift+C</flowSpan>) e alterando o seu tamanho como um caminho.</flowPara>
</flowRoot>
<rect id="d0e234" display="none" height="1e3px" width="288" y="1905.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e234"/>
</flowRegion>
<flowPara >As teclas de atalho para as alças de arredondamento de um retângulo são:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 1939.1)"/>
<rect id="d0e240" display="none" height="1e3px" width="258" y="1933.1" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e240"/>
</flowRegion>
<flowPara >Arrastar um alça com <flowSpan font-weight="bold">Ctrl</flowSpan> para igualar os raios (arredondamento circular, simétrico).</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 1967.1)"/>
<rect id="d0e247" display="none" height="1e3px" width="258" y="1961.1" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e247"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Ctrl+clique</flowSpan> na alça para igualar um raio ao outro sem arrastá-las.</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 1993.9)"/>
<rect id="d0e253" display="none" height="1e3px" width="258" y="1987.9" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e253"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Shift+clique</flowSpan> na alça para remover o arredondamento.</flowPara>
</flowRoot>
<rect id="d0e259" display="none" height="1e3px" width="288" y="2005.6" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e259"/>
</flowRegion>
<flowPara >Notar que a barra de Controlos da ferramenta Retângulo mostra os raios de arredondamento horizontal (<flowSpan font-style="italic">Rx</flowSpan>) e vertical (<flowSpan font-style="italic">Ry</flowSpan>) para o retângulo selecionado e permite configurá-los precisamente em qualquer unidade de medida. O botão <flowSpan font-family="sans-serif">Tornar cantos agudos</flowSpan> (o último) remove o arredondamento dos retângulos selecionados.</flowPara>
</flowRoot>
<rect id="d0e271" display="none" height="1e3px" width="288" y="2066.4" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e271"/>
</flowRegion>
<flowPara >Uma vantagem importante destes controlos é que eles podem afetar muitos retângulos de uma só vez. Por exemplo, para alterar todos os retângulos na camada, basta usar <flowSpan font-weight="bold">Ctrl+A</flowSpan> (<flowSpan font-family="sans-serif">Selecionar Tudo</flowSpan>) e configurar os parâmetros necessários na barra de Controlos da Ferramenta. Se houver algum objeto selecionado que não seja um retângulo, este será ignorado — apenas serão afetados os retângulos.</flowPara>
</flowRoot>
<rect id="d0e280" display="none" height="1e3px" width="288" y="2137.7" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowPara >Agora vamos ver as alças de redimensionamento de um retângulo. Podemos colocar a questão: qual a necessidade, se podemos simplesmente redimensionar o retângulo com a ferramenta de Selecionar?</flowPara>
</flowRoot>
<rect id="d0e283" display="none" height="1e3px" width="288" y="2186.2" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e283"/>
</flowRegion>
<flowPara >O problema com a ferramenta de Selecionar é que a sua noção de horizontal e vertical é sempre a mesma da página do documento. De forma diferente, uma alça de redimensionamento de um retângulo aumenta-o <flowSpan font-style="italic">ao longo dos seus lados</flowSpan>, mesmo que o retângulo seja rodado ou distorcido. Por exemplo, tente redimensionar este retângulo primeiro com a ferramenta de Selecionar e depois com as alças de redimensionamento da ferramenta Retângulo:</flowPara>
</flowRoot>
<rect id="shapes-f05-pt.svgrect2270" fill-opacity=".99666" transform="translate(10 2276.2) matrix(.69601 -.71803 -.95272 -.30385 0 0)" stroke="#000" stroke-width="1pt" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="5.8251" ry="3.8355" width="41.625" height="64.103" y="-179.49" x="7.7759"/>
<rect id="d0e299" display="none" height="1e3px" width="288" y="2336.6" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e299"/>
</flowRegion>
<flowPara >Uma vez que as alças de redimensionamento são 2, pode-se redimensionar o retângulo em qualquer direção ou mesmo movê-lo ao longo dos seus lados. Estas alças preservam sempre os raios de arredondamento.</flowPara>
</flowRoot>
<rect id="d0e302" display="none" height="1e3px" width="288" y="2384.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e302"/>
</flowRegion>
<flowPara >As teclas de atalho para as alças de redimensionamento são:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 2408.7)"/>
<rect id="d0e308" display="none" height="1e3px" width="258" y="2402.7" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e308"/>
</flowRegion>
<flowPara >Arrastar com <flowSpan font-weight="bold">Ctrl</flowSpan> para mover rapidamente para os lados ou na diagonal do retângulo. Em outras palavras, <flowSpan font-weight="bold">Ctrl</flowSpan> preserva ou a largura ou a altura ou a proporção largura/altura do retângulo (novamente, no seu próprio sistema de coordenadas que permite ser rodado ou distorcido).</flowPara>
</flowRoot>
<rect id="d0e318" display="none" height="1e3px" width="288" y="2463" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e318"/>
</flowRegion>
<flowPara >Aqui está o mesmo retângulo rodeado por linhas pontilhadas cinza indicando as direções para as quais se pode mover o retângulo quando arrastado com <flowSpan font-weight="bold">Ctrl</flowSpan> (tente agora):</flowPara>
</flowRoot>
<g id="shapes-f06-pt.svgg6992" transform="translate(10 341)" stroke="#cfcfcf" sodipodi:insensitive="true" fill="none">
<path id="shapes-f06-pt.svgpath6370" d="m200.86 2297.1l-80.74-126.8" sodipodi:nodetypes="cc" stroke-dasharray="1.7028247 1.7028247" stroke-width="1.7028"/>
<path id="shapes-f06-pt.svgpath6369" d="m148.58 2287.9l91.85-95.6" stroke-dasharray="1.7028245 1.7028245" stroke-width="1.7028"/>
<path id="shapes-f06-pt.svgpath6368" d="m79.483 2277.2l91.847-95.5" stroke-dasharray="1.7028245 1.7028245" stroke-width="1.7028"/>
<path id="shapes-f06-pt.svgpath6367" d="m54.316 2219.7l193.8 62.1" stroke-dasharray="1.7028220 1.7028220" stroke-width="1.7028"/>
<path id="shapes-f06-pt.svgpath5743" d="m77.695 2188.1l193.8 62.2" stroke-dasharray="1.7028220 1.7028220" stroke-width="1.7028"/>
</g>
<rect id="shapes-f06-pt.svgrect5742" fill-opacity=".99666" transform="translate(10 2510.5) matrix(.69601 -.71803 -.95272 -.30385 0 0)" stroke="#000" stroke-width="1pt" fill="#00f" style="color:#000000" fill-rule="evenodd" rx="5.825" ry="3.8355" width="41.625" height="64.103" y="-211.02" x="-35.379"/>
<flowRoot xml:space="preserve" id="shapes-f06-pt.svgflowRoot2609" transform="translate(10 2510.5)" font-size="6" font-family="sans-serif" fill="#000000"><flowRegion id="shapes-f06-pt.svgflowRegion2611"><rect id="shapes-f06-pt.svgrect2613" height="26.786" width="115" y="120.93" x="78.571"/></flowRegion><flowPara id="shapes-f06-pt.svgflowPara2615">Atração do retângulo - redimensionar alças com Ctrl</flowPara></flowRoot>
<rect id="d0e334" display="none" height="1e3px" width="288" y="2657" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e334"/>
</flowRegion>
<flowPara >Inclinando e rodando um retângulo, depois duplicando-o e redimensionando-o com as alças de redimensionamento, podem ser criadas facilmente composições 3D:</flowPara>
</flowRoot>
<rect id="shapes-f07-pt.svgrect3610" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="14.448" width="18.786" stroke="#fff" y="170.13" x="233.42" stroke-width=".39259" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3609" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="41.475" width="17.586" stroke="#fff" y="84.772" x="174.11" stroke-width=".39259" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3605" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99472 .10266 0 1 0 0)" height="15.283" width="57.99" stroke="#fff" y="37.3" x="116.36" stroke-width=".37599" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect2965" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99480 .10183 -.91351 .40681 0 0)" height="18.241" width="32.88" stroke="#fff" y="-2.9686" x="45.949" stroke-width=".375" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect2966" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="30.551" width="18.205" stroke="#fff" y="48.819" x="74.597" stroke-width="0.375" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3596" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99472 .10266 0 1 0 0)" height="30.543" width="32.942" stroke="#fff" y="12.017" x="27.846" stroke-width=".375" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3597" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99480 .10183 -.91351 .40681 0 0)" height="18.241" width="72.439" stroke="#fff" y="56.339" x="185.25" stroke-width=".53154" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3598" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="14.448" width="41.99" stroke="#fff" y="141.29" x="182.59" stroke-width=".39259" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3599" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99480 .10183 -.91351 .40681 0 0)" height="18.241" width="25.786" stroke="#fff" y="86.052" x="284.9" stroke-width=".53154" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3600" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99472 .10266 0 1 0 0)" height="30.543" width="25.67" stroke="#fff" y="52.214" x="189.23" stroke-width=".37599" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3601" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99472 .10266 0 1 0 0)" height="34.392" width="11.664" stroke="#fff" y="-6.5882" x="194.35" stroke-width=".37599" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3602" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="49.333" width="17.911" stroke="#fff" y="106.61" x="224.88" stroke-width=".39259" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3603" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99480 .10183 -.91351 .40681 0 0)" height="23.517" width="25.707" stroke="#fff" y="74.723" x="232.12" stroke-width=".53154" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3604" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99472 .10266 0 1 0 0)" height="45.515" width="25.67" stroke="#fff" y="49.235" x="141.66" stroke-width=".37599" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3606" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99480 .10183 -.91351 .40681 0 0)" height="31.882" width="11.598" stroke="#fff" y="-45.157" x="182.24" stroke-width=".53154" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3607" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="45.788" width="23.587" stroke="#fff" y="141.29" x="182.59" stroke-width=".39259" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3608" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99472 .10266 0 1 0 0)" height="30.543" width="25.67" stroke="#fff" y="-2.7308" x="133.79" stroke-width=".37599" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3611" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="30.657" width="9.7845" stroke="#fff" y="170.05" x="234.5" stroke-width=".39259" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect3612" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.99480 .10183 -.91351 .40681 0 0)" height="18.241" width="25.212" stroke="#fff" y="-24.113" x="128.84" stroke-width=".53154" fill="#ff6300"/>
<rect id="shapes-f07-pt.svgrect1913" style="color:#000000" fill-rule="evenodd" transform="translate(10 2704.3) matrix(.91237 -.40937 0 1 0 0)" height="20.233" width="31.198" stroke="#fff" y="106.61" x="224.88" stroke-width=".39259" fill="#ff6300"/>
<flowRoot xml:space="preserve" id="shapes-f07-pt.svgflowRoot2632" style="text-anchor:middle;text-align:center" transform="translate(8 2694.3)" font-size="6px" font-family="sans-serif" fill="#000000"><flowRegion id="shapes-f07-pt.svgflowRegion2634"><rect id="shapes-f07-pt.svgrect2636" height="43.571" width="61.786" y="61.648" x="27.5"/></flowRegion><flowPara id="shapes-f07-pt.svgflowPara2638">3 retângulos originais</flowPara></flowRoot>
<flowRoot xml:space="preserve" id="shapes-f07-pt.svgflowRoot2640" transform="translate(10 2704.3)" font-size="6" font-family="sans-serif" fill="#000000"><flowRegion id="shapes-f07-pt.svgflowRegion2642"><rect id="shapes-f07-pt.svgrect2644" height="90.357" width="56.786" y="12.005" x="241.07"/></flowRegion><flowPara id="shapes-f07-pt.svgflowPara2646">Vários retângulos copiados e redimensionados pelas alças, a maioria com Ctrl</flowPara></flowRoot>
<rect id="d0e347" display="none" height="1e3px" width="288" y="2828.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e347"/>
</flowRegion>
<flowPara >Aqui estão alguns exemplos adicionais de composições de retângulos, incluindo arredondamentos e preenchimento com gradientes:</flowPara>
</flowRoot>
<defs id="shapes-f08-pt.svgdefs3">
<linearGradient id="shapes-f08-pt.svglinearGradient2343">
<stop id="shapes-f08-pt.svgstop2344" stop-color="#1c3e8b" offset="0"/>
<stop id="shapes-f08-pt.svgstop2345" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4147" y2="3040.9" xlink:href="#shapes-f08-pt.svglinearGradient2343" gradientUnits="userSpaceOnUse" y1="3040.9" gradientTransform="matrix(.57632 -3.0007e-7 -2.1401e-8 .43379 -1180.9 -1144.8)" x2="2679.7" x1="2642.4" inkscape:collect="always"/>
<linearGradient id="shapes-f08-pt.svglinearGradient4150" y2="2983.1" gradientUnits="userSpaceOnUse" y1="2983.1" gradientTransform="matrix(.52552 -2.7362e-7 -2.347e-8 .47572 -1169.7 -1125)" x2="3164.1" x1="3063.7" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2352" stop-color="#1c3e8b" offset="0"/>
<stop id="shapes-f08-pt.svgstop2353" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4153" y2="3040.9" xlink:href="#shapes-f08-pt.svglinearGradient2343" gradientUnits="userSpaceOnUse" y1="3040.9" gradientTransform="matrix(.57632 -3.0007e-7 -2.1401e-8 .43379 -1151 -1104.4)" x2="2679.7" x1="2642.4" inkscape:collect="always"/>
<linearGradient id="shapes-f08-pt.svglinearGradient4156" y2="2637.3" gradientUnits="userSpaceOnUse" y1="2637.3" gradientTransform="matrix(.48467 -2.5235e-7 -2.5448e-8 .51582 -1151 -1104.4)" x2="3327.6" x1="3268.3" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2348" stop-color="#1c3e8b" offset="0"/>
<stop id="shapes-f08-pt.svgstop2349" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4159" y2="3355.9" gradientUnits="userSpaceOnUse" y1="3355.9" gradientTransform="matrix(.57329 -2.985e-7 -2.1514e-8 .43608 -1182 -1081.5)" x2="2930.7" x1="2820" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2356" stop-color="#1c3e8b" offset="0"/>
<stop id="shapes-f08-pt.svgstop2357" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4162" y2="2131.1" gradientUnits="userSpaceOnUse" y1="2131.1" gradientTransform="matrix(.36798 -1.9159e-7 -3.3518e-8 .67940 -1050.3 -1010.3)" x2="4643.3" x1="4567" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2360" stop-color="#1c3e8b" offset="0"/>
<stop id="shapes-f08-pt.svgstop2361" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4165" y2="2797.5" gradientUnits="userSpaceOnUse" y1="2797.5" gradientTransform="matrix(.47122 -2.4535e-7 -2.6174e-8 .53054 -1151 -1104.4)" x2="3752.3" x1="3510.8" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2364" stop-color="#1c3e8b" offset="0"/>
<stop id="shapes-f08-pt.svgstop2365" stop-color="#1c3e8b" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4168" y2="-405.69" gradientUnits="userSpaceOnUse" y1="-405.69" gradientTransform="matrix(.17002 -9.0491e-8 1.7889e-7 .38707 -556.01 144.29)" x2="1847.3" x1="1751" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2290" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2291" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4171" y2="-613.84" gradientUnits="userSpaceOnUse" y1="-613.84" gradientTransform="matrix(.21205 -1.1286e-7 1.4343e-7 .31034 -556.01 144.29)" x2="1468.1" x1="1403.7" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2294" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2295" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4174" y2="-913.09" gradientUnits="userSpaceOnUse" y1="-913.09" gradientTransform="matrix(.33702 -1.7938e-7 9.0243e-8 .19526 -556.01 144.29)" x2="1034.5" x1="902.99" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2298" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2299" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4177" y2="-699.84" gradientUnits="userSpaceOnUse" y1="-699.84" gradientTransform="matrix(.24763 -1.318e-7 1.2282e-7 .26575 -556.01 144.29)" x2="1520.1" x1="1457" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2302" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2303" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4180" y2="-754.11" gradientUnits="userSpaceOnUse" y1="-754.11" gradientTransform="matrix(.21205 -1.1286e-7 1.4343e-7 .31034 -556.01 144.29)" x2="1699" x1="1634.6" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2306" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2307" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4183" y2="-506.86" gradientUnits="userSpaceOnUse" y1="-506.86" gradientTransform="matrix(.15910 -8.4678e-8 1.9117e-7 .41364 -556.01 144.29)" x2="2318.4" x1="2203.9" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2310" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2311" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4186" y2="-923.98" gradientUnits="userSpaceOnUse" y1="-923.98" gradientTransform="matrix(.30791 -1.6388e-7 9.8776e-8 .21372 -556.01 144.29)" x2="1197.9" x1="1090.1" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2314" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2315" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4189" y2="-750.32" gradientUnits="userSpaceOnUse" y1="-750.32" gradientTransform="matrix(.26501 -1.4105e-7 1.1477e-7 .24832 -556.01 144.29)" x2="1343" x1="1237" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2318" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2319" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="shapes-f08-pt.svglinearGradient4192" y2="-406.24" gradientUnits="userSpaceOnUse" y1="-406.24" gradientTransform="matrix(.14897 -7.9288e-8 2.0416e-7 .44176 -556.01 144.29)" x2="2389.1" x1="2298.4" inkscape:collect="always">
<stop id="shapes-f08-pt.svgstop2322" stop-color="#e08f0d" offset="0"/>
<stop id="shapes-f08-pt.svgstop2323" stop-color="#e08f0d" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<rect id="shapes-f08-pt.svgrect1001" opacity=".27541" ry="7.9254" style="color:#000000" fill-rule="evenodd" rx="7.9946" transform="translate(10 2865.7) matrix(.98329 .18206 -.62938 .77709 0 0)" height="42.484" width="14.215" y="24.73" x="52.983" fill="#1c768b"/>
<rect id="shapes-f08-pt.svgrect1002" opacity=".27541" ry="7.9254" style="color:#000000" fill-rule="evenodd" rx="6.9707" transform="translate(10 2865.7) matrix(.98329 .18206 -.62938 .77709 0 0)" height="83.705" width="13.941" y="9.1277" x="73.67" fill="#1c768b"/>
<rect id="shapes-f08-pt.svgrect1003" opacity=".27541" ry="7.9254" style="color:#000000" fill-rule="evenodd" rx="7.9946" transform="translate(10 2865.7) matrix(.98329 .18206 -.62938 .77709 0 0)" height="90.342" width="15.751" y="-22.943" x="94.022" fill="#1c768b"/>
<rect id="shapes-f08-pt.svgrect1004" opacity=".27541" ry="7.9254" style="color:#000000" fill-rule="evenodd" rx="7.9946" transform="translate(10 2865.7) matrix(.98329 .18206 -.62938 .77709 0 0)" height="69.735" width="15.688" y="-2.3354" x="116.44" fill="#1c768b"/>
<rect id="shapes-f08-pt.svgrect1005" opacity=".27541" ry="7.9131" style="color:#000000" fill-rule="evenodd" rx="7.9959" transform="translate(10 2865.7) matrix(.59704 -.80221 -.98591 -.16727 0 0)" height="87.653" width="12.887" y="-135.39" x="-63.5" fill="#1c768b"/>
<rect id="shapes-f08-pt.svgrect1006" opacity=".27541" ry="7.9131" style="color:#000000" fill-rule="evenodd" rx="7.9959" transform="translate(10 2865.7) matrix(.59704 -.80221 -.98591 -.16727 0 0)" height="87.653" width="13.113" y="-135.39" x="-42.204" fill="#1c768b"/>
<rect id="shapes-f08-pt.svgrect1628" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="39.812" width="13.271" stroke="#000" y="-55.075" x="-213.5" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4192)"/>
<rect id="shapes-f08-pt.svgrect1629" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="26.084" width="27.843" stroke="#000" y="-55.075" x="-228.07" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4189)"/>
<rect id="shapes-f08-pt.svgrect1630" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="22.814" width="32.956" stroke="#000" y="-64.596" x="-220.23" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4186)"/>
<rect id="shapes-f08-pt.svgrect1631" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="47.164" width="17.997" stroke="#000" y="-88.945" x="-205.27" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4183)"/>
<rect id="shapes-f08-pt.svgrect1632" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="19.767" width="13.428" stroke="#000" y="-99.625" x="-209.28" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4180)"/>
<rect id="shapes-f08-pt.svgrect1633" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="16.538" width="15.387" stroke="#000" y="-49.959" x="-195.09" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4177)"/>
<rect id="shapes-f08-pt.svgrect1634" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="25.458" width="44.091" stroke="#000" y="-46.73" x="-251.57" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4174)"/>
<rect id="shapes-f08-pt.svgrect1635" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="19.767" width="13.428" stroke="#000" y="-56.094" x="-258.25" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4171)"/>
<rect id="shapes-f08-pt.svgrect2258" style="color:#000000" fill-rule="evenodd" transform="translate(10 2865.7) matrix(-.99987 -.016153 -.76041 -.64945 0 0)" height="37.026" width="35.989" stroke="#000" y="-31.251" x="-278.05" stroke-width=".39935" fill="url(#shapes-f08-pt.svglinearGradient4168)"/>
<rect id="shapes-f08-pt.svgrect2260" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97177" fill="url(#shapes-f08-pt.svglinearGradient4165)" style="color:#000000" fill-rule="evenodd" rx="13.386" ry="7.8878" width="113.32" height="127.64" y="316.07" x="503.61"/>
<rect id="shapes-f08-pt.svgrect2261" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97176" fill="url(#shapes-f08-pt.svglinearGradient4162)" style="color:#000000" fill-rule="evenodd" rx="12.531" ry="7.8879" width="27.59" height="51.349" y="411.96" x="630.53"/>
<rect id="shapes-f08-pt.svgrect2262" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97177" fill="url(#shapes-f08-pt.svglinearGradient4159)" style="color:#000000" fill-rule="evenodd" rx="9.9614" ry="17.916" width="33.88" height="64.786" y="357.18" x="458.08"/>
<rect id="shapes-f08-pt.svgrect2263" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97176" fill="url(#shapes-f08-pt.svglinearGradient4156)" style="color:#000000" fill-rule="evenodd" rx="12.637" ry="7.8879" width="28.248" height="30.095" y="241.03" x="433.29"/>
<rect id="shapes-f08-pt.svgrect2264" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97176" fill="url(#shapes-f08-pt.svglinearGradient4153)" style="color:#000000" fill-rule="evenodd" rx="10.937" ry="7.8879" width="21.022" height="15.702" y="206.94" x="372.11"/>
<rect id="shapes-f08-pt.svgrect2259" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97176" fill="url(#shapes-f08-pt.svglinearGradient4150)" style="color:#000000" fill-rule="evenodd" rx="13.386" ry="7.8879" width="52.249" height="47.25" y="270.51" x="440.64"/>
<rect id="shapes-f08-pt.svgrect5740" transform="translate(10 2865.7) matrix(.99447 .10504 -.99521 .097739 0 0)" stroke="#000" stroke-width=".97176" fill="url(#shapes-f08-pt.svglinearGradient4147)" style="color:#000000" fill-rule="evenodd" rx="4.8633" ry="5.0297" width="9.8364" height="11.479" y="170.7" x="353.52"/>
<text style="writing-mode:lr" font-weight="bold" font-size="8" y="3004.3803094" x="10" font-family="sans-serif" fill="#000000">
<tspan y="3004.3803094" x="10">Círculos e Elipses</tspan>
</text>
<rect id="d0e366" display="none" height="1e3px" width="288" y="3009.6" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e366"/>
</flowRegion>
<flowPara >A ferramenta Círculo (<flowSpan font-weight="bold">F5</flowSpan>) permite criar elipses e círculos, os quais se podem transformar em segmentos ou arcos destes. As teclas de atalho de desenho de círculos são as mesmas que as da ferramenta Retângulo:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 3065.7)"/>
<rect id="d0e375" display="none" height="1e3px" width="258" y="3059.7" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e375"/>
</flowRegion>
<flowPara >Com <flowSpan font-weight="bold">Ctrl</flowSpan>, cria-se um círculo ou uma elipse de proporção inteira (2:1, 3:1, etc.).</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 3094)"/>
<rect id="d0e382" display="none" height="1e3px" width="258" y="3088" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e382"/>
</flowRegion>
<flowPara >Com <flowSpan font-weight="bold">Shift</flowSpan>, desenha tendo como ponto de partida o centro.</flowPara>
</flowRoot>
<rect id="d0e389" display="none" height="1e3px" width="288" y="3105.7" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e389"/>
</flowRegion>
<flowPara >Vamos explorar agora as alças de uma elipse. Selecione a seguinte:</flowPara>
</flowRoot>
<path id="shapes-f09-pt.svgpath1932" sodipodi:rx="54.031982" sodipodi:ry="30.248674" fill-opacity=".99666" stroke="#000" stroke-width="1.25" fill="#ff000b" style="color:#000000" fill-rule="evenodd" transform="translate(-6.962 222)" 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" sodipodi:cy="2940.5042" sodipodi:cx="167.17587"/>
<rect id="d0e402" display="none" height="1e3px" width="288" y="3205.3" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e402"/>
</flowRegion>
<flowPara >Mais uma vez, pode-se ver 3 alças inicialmente, mas na verdade são 4. A alça localizada mais à direita em cima é composta por 2 alças que se sobrepõem e que permitem "abrir" a elipse. Arraste esta alça, depois arraste a outra alça que ficou visível para obter uma variedade de segmentos em forma de rodela de queijo ou arcos:</flowPara>
</flowRoot>
<path id="shapes-f10-pt.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-opacity=".75" fill="#f00" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 13.336 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width=".79606pt" sodipodi:end="5.4977871" sodipodi:start="0.0000000"/>
<path id="shapes-f10-pt.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-opacity=".75" fill="#f00" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 77.095 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width=".79606pt" sodipodi:end="2.4413969" sodipodi:start="0.0000000"/>
<path id="shapes-f10-pt.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-opacity=".75" sodipodi:open="true" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 145.37 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" fill="#f00" stroke-width=".79606pt" sodipodi:end="4.9855409" sodipodi:start="0.0000000"/>
<path id="shapes-f10-pt.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-opacity=".75" sodipodi:open="true" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 207.7 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" fill="#f00" stroke-width=".79606pt" sodipodi:end="2.6599349" sodipodi:start="0.0000000"/>
<path id="shapes-f10-pt.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-opacity=".75" fill="#f00" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 77.095 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width=".79606pt" sodipodi:end="4.3580459" sodipodi:start="3.9052122"/>
<path id="shapes-f10-pt.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-opacity=".75" sodipodi:open="true" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 207.7 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" fill="#f00" stroke-width=".79606pt" sodipodi:end="5.9880333" sodipodi:start="3.5874838"/>
<path id="shapes-f10-pt.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-opacity=".75" fill="#f00" fill-rule="evenodd" transform="translate(10 3273.9) matrix(1.306 0 0 0.597 77.095 -1619.4)" stroke="#000" sodipodi:cy="2742.9695" sodipodi:cx="29.049295" stroke-width=".79606pt" sodipodi:end="5.9203236" sodipodi:start="4.6447262"/>
<rect id="d0e415" display="none" height="1e3px" width="288" y="3321.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e415"/>
</flowRegion>
<flowPara >Para obter um <flowSpan font-style="italic">segmento</flowSpan> (um arco fechado com 2 raios), arraste <flowSpan font-style="italic">para fora</flowSpan> da elipse; para criar apenas um <flowSpan font-style="italic">arco</flowSpan>, arraste <flowSpan font-style="italic">para dentro</flowSpan> dela. Acima, existem 4 segmentos à esquerda e 3 arcos à direita. Notar que os arcos são formas abertas, ou seja, o traço apenas avança através da elipse mas não liga as extremidades do arco. Pode-se tornar isto óbvio removendo-se o preenchimento, deixando apenas o traço:</flowPara>
</flowRoot>
<g id="shapes-f11-pt.svgg4447" sodipodi:insensitive="true" transform="translate(10 196.9)">
<path id="shapes-f11-pt.svgpath3194" d="m78.137 3274.7l-47.158-27" sodipodi:nodetypes="cc" stroke="#d3d3d3" stroke-width=".25pt" fill="none"/>
<path id="shapes-f11-pt.svgpath3195" d="m82.405 3271.7l-40.649-39.7" sodipodi:nodetypes="cc" stroke="#d3d3d3" stroke-width=".25pt" fill="none"/>
<path id="shapes-f11-pt.svgpath3196" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#d3d3d3" stroke-width=".64783" sodipodi:end="3.9269908" fill="none" style="color:#000000" sodipodi:start="3.6651914" transform="matrix(1.1577 0 0 1.1577 21.522 -466.22)" sodipodi:type="arc" d="m11.441 3210a59.578 58.56 0 0 1 9.468 -12.1" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<text id="shapes-f11-pt.svgtext3818" sodipodi:linespacing="120.00000%" transform="matrix(.70939 0 0 .70939 10.286 1617.1)" line-height="120.00000%" font-size="8.4" y="2279.1907" x="30.19973" font-family="sans-serif" fill="#d3d3d3"><tspan id="shapes-f11-pt.svgtspan3819" y="2279.1907" x="30.199730" sodipodi:role="line"/><tspan id="shapes-f11-pt.svgtspan3821" fill="#d3d3d3"/><tspan id="shapes-f11-pt.svgtspan3823" sodipodi:role="line" dx="0 -0.23659326" dy="0 0" y="2289.2707" x="30.199730">15</tspan></text>
<path id="shapes-f11-pt.svgpath3825" sodipodi:rx="0.89163345" sodipodi:ry="0.89163345" style="color:#000000" sodipodi:type="arc" d="m41.375 3238a0.89163 0.89163 0 1 1 -1.783 0 0.89163 0.89163 0 1 1 1.783 0z" transform="matrix(.88208 0 0 .88208 4.5191 381.48)" stroke="#d3d3d3" sodipodi:cy="3237.9563" sodipodi:cx="40.483158" stroke-width=".48604" fill="none"/>
</g>
<text id="shapes-f11-pt.svgtext3883" sodipodi:linespacing="120.00000%" transform="translate(10 3400.8)" line-height="120.00000%" font-size="5.9589" y="4.4230723" x="61.438835" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f11-pt.svgtspan3884" y="4.4230723" x="61.438835" sodipodi:role="line">Segmentos</tspan><tspan id="shapes-f11-pt.svgtspan3893" y="11.573723" x="61.438835" sodipodi:role="line"/></text>
<text id="shapes-f11-pt.svgtext3888" sodipodi:linespacing="120.00000%" transform="translate(10 3400.8)" line-height="120.00000%" font-size="5.9589" y="-2.6629279" x="224.43098" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f11-pt.svgtspan3889" y="-2.6629279" x="224.43098" sodipodi:role="line"/><tspan id="shapes-f11-pt.svgtspan3891" y="4.4877232" x="224.43098" sodipodi:role="line">Arcos</tspan></text>
<path id="shapes-f11-pt.svgpath3234" sodipodi:rx="30.710485" sodipodi:ry="10.852578" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m42.591 3247.4a30.71 10.853 0 1 1 42.162 -15.8l-21.716 7.7z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3856" sodipodi:rx="30.710485" sodipodi:ry="30.962814" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m42.591 3262.4a30.71 30.963 0 1 1 42.162 -45l-21.716 21.9z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3857" sodipodi:rx="30.710485" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m42.591 3283a30.71 58.56 0 1 1 42.162 -85.1l-21.716 41.4z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3858" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.1554016" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -19.906 -44.5l59.572 0.8z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3859" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.6651914" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -11.93 -73l51.596 29.3z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3860" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.9269908" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -2.462 -85.1l42.128 41.4z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3861" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="4.1887902" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 9.877 -94.4l29.789 50.7z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3862" sodipodi:rx="15.141271" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="4.1887902" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m52.957 3283a15.141 58.56 0 0 1 2.51 -94.4l7.57 50.7z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3864" sodipodi:rx="75.147621" sodipodi:ry="10.852578" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m13.005 3247.4a75.148 10.853 0 1 1 103.16 -15.8l-53.123 7.7z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3865" sodipodi:rx="30.710485" sodipodi:ry="10.852578" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m42.591 3247.4a30.71 10.853 0 1 1 42.162 -15.8" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3866" sodipodi:rx="30.710485" sodipodi:ry="30.962814" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m42.591 3262.4a30.71 30.963 0 1 1 42.162 -45" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3867" sodipodi:rx="30.710485" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m42.591 3283a30.71 58.56 0 1 1 42.162 -85.1" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3868" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.1554016" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -19.906 -44.5" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3869" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.6651914" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -11.93 -73" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3870" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.9269908" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -2.462 -85.1" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3871" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="4.1887902" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 9.877 -94.4" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3872" sodipodi:rx="15.141271" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="4.1887902" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m52.957 3283a15.141 58.56 0 0 1 2.51 -94.4" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3873" sodipodi:rx="75.147621" sodipodi:ry="10.852578" stroke="#000" stroke-width=".75" sodipodi:end="5.4977871" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(182.89 241.5)" sodipodi:type="arc" d="m13.005 3247.4a75.148 10.853 0 1 1 103.16 -15.8" sodipodi:open="true" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<path id="shapes-f11-pt.svgpath3925" sodipodi:rx="59.578407" sodipodi:ry="58.560177" stroke="#000" stroke-width=".75" sodipodi:end="3.4033920" fill="none" style="color:#000000" sodipodi:start="2.2993372" transform="translate(41.469 241.5)" sodipodi:type="arc" d="m23.371 3283a59.578 58.56 0 0 1 -17.882 -58.9l57.548 15.2z" sodipodi:cy="3239.2964" sodipodi:cx="63.037315"/>
<rect id="d0e440" display="none" height="1e3px" width="288" y="3538" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e440"/>
</flowRegion>
<flowPara >Observe o grupo de segmentos estreitos em forma de leque à esquerda. Foi fácil criá-los usando o <flowSpan font-style="italic">atração ao ângulo</flowSpan> da alça com <flowSpan font-weight="bold">Ctrl</flowSpan>. As teclas de atalho de arcos/segmentos são:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 3583.5)"/>
<rect id="d0e452" display="none" height="1e3px" width="258" y="3577.5" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e452"/>
</flowRegion>
<flowPara >Com <flowSpan font-weight="bold">Ctrl</flowSpan>, atrai ao ângulo a cada 15 graus ao arrastar.</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 3601.6)"/>
<rect id="d0e459" display="none" height="1e3px" width="258" y="3595.6" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e459"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Shift+clique</flowSpan> para completar a elipse (não um arco nem segmento).</flowPara>
</flowRoot>
<rect id="d0e465" display="none" height="1e3px" width="288" y="3624.3" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e465"/>
</flowRegion>
<flowPara >A atração ao ângulo pode ser alterada nas Preferências do Inkscape (em <flowSpan font-family="sans-serif">Comportamento > Passos</flowSpan>).</flowPara>
</flowRoot>
<rect id="d0e471" display="none" height="1e3px" width="288" y="3653" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e471"/>
</flowRegion>
<flowPara >As outras 2 alças da elipse são usadas para redimensioná-la ao redor do centro. As teclas de atalho são similares às das alças de arredondamento de um retângulo:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 3698.4)"/>
<rect id="d0e477" display="none" height="1e3px" width="258" y="3692.4" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e477"/>
</flowRegion>
<flowPara >Arrastar com <flowSpan font-weight="bold">Ctrl</flowSpan> para fazer um círculo (iguala os 2 raios).</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 3716.6)"/>
<rect id="d0e484" display="none" height="1e3px" width="258" y="3710.6" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e484"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Ctrl+clique</flowSpan> para fazer um círculo sem arrastar.</flowPara>
</flowRoot>
<rect id="d0e490" display="none" height="1e3px" width="288" y="3728.7" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e490"/>
</flowRegion>
<flowPara >E tal como as alças de redimensionamento do retângulo, estas alças da elipse ajustam a altura e largura da elipse nas <flowSpan font-style="italic">suas próprias coordenadas</flowSpan>. Isto significa que uma elipse rodada ou distorcida pode ser facilmente esticada ou comprimida ao longo de seus eixos originais enquanto permanece rodada ou distorcida. Tente redimensionar qualquer uma destas elipses através das alças de redimensionamento:</flowPara>
</flowRoot>
<path id="shapes-f12-pt.svgpath2133" sodipodi:rx="43.680855" sodipodi:ry="7.3592744" fill-opacity=".14716" stroke="#000" stroke-width=".75" fill="#ffd300" style="color:#000000" fill-rule="evenodd" transform="translate(10 3817) matrix(1.2719 .56475 -.78871 .43604 2855.3 -1599.1)" 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" sodipodi:cy="3607.9023" sodipodi:cx="107.30297"/>
<path id="shapes-f12-pt.svgpath2136" sodipodi:rx="58.547005" sodipodi:ry="13.607653" fill-opacity=".14716" stroke="#000" stroke-width=".75" fill="#ffd300" style="color:#000000" fill-rule="evenodd" transform="translate(10 3817) matrix(1.2719 .56475 -.78871 .43604 2855.3 -1599.1)" 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" sodipodi:cy="3607.9023" sodipodi:cx="107.30297"/>
<path id="shapes-f12-pt.svgpath3396" sodipodi:rx="37.951244" sodipodi:ry="61.554367" fill-opacity=".14716" stroke="#000" stroke-width=".75" fill="#ffd300" style="color:#000000" fill-rule="evenodd" transform="translate(10 3817) matrix(1.2719 .56475 -.78871 .43604 2855.3 -1599.1)" 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" sodipodi:cy="3607.9023" sodipodi:cx="107.30297"/>
<path id="shapes-f12-pt.svgpath2135" sodipodi:rx="23.418211" sodipodi:ry="25.328613" fill-opacity=".14716" stroke="#000" stroke-width=".75" fill="#ffd300" style="color:#000000" fill-rule="evenodd" transform="translate(10 3817) matrix(1.2719 .56475 -.78871 .43604 2855.3 -1599.1)" 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" sodipodi:cy="3607.9023" sodipodi:cx="107.30297"/>
<path id="shapes-f12-pt.svgpath2774" sodipodi:rx="4.9275141" sodipodi:ry="46.998589" fill-opacity=".14716" stroke="#000" stroke-width=".75" fill="#ffd300" style="color:#000000" fill-rule="evenodd" transform="translate(10 3817) matrix(1.2719 .56475 -.78871 .43604 2855.3 -1599.1)" 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" sodipodi:cy="3607.9023" sodipodi:cx="107.30297"/>
<path id="shapes-f12-pt.svgpath2134" sodipodi:rx="23.418211" sodipodi:ry="7.3592744" fill-opacity=".14716" stroke="#000" stroke-width=".75" fill="#ffd300" style="color:#000000" fill-rule="evenodd" transform="translate(10 3817) matrix(1.2719 .56475 -.78871 .43604 2855.3 -1599.1)" 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" sodipodi:cy="3607.9023" sodipodi:cx="107.30297"/>
<text style="writing-mode:lr" font-weight="bold" font-size="8" y="3911.0436250999996" x="10" font-family="sans-serif" fill="#000000">
<tspan y="3911.0436250999996" x="10">Polígonos e Estrelas</tspan>
</text>
<rect id="d0e512" display="none" height="1e3px" width="288" y="3916.2" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e512"/>
</flowRegion>
<flowPara >OS polígonos e as estrelas são as formas geométricas mais complexas do Inkscape. Se quiser impressionar seus amigos com o Inkscape, deixe-os brincar com esta ferramenta. É divertido — na verdade é viciante!</flowPara>
</flowRoot>
<rect id="d0e515" display="none" height="1e3px" width="288" y="3964.7" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e515"/>
</flowRegion>
<flowPara >A ferramenta Polígonos pode criar 2 objetos similares mas de diferentes tipos: polígonos e estrelas. Uma estrela tem 2 alças cujas posições definem a extensão e forma das suas pontas; um polígono tem apenas 1 alça que simplesmente roda e redimensiona-o quando é arrastada:</flowPara>
</flowRoot>
<g id="shapes-f13-pt.svgg2711" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10 4031.7)">
<path id="shapes-f13-pt.svgpath2190" sodipodi:sides="5" inkscape:flatsided="false" stroke="#000" stroke-width=".98589" fill="#fff100" style="color:#000000" fill-rule="evenodd" transform="matrix(.67263 .35535 -.35535 .67263 1407.5 -2577.2)" inkscape:rounded="0.0000000" 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" inkscape:randomized="0.0000000" sodipodi:cy="3855.0315" sodipodi:cx="73.117950"/>
<flowRoot xml:space="preserve" id="shapes-f13-pt.svgflowRoot2695" style="text-anchor:middle;text-align:center" transform="translate(-1.825)" font-size="6px" font-family="sans-serif" fill="#000000"><flowRegion id="shapes-f13-pt.svgflowRegion2697"><rect id="shapes-f13-pt.svgrect2699" height="15" width="57.5" y="-.13782" x="59.643"/></flowRegion><flowPara id="shapes-f13-pt.svgflowPara2701">Estrela</flowPara></flowRoot>
</g>
<g id="shapes-f13-pt.svgg2718" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10 4031.7)">
<path id="shapes-f13-pt.svgpath2191" sodipodi:sides="5" inkscape:flatsided="true" stroke="#000" stroke-width=".98589" fill="#fff100" style="color:#000000" fill-rule="evenodd" transform="matrix(.67263 .35535 -.35535 .67263 1513.8 -2577.2)" inkscape:rounded="0.0000000" 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" inkscape:randomized="0.0000000" sodipodi:cy="3855.0315" sodipodi:cx="73.117950"/>
<flowRoot xml:space="preserve" id="shapes-f13-pt.svgflowRoot2703" style="text-anchor:middle;text-align:center" transform="translate(104.63 -.59495)" font-size="6px" font-family="sans-serif" fill="#000000"><flowRegion id="shapes-f13-pt.svgflowRegion2705"><rect id="shapes-f13-pt.svgrect2707" height="15" width="57.5" y="-.13782" x="59.643"/></flowRegion><flowPara id="shapes-f13-pt.svgflowPara2709">Polígono</flowPara></flowRoot>
</g>
<rect id="d0e528" display="none" height="1e3px" width="288" y="4110" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e528"/>
</flowRegion>
<flowPara >Na barra de Controlos da ferramenta Polígonos, primeiro aparecem 2 botões para transformar uma estrela num polígono e vice-versa. Depois, um campo numérico onde se configura o <flowSpan font-style="italic">número de cantos</flowSpan> de uma estrela ou polígono. Este parâmetro é apenas editável através da barra de Controlos da Ferramenta e pode variar de 3 a 1024, mas não se deve aplicar um número alto (por exemplo, acima de 200) se o computador for lento.</flowPara>
</flowRoot>
<rect id="d0e534" display="none" height="1e3px" width="288" y="4191.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e534"/>
</flowRegion>
<flowPara >Ao desenhar uma nova estrela ou polígono,</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 4216)"/>
<rect id="d0e540" display="none" height="1e3px" width="258" y="4210" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e540"/>
</flowRegion>
<flowPara >Arraste com <flowSpan font-weight="bold">Ctrl</flowSpan> para atrair ao ângulo em incrementos de 15 graus.</flowPara>
</flowRoot>
<rect id="d0e547" display="none" height="1e3px" width="288" y="4238.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e547"/>
</flowRegion>
<flowPara >Naturalmente, uma estrela é uma forma muito mais interessante (embora os polígonos sejam mais úteis na prática). As 2 alças de uma estrela têm funções ligeiramente diferentes. A primeira alça (inicialmente localizada em 1 vértice, ou seja, num canto <flowSpan font-style="italic">convexo</flowSpan> da estrela) diminui ou aumenta os raios da estrela, mas quando se roda com esta alça (relativamente ao centro da forma), a outra alça roda em conformidade com esta. Isto significa que não se pode distorcer os raios da estrela com esta alça.</flowPara>
</flowRoot>
<rect id="d0e553" display="none" height="1e3px" width="288" y="4331.3" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e553"/>
</flowRegion>
<flowPara >A outra alça (inicialmente localizada num canto <flowSpan font-style="italic">côncavo</flowSpan> entre 2 cantos) é, por outro lado, livre para se mover tanto radialmente quanto tangencialmente, sem afetar a alça do canto. Na verdade, esta alça pode se tornar por si própria um canto movendo-a para mais longe do centro que a outra alça. Esta sim é a alça que pode distorcer as pontas das estrelas para obter todos os tipos de formas que se assemelham a cristais, mandalas, flocos de neve e porcos-espinho:</flowPara>
</flowRoot>
<path id="shapes-f14-pt.svgpath2725" sodipodi:sides="48" inkscape:flatsided="false" stroke="#000" stroke-width=".015394" fill="none" style="color:#000000" transform="translate(10 4421.2) matrix(2.436 0 0 2.436 -239.62 -10265)" inkscape:rounded="0.0000000" sodipodi:r1="15.977139" sodipodi:r2="5.2552228" sodipodi:arg1="0.54696605" sodipodi:arg2="2.0469000" 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" inkscape:randomized="0.0000000" sodipodi:cy="4233.9868" sodipodi:cx="171.30144"/>
<path id="shapes-f14-pt.svgpath2918" sodipodi:sides="5" inkscape:flatsided="false" fill="#520100" style="color:#000000" fill-rule="evenodd" transform="translate(10 4421.2) matrix(.99630 -.085991 .085991 .99630 -255.75 -4191.3)" inkscape:rounded="0.0000000" sodipodi:r1="24.878733" sodipodi:r2="24.610689" sodipodi:arg1="0.85670563" sodipodi:arg2="-1.3248582" 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" inkscape:randomized="0.0000000" sodipodi:cy="4334.6870" sodipodi:cx="29.663147"/>
<polygon id="shapes-f14-pt.svgpolygon1259" sodipodi:sides="3" inkscape:flatsided="false" stroke="#000" stroke-width=".47465" fill="none" style="color:#000000" transform="translate(10 4421.2) matrix(.082821 .37592 -.37592 .082821 1327.2 -115.99)" sodipodi:cx="18.779343" inkscape:rounded="0.0000000" 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 " inkscape:randomized="0.0000000" 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"/>
<polygon id="shapes-f14-pt.svgpolygon1263" stroke="#000" stroke-width=".25" sodipodi:type="star" d="M 171.36150,2897.7582 L 187.98050,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.36150,2897.7582 z " fill="none" sodipodi:r1="24.967192" inkscape:flatsided="false" transform="translate(10 4421.2) matrix(.96846 -.24915 .24915 .96846 -691.44 -2621.8)" sodipodi:arg2="-1.1525840" sodipodi:arg1="1.9818609" inkscape:randomized="0.0000000" 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" sodipodi:sides="5" inkscape:rounded="0.0000000" sodipodi:r2="16.355642" sodipodi:cx="181.33803"/>
<path id="shapes-f14-pt.svgpath3540" sodipodi:sides="32" inkscape:flatsided="false" fill="#520100" style="color:#000000" fill-rule="evenodd" transform="translate(10 4421.2) matrix(1.2879 0 0 1.2879 2.8892 -5380.4)" inkscape:rounded="0.0000000" sodipodi:r1="12.998599" sodipodi:r2="16.698013" sodipodi:arg1="0.78539816" sodipodi:arg2="-2.1593010" 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" inkscape:randomized="0.0000000" sodipodi:cy="4201.4121" sodipodi:cx="26.738611"/>
<path id="shapes-f14-pt.svgpath2723" sodipodi:sides="8" inkscape:flatsided="false" fill="#520100" style="color:#000000" fill-rule="evenodd" transform="translate(19.626 246)" inkscape:rounded="0.0000000" sodipodi:r1="16.710012" sodipodi:r2="36.167358" sodipodi:arg1="0.88740509" sodipodi:arg2="2.3382889" 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" inkscape:randomized="0.0000000" sodipodi:cy="4211.3926" sodipodi:cx="252.11676"/>
<path id="shapes-f14-pt.svgpath2724" sodipodi:sides="8" inkscape:flatsided="false" fill="#520100" style="color:#000000" fill-rule="evenodd" transform="translate(10 4421.2) matrix(1 .000033483 -.000033483 1 .14307 -4181.8)" inkscape:rounded="0.0000000" sodipodi:r1="25.662985" sodipodi:r2="15.646836" sodipodi:arg1="0.011487387" sodipodi:arg2="3.0816518" 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" inkscape:randomized="0.0000000" sodipodi:cy="4271.7378" sodipodi:cx="282.28931"/>
<path id="shapes-f14-pt.svgpath3347" sodipodi:sides="8" inkscape:flatsided="false" stroke="#000" stroke-width=".34380" fill="none" style="color:#000000" transform="translate(10 4421.2) matrix(.72717 0 0 .72717 28.258 -3046.2)" inkscape:rounded="0.0000000" sodipodi:r1="27.155294" sodipodi:r2="27.241930" 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" inkscape:randomized="0.0000000" sodipodi:cy="4233.8340" sodipodi:cx="104.59527"/>
<path id="shapes-f14-pt.svgpath5832" sodipodi:sides="17" inkscape:flatsided="false" fill="#520100" style="color:#000000" fill-rule="evenodd" transform="translate(10 238.9)" inkscape:rounded="0.0000000" sodipodi:r1="52.870548" sodipodi:r2="14.993350" sodipodi:arg1="0.52982957" sodipodi:arg2="-2.2448164" 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" inkscape:randomized="0.0000000" sodipodi:cy="4279.2217" sodipodi:cx="68.691193"/>
<rect id="d0e569" display="none" height="1e3px" width="288" y="4582.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e569"/>
</flowRegion>
<flowPara >Se pretender apenas uma estrela simples sem qualquer decoração, é possível fazer com que a alça que distorce a estrela se comporte como a outra, que não distorce:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 4628.2)"/>
<rect id="d0e575" display="none" height="1e3px" width="258" y="4622.2" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e575"/>
</flowRegion>
<flowPara >Arraste com <flowSpan font-weight="bold">Ctrl</flowSpan> para manter os raios da estrela estritamente radiais (sem distorção).</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 4656.5)"/>
<rect id="d0e582" display="none" height="1e3px" width="258" y="4650.5" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e582"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Ctrl+clique</flowSpan> para remover a distorção sem arrastar.</flowPara>
</flowRoot>
<rect id="d0e588" display="none" height="1e3px" width="288" y="4668.4" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e588"/>
</flowRegion>
<flowPara >Como complemento útil para o arrastar de alças sobre a área de desenho, a barra de Controlos da Ferramenta tem o campo <flowSpan font-family="sans-serif">Proporção do raio</flowSpan> que define a proporção das distâncias das 2 alças até ao centro.</flowPara>
</flowRoot>
<rect id="d0e594" display="none" height="1e3px" width="288" y="4716.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e594"/>
</flowRegion>
<flowPara >As estrelas no Inkscape têm mais dois truques na manga. Em geometria, um polígono é uma forma com bordas em linha reta e cantos pontiagudos. No mundo real, no entanto, estão normalmente presentes vários níveis de curvatura e arredondamento — e o Inkscape pode fazer isso também. Arredondar uma estrela ou polígono funciona de forma um pouco diferente de arredondar um retângulo. Não se usa uma alça dedicada para isto, mas sim:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 4804.8)"/>
<rect id="d0e600" display="none" height="1e3px" width="258" y="4798.8" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e600"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Shift+arrastar</flowSpan> uma alça tangencialmente para arredondar a estrela ou polígono.</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 4833.3)"/>
<rect id="d0e606" display="none" height="1e3px" width="258" y="4827.3" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e606"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Shift+clique</flowSpan> sobre uma alça para remover o arredondamento.</flowPara>
</flowRoot>
<rect id="d0e612" display="none" height="1e3px" width="288" y="4845" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e612"/>
</flowRegion>
<flowPara >"Tangencialmente" significa numa direção perpendicular à direção do centro. Se "rodar" uma alça com Shift no sentido anti-horário ao redor do centro, obterá arredondamento positivo; se rodar no sentido horário, obterá um arredondamento negativo (ver exemplos a seguir de arredondamento negativo).</flowPara>
</flowRoot>
<rect id="d0e615" display="none" height="1e3px" width="288" y="4905.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e615"/>
</flowRegion>
<flowPara >Aqui está uma comparação de um quadrado arredondado (ferramenta Retângulo) com um polígono de 4 cantos arredondados (ferramenta Polígono):</flowPara>
</flowRoot>
<g id="shapes-f15-pt.svgg3367" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10 4953.2)">
<path id="shapes-f15-pt.svgpath4264" sodipodi:sides="4" inkscape:flatsided="true" style="color:#000000" fill-rule="evenodd" transform="matrix(1.1746 0 0 1.1746 -.54892 -5471.6)" inkscape:rounded="0.18435333" sodipodi:r1="45.711628" sodipodi:r2="32.323002" sodipodi:arg1="0.78539816" sodipodi:arg2="1.5707963" 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" inkscape:randomized="0.0000000" sodipodi:cy="4696.8921" sodipodi:cx="171.63371"/>
<flowRoot xml:space="preserve" id="shapes-f15-pt.svgflowRoot2696" style="text-anchor:middle;text-align:center" transform="translate(.29604 29.62)" line-height="125%" font-size="10px" font-family="sans-serif" fill="#ffffff"><flowRegion id="shapes-f15-pt.svgflowRegion2698"><rect id="shapes-f15-pt.svgrect2700" height="85.863" width="82.327" y="2.3086" x="159.1" fill="#fff"/></flowRegion><flowPara id="shapes-f15-pt.svgflowPara2702">Polígono arredondado</flowPara></flowRoot>
</g>
<g id="shapes-f15-pt.svgg3360" xmlns:cc="http://creativecommons.org/ns#" transform="translate(10 4953.2)">
<rect id="shapes-f15-pt.svgrect4263" style="color:#000000" fill-rule="evenodd" rx="18.04" ry="18.04" height="87.192" width="87.192" y="1.8127" x="56.117"/>
<flowRoot xml:space="preserve" id="shapes-f15-pt.svgflowRoot3352" style="text-anchor:middle;text-align:center" transform="translate(-100.74 29.637)" line-height="125%" font-size="10px" font-family="sans-serif" fill="#ffffff"><flowRegion id="shapes-f15-pt.svgflowRegion3354"><rect id="shapes-f15-pt.svgrect3356" height="85.863" width="82.327" y="2.3086" x="159.1" fill="#fff"/></flowRegion><flowPara id="shapes-f15-pt.svgflowPara3358">Retângulo arredondado</flowPara></flowRoot>
</g>
<rect id="d0e628" display="none" height="1e3px" width="288" y="5056" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e628"/>
</flowRegion>
<flowPara >Como se pode ver, enquanto um retângulo arredondado tem segmentos de linha reta nos seus lados e nos arredondamentos circulares (geralmente elípticos), um polígono ou estrela arredondada não tem nenhuma linha reta; a sua curvatura varia suavemente entre um máximo (nos cantos) e um mínimo (na metade da distância entre os cantos). O Inkscape faz isto simplesmente adicionando tangentes Bézier colineares em cada nó da forma (pode-se observá-los convertendo a forma geométrica num caminho e examinar com a ferramenta Nó).</flowPara>
</flowRoot>
<rect id="d0e631" display="none" height="1e3px" width="288" y="5158.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e631"/>
</flowRegion>
<flowPara >O parâmetro <flowSpan font-family="sans-serif">Arredondado</flowSpan> que se pode ajustar na barra de Controlos da Ferramenta é a proporção do comprimento destas tangentes em relação ao comprimento dos cantos do polígono ou estrela aos quais elas são adjacentes. Este parâmetro pode assumir valores negativos, o que inverte a direção das tangentes. Os valores entre 0,2 e 0,4 resultam num arredondamento "normal" como esperado; outros valores tendem a produzir padrões belos, intrincados e totalmente imprevisíveis. Uma estrela com um valor alto de arredondamento pode exceder os limites determinados para as alças. Seguem-se alguns exemplos, cada um indicando o valor utilizado no campo Arredondado:</flowPara>
</flowRoot>
<path id="shapes-f16-pt.svgpath1575" sodipodi:sides="5" inkscape:flatsided="false" stroke="#000" stroke-width="3.375" fill="none" transform="translate(10 5289.7) matrix(.30797 -.032335 -.032335 -.30797 -34.052 272.34)" inkscape:rounded="5.1300000" sodipodi:r1="27.797562" sodipodi:r2="27.797562" sodipodi:arg1="0.22082877" sodipodi:arg2="0.84914730" 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=".13115" inkscape:randomized="0.0000000" sodipodi:cy="551.97913" sodipodi:cx="254.06618"/>
<path id="shapes-f16-pt.svgpath1556" sodipodi:sides="18" inkscape:flatsided="false" stroke="#000" stroke-width=".03125" fill="none" style="color:#000000" transform="translate(10 5289.7) matrix(1.2522 0 0 -1.2522 -268.86 649.33)" inkscape:rounded="0.37000000" sodipodi:r1="56.586357" sodipodi:r2="2.4662609" sodipodi:arg1="1.1708920" sodipodi:arg2="-2.6860230" 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" inkscape:randomized="0.0000000" sodipodi:cy="459.14322" sodipodi:cx="377.20990"/>
<path id="shapes-f16-pt.svgpath1559" sodipodi:sides="4" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width=".36260" fill="#cecece" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.54998 0 0 -.54998 24.596 424.72)" inkscape:rounded="1.8500000" sodipodi:r1="33.805592" sodipodi:r2="0.93718392" sodipodi:arg1="0.0000000" 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" inkscape:randomized="0.0000000" sodipodi:cy="584.08337" sodipodi:cx="78.599991"/>
<path id="shapes-f16-pt.svgpath2808" sodipodi:sides="4" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width="1pt" fill="#8eff00" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.74894 0 0 -.74894 60.655 545.36)" inkscape:rounded="0.25000000" sodipodi:r1="38.196964" sodipodi:r2="7.8936343" sodipodi:arg1="-0.0000000" 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.0000000" sodipodi:cy="626.70453" sodipodi:cx="285.61685"/>
<path id="shapes-f16-pt.svgpath3430" sodipodi:sides="5" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width="1pt" fill="#8eff00" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.71680 .21703 .21703 -.71680 -66.024 504.58)" inkscape:rounded="0.24000000" sodipodi:r1="38.196964" sodipodi:r2="9.5492411" sodipodi:arg1="-0.0000000" 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.0000000" sodipodi:cy="626.70453" sodipodi:cx="285.61685"/>
<path id="shapes-f16-pt.svgpath1586" sodipodi:sides="3" inkscape:flatsided="true" stroke="#000" stroke-width="1.4275" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.11236 .0068491 .0068491 -.11236 7.8815 207.15)" inkscape:rounded="0.21000000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" sodipodi:arg1="0.59891126" sodipodi:arg2="1.6461088" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-dasharray="1.4274618 1.4274618"/>
<path id="shapes-f16-pt.svgpath2214" sodipodi:sides="4" inkscape:flatsided="true" stroke="#000" stroke-width="1.4275" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.11121 -.017408 -.017408 -.11121 34.312 215.82)" inkscape:rounded="0.21000000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" sodipodi:arg1="0.59891126" sodipodi:arg2="1.3843094" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-dasharray="1.4275137 1.4275137"/>
<path id="shapes-f16-pt.svgpath2215" sodipodi:sides="5" inkscape:flatsided="true" stroke="#000" stroke-width="1.4275" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.10622 -.037266 -.037266 -.10622 59.874 219.4)" inkscape:rounded="0.21000000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" sodipodi:arg1="0.59891126" sodipodi:arg2="1.2272298" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-dasharray="1.4274952 1.4274952"/>
<path id="shapes-f16-pt.svgpath2216" sodipodi:sides="6" inkscape:flatsided="true" stroke="#000" stroke-width="1.4275" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.11252 .0031539 .0031539 -.11252 42.438 209.55)" inkscape:rounded="0.21000000" sodipodi:r1="38.821625" sodipodi:r2="36.683537" sodipodi:arg1="0.59891126" sodipodi:arg2="1.1225100" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="649.26288" sodipodi:cx="346.60431" stroke-dasharray="1.4274604 1.4274604"/>
<path id="shapes-f16-pt.svgpath905" sodipodi:sides="3" fill-opacity=".74998" inkscape:flatsided="false" stroke="#000" stroke-width="4.2" fill="#ff6000" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.060433 0 0 -.060433 168.52 2.007)" inkscape:rounded="-3.0000000" sodipodi:r1="266.75140" 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" inkscape:randomized="0.0000000" sodipodi:cy="-1048.6403" sodipodi:cx="-651.47363"/>
<path id="shapes-f16-pt.svgpath4053" sodipodi:sides="6" fill-opacity=".75" inkscape:flatsided="false" stroke="#acacac" stroke-width="1pt" fill="#fcfcfc" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.47781 .073715 .073715 -.47781 -114.92 309.1)" inkscape:rounded="3.0000000" 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.0000000" sodipodi:cy="606.22424" sodipodi:cx="272.33234"/>
<path id="shapes-f16-pt.svgpath1545" sodipodi:sides="3" inkscape:flatsided="false" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.27028 -.080435 -.080435 -.27028 39.032 168.46)" inkscape:rounded="-3.0000000" sodipodi:r1="39.614254" sodipodi:r2="1.0779980" sodipodi:arg1="2.3198469" sodipodi:arg2="3.3670445" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="420.22922" sodipodi:cx="397.50070"/>
<path id="shapes-f16-pt.svgpath1591" sodipodi:sides="3" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width=".57521" fill="#8eff00" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(1.6275 0 0 1.6275 -153.18 -574.14)" inkscape:rounded="0.25000000" 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" inkscape:randomized="0.0000000" sodipodi:cy="377.06650" sodipodi:cx="262.92249"/>
<text id="shapes-f16-pt.svgtext2547" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="72.533112" x="269.70953" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2548" sodipodi:role="line" x="269.70953" y="72.533112"/><tspan id="shapes-f16-pt.svgtspan2550"/><tspan id="shapes-f16-pt.svgtspan2552" sodipodi:role="line" x="269.70953" y="77.307917">0,25</tspan></text>
<text id="shapes-f16-pt.svgtext2856" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="37.697109" x="270.21283" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2555" sodipodi:role="line" x="270.21283" y="37.697109"/><tspan id="shapes-f16-pt.svgtspan2557"/><tspan id="shapes-f16-pt.svgtspan2559" sodipodi:role="line" x="270.21283" y="42.471914">0,25</tspan></text>
<text id="shapes-f16-pt.svgtext2561" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="114.07111" x="270.13705" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2562" sodipodi:role="line" x="270.13705" y="114.07111"/><tspan id="shapes-f16-pt.svgtspan2564"/><tspan id="shapes-f16-pt.svgtspan2566" sodipodi:role="line" x="270.13705" y="118.84592">0,25</tspan></text>
<text id="shapes-f16-pt.svgtext2568" line-height="120.00000%" transform="translate(10 5289.7) matrix(0.5 .86602 -.86602 0.5 0 0)" sodipodi:linespacing="120.00000%" font-size="3.979" y="-106.66351" x="214.9263" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2569" sodipodi:role="line" x="214.92630" y="-106.66351"/><tspan id="shapes-f16-pt.svgtspan2571"/><tspan id="shapes-f16-pt.svgtspan2573" sodipodi:role="line" x="214.92630" y="-101.88870">0,37</tspan></text>
<path id="shapes-f16-pt.svgpath1554" sodipodi:sides="9" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width=".375" fill="#cecece" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.96459 .067199 .067199 -.96459 -356.57 688.7)" inkscape:rounded="0.43000000" sodipodi:r1="23.086590" sodipodi:r2="14.298160" 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.0000000" sodipodi:cy="620.88135" sodipodi:cx="451.89960"/>
<text id="shapes-f16-pt.svgtext2575" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="117.60011" x="116.22874" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2576" sodipodi:role="line" x="116.22874" y="117.60011"/><tspan id="shapes-f16-pt.svgtspan2578"/><tspan id="shapes-f16-pt.svgtspan2580" sodipodi:role="line" x="116.22874" y="122.37492">0,43</tspan></text>
<text id="shapes-f16-pt.svgtext2582" line-height="120.00000%" transform="translate(10 5289.7) matrix(.38491 .92296 -.92296 .38491 0 0)" sodipodi:linespacing="120.00000%" font-size="3.979" y="-39.030281" x="32.583221" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2583" sodipodi:role="line" x="32.583221" y="-39.030281"/><tspan id="shapes-f16-pt.svgtspan2585"/><tspan id="shapes-f16-pt.svgtspan2587" sodipodi:role="line" x="32.583221" y="-34.255495">3,00</tspan></text>
<text id="shapes-f16-pt.svgtext2589" line-height="120.00000%" transform="translate(10 5289.7) matrix(1 -.00059743 .00059743 1 0 0)" sodipodi:linespacing="120.00000%" font-size="3.979" y="38.639725" x="107.11456" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2590" sodipodi:role="line" x="107.11456" y="43.414501">-</tspan><tspan id="shapes-f16-pt.svgtspan2592"/><tspan id="shapes-f16-pt.svgtspan2594">3,00</tspan><tspan id="shapes-f16-pt.svgtspan2596" sodipodi:role="line" x="107.11456" y="43.414501"/></text>
<path id="shapes-f16-pt.svgpath896" sodipodi:sides="3" inkscape:flatsided="false" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.12086 0 0 -.12086 214.1 80.908)" inkscape:rounded="0.41000000" sodipodi:r1="120.20276" sodipodi:r2="60.101379" sodipodi:arg1="0.52807445" sodipodi:arg2="1.5752720" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="492.50204" sodipodi:cx="224.45302"/>
<text id="shapes-f16-pt.svgtext2598" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="17.90111" x="236.78233" font-family="sans-serif" sodipodi:insensitive="true" fill="#ffffff"><tspan id="shapes-f16-pt.svgtspan2599" sodipodi:role="line" x="236.78233" y="17.901110"/><tspan id="shapes-f16-pt.svgtspan2601"/><tspan id="shapes-f16-pt.svgtspan2603" sodipodi:role="line" x="236.78233" y="22.675915">0,41</tspan></text>
<text id="shapes-f16-pt.svgtext2909" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="95.56311" x="21.764177" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2606" sodipodi:role="line" x="21.764177" y="100.33792">5,43</tspan><tspan id="shapes-f16-pt.svgtspan2608"/><tspan id="shapes-f16-pt.svgtspan2610" sodipodi:role="line" x="21.764177" y="100.33792"/></text>
<text id="shapes-f16-pt.svgtext2613" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="89.486107" x="63.424889" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan2613" sodipodi:role="line" x="63.424889" y="89.486107"/><tspan id="shapes-f16-pt.svgtspan2615"/><tspan id="shapes-f16-pt.svgtspan2617" sodipodi:role="line" x="63.424889" y="94.260912">1,85</tspan></text>
<text id="shapes-f16-pt.svgtext3240" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="141.7691" x="62.71822" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan3241" sodipodi:role="line" x="62.718220" y="141.76910"/><tspan id="shapes-f16-pt.svgtspan3243"/><tspan id="shapes-f16-pt.svgtspan3245" sodipodi:role="line" x="62.718220" y="146.54391">0,21</tspan></text>
<text id="shapes-f16-pt.svgtext3868" line-height="120.00000%" transform="translate(10 5289.7) matrix(1 -.00059743 .00059743 1 0 0)" sodipodi:linespacing="120.00000%" font-size="3.979" y="66.356537" x="106.78857" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan3869" sodipodi:role="line" x="106.78857" y="71.131313">-</tspan><tspan id="shapes-f16-pt.svgtspan3871"/><tspan id="shapes-f16-pt.svgtspan3873">3,00</tspan><tspan id="shapes-f16-pt.svgtspan3875" sodipodi:role="line" x="106.78857" y="71.131313"/></text>
<path id="shapes-f16-pt.svgpath4498" sodipodi:sides="9" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width=".71102" fill="#cecece" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.50303 .083862 -.083862 .50303 540.58 -2474.8)" inkscape:rounded="-0.43000000" sodipodi:r1="46.149918" sodipodi:r2="18.172943" sodipodi:arg1="0.93231400" 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" inkscape:randomized="0.0000000" sodipodi:cy="5142.4639" sodipodi:cx="105.38494"/>
<text id="shapes-f16-pt.svgtext4499" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="122.21311" x="156.34573" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan4500" sodipodi:role="line" x="156.34573" y="126.98792">-0,43</tspan><tspan id="shapes-f16-pt.svgtspan4502"/><tspan id="shapes-f16-pt.svgtspan4504" sodipodi:role="line" x="156.34573" y="126.98792"/></text>
<path id="shapes-f16-pt.svgpath5127" sodipodi:sides="5" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width=".71102" fill="#00edff" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.30673 -.042679 .042679 .30673 -195.03 -1440.1)" inkscape:rounded="-8.9362223" sodipodi:r1="17.613136" sodipodi:r2="8.1117020" 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.1344-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.1092-11.3s38.013-106.3-7.9528-9z" inkscape:randomized="0.0000000" sodipodi:cy="5108.5903" sodipodi:cx="9.5541286"/>
<text id="shapes-f16-pt.svgtext6108" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="143.25011" x="21.20429" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f16-pt.svgtspan5129" sodipodi:role="line" x="21.204290" y="148.02491">-8,94</tspan><tspan id="shapes-f16-pt.svgtspan5131"/><tspan id="shapes-f16-pt.svgtspan5133" sodipodi:role="line" x="21.204290" y="148.02491"/></text>
<path id="shapes-f16-pt.svgpath5833" sodipodi:sides="4" inkscape:flatsided="true" style="color:#000000" fill-rule="evenodd" transform="translate(10 5289.7) matrix(.24131 0 0 .24131 59.66 -1049.7)" inkscape:rounded="0.39000000" sodipodi:r1="45.711628" sodipodi:r2="32.323002" sodipodi:arg1="0.78539816" sodipodi:arg2="1.5707963" sodipodi:type="star" 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" inkscape:randomized="0.0000000" sodipodi:cy="4696.8921" sodipodi:cx="171.63371"/>
<text id="shapes-f16-pt.svgtext5837" line-height="120.00000%" transform="translate(10 5289.7)" sodipodi:linespacing="120.00000%" font-size="3.979" y="80.288109" x="96.318428" font-family="sans-serif" sodipodi:insensitive="true" fill="#ffffff"><tspan id="shapes-f16-pt.svgtspan5838" sodipodi:role="line" x="96.318428" y="80.288109"/><tspan id="shapes-f16-pt.svgtspan5840"/><tspan id="shapes-f16-pt.svgtspan5842" sodipodi:role="line" x="96.318428" y="85.062914">0,39</tspan></text>
<rect id="d0e647" display="none" height="1e3px" width="288" y="5452.1" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e647"/>
</flowRegion>
<flowPara >Se quiser que as pontas de uma estrela sejam pontiagudas mas suas concavidades sejam suaves ou vice-versa, basta criar um <flowSpan font-style="italic">deslocamento</flowSpan> (<flowSpan font-weight="bold">Ctrl+J</flowSpan>) a partir da estrela:</flowPara>
</flowRoot>
<path id="shapes-f17-pt.svgpath2694" sodipodi:type="inkscape:offset" d="m62.5 24.969c-0.50562 1.2622-0.99255 2.2942-1.5312 3.7812-0.96476 2.6631-1.9459 5.4939-3.2812 8.0312-1.3353 2.5374-2.9963 5.2707-6.625 6.2812-3.813 1.062-6.832-0.502-9.532-2.062-2.699-1.56-5.288-3.546-7.719-5.344-1.182-0.875-1.987-1.272-3.031-1.968 0.64117 0.8241 0.95878 1.3746 1.7188 2.2812 1.9008 2.2675 4.002 4.6899 5.6875 7.25 1.6854 2.5601 3.4706 5.4524 2.4688 9.3438-0.98604 3.8299-3.8641 5.6611-6.5625 7.2188-2.6984 1.5576-5.6995 2.7948-8.4688 4-1.3716 0.59692-2.1439 1.0922-3.2812 1.6562 1.0486-0.14499 1.6895-0.13443 2.875-0.34375 2.9122-0.5142 6.0662-1.1312 9.125-1.3125s6.4747-0.28202 9.3438 2.5312c2.8239 2.769 2.9707 6.1663 2.9688 9.2812-0.002 3.115-0.43846 6.3445-0.78125 9.3438-0.16486 1.4425-0.10553 2.3235-0.1875 3.5625 0.38791-0.95721 0.69431-1.4967 1.0938-2.5938 1.0114-2.7779 2.0645-5.7926 3.4375-8.5312s3.0053-5.7348 6.875-6.8125c3.812-1.0616 6.8319 0.50266 9.5312 2.0625 2.6994 1.5598 5.2884 3.5458 7.7188 5.3438 1.1826 0.87488 1.9876 1.2724 3.0312 1.9688-0.64117-0.8241-0.95878-1.3746-1.7188-2.2812-1.9008-2.2675-4.002-4.6899-5.6875-7.25-1.686-2.56-3.471-5.452-2.469-9.344 0.98604-3.8299 3.8641-5.6611 6.5625-7.2188 2.6984-1.5576 5.6995-2.7948 8.4688-4 1.3716-0.59692 2.1439-1.0922 3.2812-1.6562-1.0486 0.14499-1.6895 0.13443-2.875 0.34375-2.9122 0.5142-6.0662 1.1312-9.125 1.3125s-6.4747 0.28202-9.3438-2.5312c-2.8239-2.769-2.9707-6.1663-2.9688-9.2812 0.002-3.115 0.43846-6.3445 0.78125-9.3438 0.172-1.507 0.139-2.44 0.219-3.719z" fill-rule="evenodd" xlink:href="#shapes-f17-pt.svgpath2693" inkscape:original="M 63.34375 16.28125 C 57.845938 17.170119 55.922201 37.128396 49.875 38.8125 C 43.139438 40.688307 29.350635 22.780244 24.25 27.5625 C 19.365349 32.142254 38.044466 44.984396 36.375 51.46875 C 34.631716 58.239822 12.252512 61.222842 13.84375 68.03125 C 15.367608 74.551359 35.812868 64.780773 40.59375 69.46875 C 45.586028 74.364015 36.964377 95.223849 43.65625 97.25 C 50.064759 99.190355 51.830902 76.608877 58.28125 74.8125 C 65.016812 72.936693 78.805615 90.844756 83.90625 86.0625 C 88.790901 81.482746 70.111784 68.640604 71.78125 62.15625 C 73.524534 55.385178 95.903738 52.402158 94.3125 45.59375 C 92.788642 39.073641 72.343382 48.844227 67.5625 44.15625 C 62.570222 39.260985 71.191873 18.401151 64.5 16.375 C 64.099468 16.253728 63.710271 16.221992 63.34375 16.28125 z " transform="translate(10 5499.2) matrix(1.3205 0 0 1.3205 80.682 -18) translate(-10 -5499.2)" stroke="#000" fill-opacity=".75" inkscape:href="#shapes-f17-pt.svgpath2693" inkscape:radius="-4.4234619" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".47330" fill="#ffb800"/>
<path id="shapes-f17-pt.svgpath2696" style="color:#000000" sodipodi:type="inkscape:offset" d="m64.719 6.375c-0.947-0.0763-1.964-0.0375-2.969 0.125-7.0587 1.1412-9.2371 5.8951-10.781 8.875-1.5441 2.9799-2.5128 5.8613-3.4688 8.5-0.46102 1.2726-0.80157 1.9503-1.2188 3-1.2612-0.87541-2.3722-1.592-3.9375-2.75-2.5373-1.8771-5.1596-3.9184-8.7188-5.5625-1.7796-0.82203-3.8867-1.6254-6.7812-1.7188-2.8945-0.09337-6.7971 1.0518-9.375 3.4688-2.6051 2.4424-4.0912 6.7317-3.9375 9.8125 0.15371 3.0808 1.1188 5.1305 2.0312 6.8438 1.8249 3.4265 3.9573 5.8564 5.9375 8.2188 1.1531 1.3756 1.8525 2.305 2.75 3.4375-1.3875 0.65445-2.5587 1.2231-4.3438 2-2.8914 1.2584-5.9858 2.5201-9.1875 4.7812-1.6009 1.1306-3.3485 2.5395-4.875 5s-2.4598 6.4368-1.6562 9.875c0.81236 3.4758 3.7848 6.9051 6.5312 8.3125 2.7465 1.4074 4.9976 1.591 6.9375 1.6562 3.8798 0.13042 7.0287-0.49558 10.062-1.0312 1.7646-0.31156 2.9166-0.44456 4.3438-0.65625-0.12795 1.525-0.2172 2.8224-0.4375 4.75-0.3579 3.1315-0.79258 6.4403-0.4375 10.344 0.17754 1.9517 0.50748 4.134 1.875 6.6875s4.3403 5.3833 7.7188 6.4062c3.4154 1.0341 7.8766 0.1735 10.469-1.5 2.5921-1.6735 3.8792-3.5406 4.9062-5.1875 2.0541-3.2938 3.0713-6.356 4.125-9.25 0.60906-1.6728 1.0658-2.7263 1.5938-4.0625 1.2612 0.87541 2.3722 1.592 3.9375 2.75 2.5373 1.8771 5.1596 3.9184 8.7188 5.5625 1.7796 0.82203 3.8867 1.6254 6.7812 1.7188 2.8945 0.09337 6.7971-1.0518 9.375-3.4688 2.6051-2.4424 4.0912-6.7317 3.9375-9.8125-0.15371-3.0808-1.1188-5.1305-2.0312-6.8438-1.8249-3.4265-3.9573-5.8564-5.9375-8.2188-1.1531-1.3756-1.8525-2.305-2.75-3.4375 1.3875-0.65445 2.5587-1.2231 4.3438-2 2.8914-1.2584 5.9858-2.5201 9.1875-4.7812 1.6009-1.1306 3.3485-2.5395 4.875-5s2.4598-6.4368 1.6562-9.875c-0.81236-3.4758-3.7848-6.9051-6.5312-8.3125-2.747-1.408-4.998-1.592-6.938-1.657-3.8798-0.13042-7.0287 0.49558-10.062 1.0312-1.7646 0.31156-2.9166 0.44456-4.3438 0.65625 0.12795-1.525 0.2172-2.8224 0.4375-4.75 0.3579-3.1315 0.79258-6.4403 0.4375-10.344-0.17754-1.9517-0.50748-4.134-1.875-6.6875-1.369-2.553-4.342-5.3831-7.72-6.406-0.823-0.2493-1.71-0.4237-2.656-0.5z" fill-rule="evenodd" xlink:href="#shapes-f17-pt.svgpath2693" inkscape:original="M 63.34375 16.28125 C 57.845938 17.170119 55.922201 37.128396 49.875 38.8125 C 43.139438 40.688307 29.350635 22.780244 24.25 27.5625 C 19.365349 32.142254 38.044466 44.984396 36.375 51.46875 C 34.631716 58.239822 12.252512 61.222842 13.84375 68.03125 C 15.367608 74.551359 35.812868 64.780773 40.59375 69.46875 C 45.586028 74.364015 36.964377 95.223849 43.65625 97.25 C 50.064759 99.190355 51.830902 76.608877 58.28125 74.8125 C 65.016812 72.936693 78.805615 90.844756 83.90625 86.0625 C 88.790901 81.482746 70.111784 68.640604 71.78125 62.15625 C 73.524534 55.385178 95.903738 52.402158 94.3125 45.59375 C 92.788642 39.073641 72.343382 48.844227 67.5625 44.15625 C 62.570222 39.260985 71.191873 18.401151 64.5 16.375 C 64.099468 16.253728 63.710271 16.221992 63.34375 16.28125 z " transform="translate(10 5499.2) matrix(.82737 0 0 .82737 205.7 10.537) translate(-10 -5499.2)" stroke="#000" fill-opacity=".75" inkscape:href="#shapes-f17-pt.svgpath2693" inkscape:radius="9.9201479" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".75541" fill="#ffb800"/>
<path id="shapes-f17-pt.svgpath2693" sodipodi:sides="6" fill-opacity=".75" inkscape:flatsided="false" stroke="#000" stroke-width=".625" fill="#ffb800" style="color:#000000" fill-rule="evenodd" transform="translate(-22.785 298)" inkscape:rounded="0.25000000" sodipodi:r1="41.765072" sodipodi:r2="18.491833" sodipodi:arg1="0.77559456" sodipodi:arg2="1.3411834" xmlns:cc="http://creativecommons.org/ns#" 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" inkscape:randomized="0.0000000" sodipodi:cy="5257.9824" sodipodi:cx="86.855721"/>
<flowRoot xml:space="preserve" id="shapes-f17-pt.svgflowRoot2701" style="text-anchor:middle;text-align:center" transform="translate(9.7685 5499.2)" font-size="6" xmlns:cc="http://creativecommons.org/ns#"><flowRegion id="shapes-f17-pt.svgflowRegion2703"><rect id="shapes-f17-pt.svgrect2705" height="15" width="84.643" y="-.13782" x="11.786"/></flowRegion><flowPara id="shapes-f17-pt.svgflowPara2707">Estrela original</flowPara></flowRoot>
<flowRoot xml:space="preserve" id="shapes-f17-pt.svgflowRoot2709" style="text-anchor:middle;text-align:center" transform="translate(103.08 5499.1)" font-size="6" xmlns:cc="http://creativecommons.org/ns#"><flowRegion id="shapes-f17-pt.svgflowRegion2711"><rect id="shapes-f17-pt.svgrect2713" height="15" width="84.643" y="-.13782" x="11.786"/></flowRegion><flowPara id="shapes-f17-pt.svgflowPara2715">Deslocamento ligado, dentro</flowPara></flowRoot>
<flowRoot xml:space="preserve" id="shapes-f17-pt.svgflowRoot2717" style="text-anchor:middle;text-align:center" transform="translate(205.27 5499.1)" font-size="6" xmlns:cc="http://creativecommons.org/ns#"><flowRegion id="shapes-f17-pt.svgflowRegion2719"><rect id="shapes-f17-pt.svgrect2721" height="15" width="84.643" y="-.13782" x="11.786"/></flowRegion><flowPara id="shapes-f17-pt.svgflowPara2723">Deslocamento ligado, fora</flowPara></flowRoot>
<rect id="d0e666" display="none" height="1e3px" width="288" y="5610.1" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e666"/>
</flowRegion>
<flowPara >Com <flowSpan font-weight="bold">Shift+arrastar</flowSpan> as alças da estrela pode-se criar formas interessantes e fora do vulgar. Mas ainda podem ser melhoradas.</flowPara>
</flowRoot>
<rect id="d0e672" display="none" height="1e3px" width="288" y="5638.6" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e672"/>
</flowRegion>
<flowPara >Para imitar melhor as formas do mundo real, o Inkscape pode tornar <flowSpan font-style="italic">Aleatórias</flowSpan> (em outras palavras, distorção aleatória) as formas das estrelas e polígonos. Uma ligeira distorção aleatória deixa a estrela menos regular, mais humana, geralmente engraçada; já uma distorção alta é uma maneira de obter uma variedade de formas imprevisíveis. Uma estrela arredondada permanece suavemente arredondada quando distorcida aleatoriamente. As teclas de atalho são:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 5726.2)"/>
<rect id="d0e681" display="none" height="1e3px" width="258" y="5720.2" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e681"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Alt+arrastar</flowSpan> uma alça tangencialmente para distorcer aleatoriamente a estrela ou polígono.</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 5754.7)"/>
<rect id="d0e687" display="none" height="1e3px" width="258" y="5748.7" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e687"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Alt+clicar</flowSpan> sobre uma alça para remover a distorção aleatória.</flowPara>
</flowRoot>
<rect id="d0e693" display="none" height="1e3px" width="288" y="5766.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e693"/>
</flowRegion>
<flowPara >Enquanto se desenha ou arrasta a alça de uma estrela distorcida aleatoriamente, ela irá "tremer" porque cada posição única das suas alças correspondem à sua própria distorção aleatória única. Assim, movendo uma alça sem a tecla Alt, a forma será distorcida novamente com o mesmo nível de aleatoriedade, enquanto que arrastando-a com Alt mantém-se a mesma distorção mas o nível é ajustado. Seguem-se alguns exemplos de estrelas cujos parâmetros são exatamente os mesmos, mas cada uma é distorcida novamente com movimentos muito suaves da alça (o valor do campo Aleatório é 0,1 em todas elas):</flowPara>
</flowRoot>
<path id="shapes-f18-pt.svgpath2788" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5877.6) matrix(.84722 0 0 .84722 6.3302 -4695.8)" inkscape:rounded="0.22000000" sodipodi:r1="30.728476" sodipodi:r2="15.364238" sodipodi:arg1="0.50595040" sodipodi:arg2="0.98389742" 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.7341-3.8 17.703-1.3 20.075-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" inkscape:randomized="0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f18-pt.svgpath2789" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5877.6) matrix(.84722 0 0 .84722 66.37 -4695.8)" inkscape:rounded="0.22000000" sodipodi:r1="29.479511" sodipodi:r2="15.188270" sodipodi:arg1="0.16874813" sodipodi:arg2="0.64669515" 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.3261-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" inkscape:randomized="0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f18-pt.svgpath2790" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5877.6) matrix(.84722 0 0 .84722 126.41 -4695.8)" inkscape:rounded="0.22000000" sodipodi:r1="30.461117" sodipodi:r2="15.230559" sodipodi:arg1="0.53837452" sodipodi:arg2="1.0163215" 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.0885-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" inkscape:randomized="0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f18-pt.svgpath2791" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5877.6) matrix(.84722 0 0 .84722 186.45 -4695.8)" inkscape:rounded="0.22000000" sodipodi:r1="30.324377" sodipodi:r2="15.162188" sodipodi:arg1="0.59796906" sodipodi:arg2="1.0759160" 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.6134-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" inkscape:randomized="0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f18-pt.svgpath2792" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5877.6) matrix(.84722 0 0 .84722 246.49 -4695.8)" inkscape:rounded="0.22000000" sodipodi:r1="30.103865" sodipodi:r2="15.051932" sodipodi:arg1="0.72564034" sodipodi:arg2="1.2035873" 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.1537-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" inkscape:randomized="0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<rect id="d0e706" display="none" height="1e3px" width="288" y="5944.9" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e706"/>
</flowRegion>
<flowPara >Agora seguem-se alguns exemplos com base na estrela do meio nos exemplos anteriores, com o nível de distorção aleatória variando entre -0,2 e 0,2:</flowPara>
</flowRoot>
<text id="shapes-f19-pt.svgtext2848" sodipodi:linespacing="120.00000%" transform="translate(10 5991.3)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="274.15491" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f19-pt.svgtspan2849" y="-2.4563127" x="274.15491" sodipodi:role="line"/><tspan id="shapes-f19-pt.svgtspan2851"/><tspan id="shapes-f19-pt.svgtspan2853" y="3.9817331" x="274.15491" sodipodi:role="line">+0,2</tspan></text>
<text id="shapes-f19-pt.svgtext2841" sodipodi:linespacing="120.00000%" transform="translate(10 5991.3)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="212.89142" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f19-pt.svgtspan2842" y="-2.4563127" x="212.89142" sodipodi:role="line"/><tspan id="shapes-f19-pt.svgtspan2844"/><tspan id="shapes-f19-pt.svgtspan2846" y="3.9817331" x="212.89142" sodipodi:role="line">+0,1</tspan></text>
<text id="shapes-f19-pt.svgtext2833" sodipodi:linespacing="120.00000%" transform="translate(10 5991.3)" line-height="120.00000%" font-size="5.365" y="4.1156874" x="151.42322" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f19-pt.svgtspan2835" y="10.553733" x="151.42322" sodipodi:role="line">0</tspan><tspan id="shapes-f19-pt.svgtspan2837"/><tspan id="shapes-f19-pt.svgtspan2839" y="10.553733" x="151.42322" sodipodi:role="line"/></text>
<text id="shapes-f19-pt.svgtext2814" sodipodi:linespacing="120.00000%" transform="translate(10 5991.3)" line-height="120.00000%" font-size="5.365" y="4.1156874" x="83.021225" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f19-pt.svgtspan2821" y="10.553733" x="83.021225" sodipodi:role="line">-0,1</tspan><tspan id="shapes-f19-pt.svgtspan2829"/><tspan id="shapes-f19-pt.svgtspan2831" y="10.553733" x="83.021225" sodipodi:role="line"/></text>
<text id="shapes-f19-pt.svgtext2805" sodipodi:linespacing="120.00000%" transform="translate(10 5991.3)" line-height="120.00000%" font-size="5.365" y="4.1156874" x="26.32832" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f19-pt.svgtspan2807" y="10.553733" x="26.328320" sodipodi:role="line">-0,2</tspan><tspan id="shapes-f19-pt.svgtspan2809"/><tspan id="shapes-f19-pt.svgtspan2811" y="10.553733" x="26.328320" sodipodi:role="line"/></text>
<path id="shapes-f19-pt.svgpath2797" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5991.3) matrix(.84722 0 0 .84722 190.19 -4686.5)" inkscape:rounded="0.22000000" sodipodi:r1="30.461117" sodipodi:r2="15.230559" sodipodi:arg1="0.53837452" sodipodi:arg2="1.0163215" 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.0885-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" inkscape:randomized="0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f19-pt.svgpath2798" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5991.3) matrix(.84722 0 0 .84722 126.41 -4686.5)" inkscape:rounded="0.22000000" sodipodi:r1="30.461117" sodipodi:r2="15.230559" sodipodi:arg1="0.53837452" sodipodi:arg2="1.0163215" 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.4778-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" inkscape:randomized="0.0000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f19-pt.svgpath2799" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5991.3) matrix(.84722 0 0 .84722 253.97 -4686.5)" inkscape:rounded="0.22000000" sodipodi:r1="30.461117" sodipodi:r2="15.230559" sodipodi:arg1="0.53837452" sodipodi:arg2="1.0163215" 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.1398-3.6 13.334-14.3 12.275-18.5-1.022-4-22.639 3.6-20.993-0.2 1.7065-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" inkscape:randomized="0.20000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f19-pt.svgpath2800" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5991.3) matrix(.84722 0 0 .84722 59.088 -4686.5)" inkscape:rounded="0.22000000" sodipodi:r1="30.461117" sodipodi:r2="15.230559" sodipodi:arg1="0.53837452" sodipodi:arg2="1.0163215" 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.1115-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" inkscape:randomized="-0.10000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<path id="shapes-f19-pt.svgpath2801" sodipodi:sides="7" inkscape:flatsided="false" fill="#ff6c2e" style="color:#000000" fill-rule="evenodd" transform="translate(10 5991.3) matrix(.84722 0 0 .84722 2.3953 -4686.5)" inkscape:rounded="0.22000000" sodipodi:r1="30.461117" sodipodi:r2="15.230559" sodipodi:arg1="0.53837452" sodipodi:arg2="1.0163215" 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.6673-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" inkscape:randomized="-0.20000000" sodipodi:cy="5574.6763" sodipodi:cx="34.143131"/>
<rect id="d0e719" display="none" height="1e3px" width="288" y="6066" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e719"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Alt+arraste</flowSpan> uma alça da estrela do meio nesta linha e observe como ela se transforma nas suas vizinhas da direita e da esquerda — e para além disso.</flowPara>
</flowRoot>
<rect id="d0e724" display="none" height="1e3px" width="288" y="6103.5" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e724"/>
</flowRegion>
<flowPara >Provavelmente vai achar as suas próprias aplicações para estrelas distorcidas aleatoriamente. Segue-se um exemplo de uma composição com manchas arredondadas e grandes planetas irregulares com paisagens fantásticas:</flowPara>
</flowRoot>
<path id="shapes-f20-pt.svgpath1599" style="color:#000000" d="m-37.728 155.36c4.2268 5.7132 9.7471 7.8679 17.311 4.3502 40.796-18.97-86.673-90.888-45.309-108.75 41.367-17.871 38.426 133.61 79.447 115.95 41.021-17.65-85.882-102.37-43.768-118.02 42.114-15.66 10.671 111.76 52.829 96.85 42.157-14.9-66.905-108.38-24.487-123.77 42.418-15.396 6.3065 143.19 49.273 130.56 42.966-12.64-78.565-123.49-35.751-136.42 42.814-12.921 15.198 146.6 58.146 134.79 42.947-11.81-78.229-132.05-34.315-142.3 43.914-10.257-9.116 133.12 34.2 123.57 43.312-9.55-55.846-112.53-11.336-119.51 44.508-6.9782-13.312 122.66 31.18 117.54 44.488-5.12-45.236-120.29-0.842-125.27 44.39-4.9757-14.104 134.72 30.31 130.13 44.42-4.59-38.921-132.64 6.05-134.45 44.96-1.7977-41.683 133.51 3.31 131.19 44.99-2.32-24.87-122.59 19.84-122.69 44.7-0.0924-25.39 112.8 18.95 113.58 44.35 0.77-45.2-127.22-0.28-125.5 44.92 1.7209-33.15 131.8 11.65 134.88 44.8 3.09-19.34-129.92 25.3-126.81 44.63 3.107-49.14 114.08-4.38 118.97 44.75 4.89-14.85-128.64 29.28-121.21 44.12 7.431-61.17 122.66-17.13 131.19 44.04 8.54-13.12-140.8 30.73-132.29 43.84 8.517-40.4 123.15 2.99 134 43.4 10.85-5.71-129.78 37.05-118.25 42.76 11.524-72.52 105.89-29.78 118.07 42.737 12.179-0.71732-125.38 41.836-112.09 42.553 13.287-66.615 102.32-24.046 116.44 42.569 14.114 13.337-115.43 55.144-99.755 41.807 15.673-83.282 110.42-41.37 125.72 41.912 15.309 23.595-141.93 64.915-125.23 41.32 16.701-75.913 110.59-35.427 128.69 40.487 18.092 19.601-145.73 59.911-126.04 39.688 19.384-87.015 109.19-53.099 132" inkscape:connector-curvature="0" transform="translate(10 6161.6)" stroke="#d9d9d9" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".69435" fill="none"/>
<path id="shapes-f20-pt.svgrect1295" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" stroke="#000" stroke-width="1.0607" fill="none" style="color:#000000" transform="translate(10 6161.6)" xmlns:cc="http://creativecommons.org/ns#" d="m328.54 123.82c-2.04 2.51-3.88 4.35-4.99 3.66-3.33-2.05 0.34-25.26-3.01-27.22-3.69-2.163-6.36 12.8-10.07 10.7-3.37-1.91 9.25-8.58 5.79-10.35-3.83-1.946-14.7 5.13-18.57 3.32-3.5-1.64-2.36-13.322-5.88-14.985-3.87-1.837-3.35 14.265-7.33 12.595-3.61-1.51 6.69-16.724 3.09-18.164-3.97-1.59-20.54 13.704-24.53 12.199-3.61-1.364 10.79-12.038 7.12-13.304-4.05-1.397-14.43 13.878-18.52 12.552-3.7-1.201 7.5-21.868 3.8-22.982-4.09-1.23-10.7 11.069-14.85 9.988-3.76-0.978 4.93-10.615 1.15-11.491-4.18-0.967-10 14.484-14.14 13.436-3.76-0.949-6.84-13.073-10.66-13.745-4.21-0.743-3.03 11.415-7.24 10.563-3.82-0.772 2.79-21.082-1.06-21.657-4.26-0.635-6.91 16.709-11.14 16.088-3.83-0.562-1.2-11.067-5.08-11.535-4.29-0.518-14.76 11.12-19.01 10.695-3.85-0.385 8.19-11.526 4.29-11.756-4.32-0.254-15.9 14.753-20.2 14.496-3.89-0.232 2.93-17.09-0.97-17.148-4.31-0.064-8.5 14.957-12.78 14.983-3.87 0.023-4.31-20.487-8.17-20.331-4.27 0.173 1.13 16.525-3.18 16.839-3.91 0.285-4.59-7.679-8.45-7.381-4.25 0.329-0.49 7.461-4.73 7.956-3.83 0.448-11.19-13.514-15.02-12.994-4.235 0.574-2.67 21.621-6.941 22.275-3.87 0.592 0.631-18.393-3.182-17.634-4.211 0.837-2.413 14.4-6.586 15.292-3.778 0.807-6.453-18.313-10.209-17.37-4.148 1.042 3.682 20.97-0.442 22.055-3.734 0.982-11.935-16.567-15.646-15.469-4.098 1.212 2.892 16.488-1.237 17.634-3.74 1.038-13.97-8.376-17.635-7.116-4.047 1.393 6.564 16.692 2.519 18.165-3.662 1.334-9.859-20.465-13.48-19.093-3.998 1.516 0.721 24.664-3.27 26.294-3.615 1.48-12.287-23.561-15.823-21.962-3.9044 1.765 10.94 19.832 7.027 21.652-3.543 1.66-19.163-10.446-22.629-8.658-3.8267 1.973 12.636 13.638 8.7956 15.558-3.4775 1.74-13.58-17.343-16.928-15.426-3.696 2.118 1.6126 18.456-2.121 20.506-3.381 1.86-7.656-7.7-11.005-5.74-3.699 2.16 5.923 11.37 2.254 13.65-2.198 1.37-7.606-4.02-12.022-7.33"/>
<path id="shapes-f20-pt.svgpath2853" sodipodi:type="star" sodipodi:sides="10" sodipodi:r1="1251.4492" sodipodi:r2="717.9032" transform="translate(10 6161.6) matrix(.014410 .014410 -.014410 .014410 203.36 30.947)" sodipodi:arg2="0.67945593" sodipodi:arg1="0.32910642" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" inkscape:rounded="0.35" inkscape:flatsided="false" d="m586.43 1426.2c-43.667 223.11-607.31-342.5-726.14-152.6-112.6 179.95 553.03 440.4 382.13 578.64-180.35 145.88-273.96-407.71-456.45-305.84-172.93 96.54-11.436 801.22-215.59 792.77-215.44-8.9183-83.98-767.01-303.44-842.74-207.96-71.765-426.09 622.49-600.81 515.36-184.38-113.05 354.61-587.55 223.54-773.32-124.21-176.04-522.91 318.63-603.81 115.21-85.375-214.66 303.14-189.77 324.77-409.72 20.494-208.42-506.85-141.74-455.73-344.73 53.949-214.21 691.12 193.59 847.25 59.021 147.96-127.52-367.81-470.08-183.99-586 193.98-122.32 341.59 357.45 556.79 280.72 203.93-72.708-292.41-729.02-70.122-723.97 234.58 5.3314 103.61 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.573 871.44 156.12 149.32 631.61-214.95 669.22-24.661 39.686 200.81-672.27 93.024-650.52 316.18 20.609 211.46 497.47 202.37 456.09 413.8z"/>
<path id="shapes-f20-pt.svgpath1638" sodipodi:type="star" sodipodi:sides="10" sodipodi:r1="288.60358" sodipodi:r2="523.09772" transform="translate(10 6161.6) matrix(-.032405 0 0 -.036536 215.39 64.445)" sodipodi:arg2="1.3344848" sodipodi:arg1="1.0714496" inkscape:randomized="0.2" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" inkscape:rounded="0.41" inkscape:flatsided="false" d="m-461.01 1115.3c-89.538 41.738 75.071 313.48-16.994 344.62-98.551 33.334-21.146-293.77-140.04-305.43-111.07-10.889-111.45 326.3-202.38 279.97-97.331-49.594 83.587-124.57-8.1317-203.06-85.682-73.323-217.39 121-280.89 31.032-67.975-96.308 330.65-149.53 269.94-249.98-56.718-93.843-231.23 102.18-214.25-10.462 18.177-120.58 209.33-120.37 257.35-210.48 44.861-84.179-352.93-87.957-262.91-151.1 96.361-67.587 261.55 92.715 343.88 25.883 76.915-62.433-65.717-224.3 28.274-248.05 100.61-25.415-3.6735 213.89 114.04 241.54 109.96 25.833 122.88-255.01 205.82-199.99 88.781 58.89-72.685 131.53 16.178 214.57 83.015 77.57 253.34-68.348 311.9 11.528 62.687 85.503-314.71 4.0496-297.71 106.42 15.877 95.633 215.94 192.39 225.53 293.11 10.262 107.82-238.61-200.83-268.63-95.332-28.048 98.552 356.81 219.96 305.42 308.31-55.017 94.569-290.54-227.77-386.39-183.1z"/>
<path id="shapes-f20-pt.svgpath2855" sodipodi:type="star" sodipodi:sides="10" sodipodi:r1="2299.585" sodipodi:r2="4673.7515" transform="translate(10 6161.6) matrix(.0051313 .0088877 -.0088877 .0051313 121.96 127.94)" sodipodi:arg2="-0.12863391" sodipodi:arg1="-0.33254745" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" 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.56 666.4 1284.1 2154 488.7 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.51-370.23 215.82-2086.9-630.41-2610.7-759.83-470.37-646.4 1051.7-1051.4 224.45-451-921.26 1293.3-948.13 719.9-1705.4-514.84-679.99-2808.3 351.22-2892.3-503.15-93.511-951.51 2411.2 176.55 2464.2-721.76 47.573-806.61-2506.4-1245.3-1870.9-1908.7 707.73-738.9 1743.6 498.18 2577.5-27.557 748.71-472.06-1190-1457.1-315.06-1613.5 974.37-174.21 1798.9 855.02 2800.7 879.21 899.56 21.72-605.38-1743.7 274.02-1624.4 979.39 132.79-545.19 2655.8 315.59 2977.2 773 288.44 1450-1912.3 1912-1176.8 514.6 819.05-1780.6 910.33-1242.7 1740.7z"/>
<path id="shapes-f20-pt.svgpath2856" sodipodi:type="star" sodipodi:sides="7" sodipodi:r1="1962.3131" sodipodi:r2="987.2879" transform="translate(10 6161.6) matrix(-.012191 0 0 -.0092086 34.486 55.794)" sodipodi:arg2="-1.0812633" sodipodi:arg1="-1.6417338" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" 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.67 563.66-436.84 875.13-141.08 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.11 678.15 506.94 313.48 713.63-419.07 237.52-421.33-855.01-908.3-886.58-423.76-27.47-847.11 1206.8-1171.1 947.7-372.38-297.79 553.11-986.91 143.95-1326.3-356.05-295.33-1063.4 758.95-1074.6 341.38-12.866-479.86 1041.5-607.49 1031.8-1137.5-8.4117-461.25-1145.3-356.26-833.04-656.03 358.81-344.49 684.57 339.49 1117.7 40.252 376.94-260.39 136.38-1096.5 543.13-1116.9z"/>
<path id="shapes-f20-pt.svgpath2857" sodipodi:type="star" sodipodi:sides="7" sodipodi:r1="1395.4882" sodipodi:r2="866.36334" transform="translate(10 6161.6) matrix(-.0089874 0 0 -.0067885 23.879 128.72)" sodipodi:arg2="-1.0962105" sodipodi:arg1="-1.6706296" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" inkscape:rounded="0.4" inkscape:flatsided="false" d="m-624.47-581.43c325.22 56.055 9.0386 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.04 261.11 693.64 5.9323 752.21-327.67 75.209-268.13-428.54-571.07-381.87-235.92 36.343-425.66 907.59-636.9 739.05-271.25-216.43 198.89-667.12-80.939-853.57-217.92-145.2-642.09-86.641-720.66-317.79-100.89-296.82 544.95-125.88 616.97-441.64 56.082-245.9-582.08-516.88-375.45-681.65 265.33-211.58 294.71 291.45 603.54 157.11 240.5-104.62 149.68-933.57 402.95-889.91z"/>
<path id="shapes-f20-pt.svgpath2854" sodipodi:type="star" sodipodi:sides="7" sodipodi:r1="1251.4492" sodipodi:r2="717.9032" transform="translate(10 6161.6) matrix(.015753 0 0 .015753 262.21 110.75)" sodipodi:arg2="0.77790537" sodipodi:arg1="0.32910642" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" inkscape:rounded="0.4" inkscape:flatsided="false" d="m586.43 1426.2c-43.927 278.16-473.02-298.77-642.89-85.873-169.86 212.9 30.811 778.27-228.27 900.37s-113.21-638.05-388.63-673.98-331.62 698.53-527.43 520.94c-195.81-177.58 331.94-497.35 148.78-716.25s-587.83 148.93-658.44-126.83c-70.61-275.77 281.46-364.74 412.29-596.46s-276.92-479-71.128-630.46c205.8-151.45 366.12 220.77 643.8 138.73s182.27-375.84 449.97-389.69c267.7-13.846-241.94 460.31 23.777 552.89 265.72 92.579 626.35-408.15 720.35-156.88 93.999 251.28-346.05 473.05-354.59 754.56-8.5444 281.51 516.35 230.77 472.42 508.93z"/>
<path id="shapes-f20-pt.svgpath1295" sodipodi:type="star" d="m-243.69 1096.3c-31.669 187.63 292.03 205.47 168.19 354.49s-286.2-273.04-452.9-184.99c-166.7 88.051 66.848 485.71-113.84 439.58-180.69-46.129 150.23-338.83-32.762-413.88-183-75.051-457.32 259.79-578.77 103.81s444.89-179.21 432.07-357.15c-12.827-177.94-402.62-55.064-345.92-244.35 56.695-189.29 305.07-15.841 451.17-142.57 146.11-126.73-325.36-272.92-157.71-375.45 167.66-102.53 216.43 413.99 406.72 457.3s142.12-528.03 290.43-397.43c148.32 130.6-148.45 281.4-72.598 448.02 75.85 166.62 316.87-148.25 361.58 32.567 44.715 180.82-323.99 92.409-355.66 280.04z" sodipodi:r1="292.23001" inkscape:flatsided="false" transform="translate(10 6161.6) matrix(.015753 0 0 .015753 170.82 135.17)" sodipodi:arg2="0.77809157" sodipodi:arg1="0.32929262" inkscape:randomized="0.14" sodipodi:cy="945.83423" sodipodi:cx="-564.31024" xmlns:cc="http://creativecommons.org/ns#" inkscape:rounded="0.4" sodipodi:r2="717.9032" sodipodi:sides="7"/>
<text style="writing-mode:lr" font-weight="bold" font-size="8" y="6365.3262700000005" x="10" font-family="sans-serif" fill="#000000">
<tspan y="6365.3262700000005" x="10">Espirais</tspan>
</text>
<rect id="d0e743" display="none" height="1e3px" width="288" y="6370.5" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e743"/>
</flowRegion>
<flowPara >A espiral do Inkscape é uma ferramenta versátil, embora não tão cativantes como a estrela, ela pode ser por vezes muito útil. Uma espiral, assim como uma estrela, é desenhada a partir do centro. Enquanto é desenhada e editada:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 6426.5)"/>
<rect id="d0e749" display="none" height="1e3px" width="258" y="6420.5" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e749"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Ctrl+arraste</flowSpan> para atrair ao ângulo com incrementos de 15 graus.</flowPara>
</flowRoot>
<rect id="d0e755" display="none" height="1e3px" width="288" y="6449.3" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e755"/>
</flowRegion>
<flowPara >Uma vez desenhada, uma espiral apresenta 2 alças nas suas extremidades: interna e externa. Ambas as alças, quando simplesmente arrastadas, enrolam ou desenrolam a espiral (isto é, dá "continuidade" à espiral, mudando o número de voltas). Outras teclas de atalho:</flowPara>
</flowRoot>
<rect id="d0e758" display="none" height="1e3px" width="288" y="6508.1" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e758"/>
</flowRegion>
<flowPara >Na alça externa:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 6531.7)"/>
<rect id="d0e764" display="none" height="1e3px" width="258" y="6525.7" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e764"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Shift+arraste</flowSpan> para ampliar/rodar ao redor do centro (sem enrolar/desenrolar).</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 6559.7)"/>
<rect id="d0e770" display="none" height="1e3px" width="258" y="6553.7" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e770"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Alt+arraste</flowSpan> para manter o raio enquanto se enrola/desenrola.</flowPara>
</flowRoot>
<rect id="d0e776" display="none" height="1e3px" width="288" y="6571.4" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e776"/>
</flowRegion>
<flowPara >Na alça interna:</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 6595)"/>
<rect id="d0e782" display="none" height="1e3px" width="258" y="6589" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e782"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Alt+arraste</flowSpan> verticalmente para convergir/divergir a espiral.</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 6612.9)"/>
<rect id="d0e788" display="none" height="1e3px" width="258" y="6606.9" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e788"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Alt+clique</flowSpan> para repor a divergência no valor padrão.</flowPara>
</flowRoot>
<circle cy="0" cx="0" r="2" transform="translate(15 6631.1)"/>
<rect id="d0e794" display="none" height="1e3px" width="258" y="6625.1" x="20"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e794"/>
</flowRegion>
<flowPara ><flowSpan font-weight="bold">Shift+clique</flowSpan> para mover a alça interna para o centro.</flowPara>
</flowRoot>
<rect id="d0e800" display="none" height="1e3px" width="288" y="6642.8" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e800"/>
</flowRegion>
<flowPara >A <flowSpan font-style="italic">divergência</flowSpan> de uma espiral é a medida não linear das suas revoluções. Quando é igual a 1, a espiral é uniforme; quando é menor que 1 (<flowSpan font-weight="bold">Alt+arrastar</flowSpan> para cima), a espiral é mais densa na periferia; quando é maior que 1 (<flowSpan font-weight="bold">Alt+arrastar</flowSpan> para baixo), a espiral é mais densa no centro:</flowPara>
</flowRoot>
<text id="shapes-f21-pt.svgtext2996" sodipodi:linespacing="120.00000%" transform="translate(10 6709.9)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="45.595207" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f21-pt.svgtspan2985" y="-2.4563127" x="45.595207" sodipodi:role="line"/><tspan id="shapes-f21-pt.svgtspan2987"/><tspan id="shapes-f21-pt.svgtspan2989" y="3.9817331" x="45.595207" sodipodi:role="line">0,2</tspan></text>
<text id="shapes-f21-pt.svgtext3053" sodipodi:linespacing="120.00000%" transform="translate(10 6709.9)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="105.28775" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f21-pt.svgtspan2978" y="-2.4563127" x="105.28775" sodipodi:role="line"/><tspan id="shapes-f21-pt.svgtspan2980"/><tspan id="shapes-f21-pt.svgtspan2982" y="3.9817331" x="105.28775" sodipodi:role="line">0,5</tspan></text>
<text id="shapes-f21-pt.svgtext2982" sodipodi:linespacing="120.00000%" transform="translate(10 6709.9)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="285.30881" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f21-pt.svgtspan2971" y="-2.4563127" x="285.30881" sodipodi:role="line"/><tspan id="shapes-f21-pt.svgtspan2973"/><tspan id="shapes-f21-pt.svgtspan2975" y="3.9817331" x="285.30881" sodipodi:role="line">6</tspan></text>
<text id="shapes-f21-pt.svgtext3039" sodipodi:linespacing="120.00000%" transform="translate(10 6709.9)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="227.84541" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f21-pt.svgtspan2964" y="-2.4563127" x="227.84541" sodipodi:role="line"/><tspan id="shapes-f21-pt.svgtspan2966"/><tspan id="shapes-f21-pt.svgtspan2968" y="3.9817331" x="227.84541" sodipodi:role="line">2</tspan></text>
<text id="shapes-f21-pt.svgtext2960" sodipodi:linespacing="120.00000%" transform="translate(10 6709.9)" line-height="120.00000%" font-size="5.365" y="-2.4563127" x="167.37082" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="shapes-f21-pt.svgtspan2956" y="-2.4563127" x="167.37082" sodipodi:role="line"/><tspan id="shapes-f21-pt.svgtspan2958"/><tspan id="shapes-f21-pt.svgtspan2960" y="3.9817331" x="167.37082" sodipodi:role="line">1</tspan></text>
<path id="shapes-f21-pt.svgpath2948" sodipodi:argument="-36.758350" stroke="#000" stroke-width="1pt" fill="none" style="color:#000000" transform="translate(10 6709.9) matrix(-1 0 0 1 308.13 -6286.4)" sodipodi:t0="0.0000000" sodipodi:radius="28.251171" sodipodi:expansion="1.0000000" sodipodi:revolution="6.0000000" sodipodi:type="spiral" 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" sodipodi:cy="6322.4868" sodipodi:cx="138.38965"/>
<path id="shapes-f21-pt.svgpath2949" sodipodi:argument="-36.758350" stroke="#000" stroke-width="1pt" fill="none" style="color:#000000" transform="translate(10 6709.9) matrix(-1 0 0 1 368.36 -6287.8)" sodipodi:t0="0.0000000" sodipodi:radius="28.251171" sodipodi:expansion="2.0000000" sodipodi:revolution="6.0000000" sodipodi:type="spiral" 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" sodipodi:cy="6322.4868" sodipodi:cx="138.38965"/>
<path id="shapes-f21-pt.svgpath2950" sodipodi:argument="-36.758350" stroke="#000" stroke-width="1pt" fill="none" style="color:#000000" transform="translate(10 6709.9) matrix(-1 0 0 1 428.6 -6293)" sodipodi:t0="0.0000000" sodipodi:radius="28.251171" sodipodi:expansion="6.0000000" sodipodi:revolution="6.0000000" sodipodi:type="spiral" d="m138.39 6322.5c-0.01 0-0.01 0 0 0h0.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" sodipodi:cy="6322.4868" sodipodi:cx="138.38965"/>
<path id="shapes-f21-pt.svgpath2952" sodipodi:argument="-36.758350" stroke="#000" stroke-width="1pt" fill="none" style="color:#000000" transform="translate(10 6709.9) matrix(-1 0 0 1 247.89 -6285.4)" sodipodi:t0="0.0000000" sodipodi:radius="28.251171" sodipodi:expansion="0.50000000" sodipodi:revolution="6.0000000" sodipodi:type="spiral" 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" sodipodi:cy="6322.4868" sodipodi:cx="138.38965"/>
<path id="shapes-f21-pt.svgpath2953" sodipodi:argument="-36.758350" stroke="#000" stroke-width="1pt" fill="none" style="color:#000000" transform="translate(10 6709.9) matrix(-1 0 0 1 187.66 -6285.4)" sodipodi:t0="0.0000000" sodipodi:radius="28.251171" sodipodi:expansion="0.20000000" sodipodi:revolution="6.0000000" sodipodi:type="spiral" 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" sodipodi:cy="6322.4868" sodipodi:cx="138.38965"/>
<rect id="d0e822" display="none" height="1e3px" width="288" y="6782.2" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e822"/>
</flowRegion>
<flowPara >O número máximo de revoluções, ou seja voltas, para uma espiral é 1024.</flowPara>
</flowRoot>
<rect id="d0e825" display="none" height="1e3px" width="288" y="6809.4" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e825"/>
</flowRegion>
<flowPara >Assim como a ferramenta Círculo é adequada não apenas para círculos e elipses mas também para arcos (linhas de curvatura constante), a ferramenta Espiral é útil para fazer linhas com curvatura que <flowSpan font-style="italic">varia suavemente</flowSpan>. Comparada a uma curva Bézier comum, um arco ou uma espiral é geralmente mais prática porque se pode diminuí-la ou aumentá-la arrastando uma alça ao longo da curva sem afetar a sua forma. Para além disso, enquanto uma espiral é normalmente criada sem preenchimento, pode-se adicionar preenchimento e remover o traço para criar efeitos interessantes.</flowPara>
</flowRoot>
<path id="shapes-f22-pt.svgpath3031" style="color:#000000" 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="translate(10 6920.6) matrix(-.12864 .67933 -.67933 -.12864 4573.6 795.76)" sodipodi:argument="-17.179831" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" sodipodi:expansion="0.28900903" sodipodi:type="spiral" fill="#ff6c2e" sodipodi:t0="0.076614626"/>
<path id="shapes-f22-pt.svgpath2997" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 18.847 -4437)" sodipodi:t0="0.77700925" sodipodi:radius="36.507183" sodipodi:expansion="13.200652" sodipodi:revolution="2.8106463" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath2998" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 10.646 -4436.6)" sodipodi:t0="0.76208192" sodipodi:radius="47.161507" sodipodi:expansion="13.200652" sodipodi:revolution="2.8656998" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath2999" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 27.465 -4437)" sodipodi:t0="0.79235041" sodipodi:radius="28.202633" sodipodi:expansion="13.200652" sodipodi:revolution="2.7562277" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3000" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 36.191 -4437)" sodipodi:t0="0.81291085" sodipodi:radius="20.110537" sodipodi:expansion="13.200652" sodipodi:revolution="2.6865160" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3001" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 45.024 -4437)" sodipodi:t0="0.85272610" sodipodi:radius="10.697699" sodipodi:expansion="13.200652" sodipodi:revolution="2.5610781" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3002" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69092 .025772 -.025772 .69092 168.83 -4440)" sodipodi:t0="0.74191737" sodipodi:radius="67.193001" sodipodi:expansion="13.200652" sodipodi:revolution="2.9435861" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3003" sodipodi:argument="-17.513800" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 -6.2038 -4382.3)" sodipodi:t0="0.64947820" sodipodi:radius="32.027428" sodipodi:expansion="1.0000000" sodipodi:revolution="2.8106463" sodipodi:type="spiral" 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" sodipodi:cy="6456.9546" sodipodi:cx="151.28812"/>
<path id="shapes-f22-pt.svgpath3004" sodipodi:argument="-17.513800" stroke="#000" stroke-linecap="round" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(-.69140 0 0 .69140 220.31 -4382.5)" sodipodi:t0="0.64947820" sodipodi:radius="32.027428" sodipodi:expansion="1.0000000" sodipodi:revolution="2.8106463" sodipodi:type="spiral" 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" sodipodi:cy="6456.9546" sodipodi:cx="151.28812"/>
<path id="shapes-f22-pt.svgpath3626" style="color:#000000" sodipodi:revolution="3.7046297" sodipodi:radius="44.105801" d="m103.2 6518.4c-0.01 0 0 0 0 0h0.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="translate(10 6920.6) matrix(.67933 -.12864 -.12864 -.67933 981.5 4517.8)" sodipodi:argument="-17.179831" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" sodipodi:expansion="3.8924387" sodipodi:type="spiral" fill="#ff6c2e" sodipodi:t0="0.0000000"/>
<path id="shapes-f22-pt.svgpath3627" sodipodi:argument="-21.729349" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.17895 -.66784 .66784 .17895 -4374.6 -1086.5)" sodipodi:t0="0.53471386" sodipodi:radius="30.881491" sodipodi:expansion="3.8924387" sodipodi:revolution="3.7046297" sodipodi:type="spiral" 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" sodipodi:cy="6583.0801" sodipodi:cx="38.831650"/>
<path id="shapes-f22-pt.svgpath3628" sodipodi:argument="-21.729349" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(-.17895 -.66784 -.66784 .17895 4473 -1093.8)" sodipodi:t0="0.53471386" sodipodi:radius="30.881491" sodipodi:expansion="3.8924387" sodipodi:revolution="3.7046297" sodipodi:type="spiral" 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" sodipodi:cy="6583.0801" sodipodi:cx="38.831650"/>
<path id="shapes-f22-pt.svgpath3629" sodipodi:argument="-21.729349" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.48890 -.48890 .48890 .48890 -3201.2 -3162.8)" sodipodi:t0="0.53471386" sodipodi:radius="30.881491" sodipodi:expansion="3.8924387" sodipodi:revolution="3.7046297" sodipodi:type="spiral" 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" sodipodi:cy="6583.0801" sodipodi:cx="38.831650"/>
<path id="shapes-f22-pt.svgpath3630" sodipodi:argument="-21.729349" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 35.652 -4530.1)" sodipodi:t0="0.53471386" sodipodi:radius="30.881491" sodipodi:expansion="3.8924387" sodipodi:revolution="3.7046297" sodipodi:type="spiral" 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" sodipodi:cy="6583.0801" sodipodi:cx="38.831650"/>
<path id="shapes-f22-pt.svgpath3632" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 104.68 -4434)" sodipodi:t0="0.93520707" sodipodi:radius="28.202633" sodipodi:expansion="13.200652" sodipodi:revolution="2.7562277" sodipodi:type="spiral" d="m253.98 6460.7c6.16 6.9 5.36 17.5 1.84 25.4" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3633" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.69140 0 0 .69140 104.9 -4448.9)" sodipodi:t0="0.81344151" sodipodi:radius="28.202633" sodipodi:expansion="13.200652" sodipodi:revolution="2.7562277" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3634" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(.34570 -.59877 .59877 .34570 -3695.3 -2066.5)" sodipodi:t0="0.81344151" sodipodi:radius="28.202633" sodipodi:expansion="13.200652" sodipodi:revolution="2.7562277" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3635" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(-.48890 -.48890 .48890 -.48890 -2792.1 3319.2)" sodipodi:t0="0.79694211" sodipodi:radius="36.963310" sodipodi:expansion="13.200652" sodipodi:revolution="2.8132913" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3636" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(-.69140 6.1207e-8 -6.1207e-8 -.69140 425.78 4523.9)" sodipodi:t0="0.79712820" sodipodi:radius="36.849499" sodipodi:expansion="13.200652" sodipodi:revolution="2.8126345" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<path id="shapes-f22-pt.svgpath3089" sodipodi:argument="-16.245340" stroke="#000" stroke-width="1.4463pt" fill="none" style="color:#000000" transform="translate(10 6920.6) matrix(-.34570 .59877 -.59877 -.34570 4235.7 2172)" sodipodi:t0="0.77057040" sodipodi:radius="57.635422" sodipodi:expansion="13.200652" sodipodi:revolution="2.9095716" sodipodi:type="spiral" 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" sodipodi:cy="6461.3071" sodipodi:cx="242.34204"/>
<rect id="d0e841" display="none" height="1e3px" width="288" y="7032.5" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e841"/>
</flowRegion>
<flowPara >Especialmente interessantes são as espirais com traço pontilhado — elas combinam a concentração suave da forma com espaçamento regular de pontos ou pequenos traços criando belos efeitos moiré:</flowPara>
</flowRoot>
<path id="shapes-f23-pt.svgpath3032" sodipodi:argument="-36.806286" stroke="#000" stroke-width="3.75" fill="none" style="color:#000000" transform="translate(10 7079.8) matrix(-.17215 .64245 -.64245 -.17215 4263.8 1103.8)" sodipodi:t0="0.0000000" sodipodi:radius="68.998032" sodipodi:expansion="0.98582262" sodipodi:revolution="18.821123" sodipodi:type="spiral" 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" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" stroke-dasharray="1.8749997 1.8749997"/>
<path id="shapes-f23-pt.svgpath3088" sodipodi:argument="-36.806286" stroke="#000" stroke-width="7.5" fill="none" style="color:#000000" transform="translate(10 7079.8) matrix(-.17929 .65451 -.66912 -.17538 4637.7 1123.6)" sodipodi:t0="0.0000000" sodipodi:radius="68.998032" sodipodi:expansion="0.98582262" sodipodi:revolution="18.821123" sodipodi:type="spiral" 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" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" stroke-dasharray="3.7499994 3.7499994"/>
<path id="shapes-f23-pt.svgpath3090" sodipodi:argument="-36.806286" stroke="#000" stroke-width=".60429" fill="none" style="color:#000000" transform="translate(10 7079.8) matrix(-.17929 .65451 -.66912 -.17538 4536.4 1123.2)" sodipodi:t0="0.0000000" sodipodi:radius="68.998032" sodipodi:expansion="0.98582262" sodipodi:revolution="18.821123" sodipodi:type="spiral" 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" sodipodi:cy="6518.4199" sodipodi:cx="103.19778" stroke-dasharray="0.60429269 7.2515122"/>
<text style="writing-mode:lr" font-weight="bold" font-size="8" y="7201.817053600002" x="10" font-family="sans-serif" fill="#000000">
<tspan y="7201.817053600002" x="10">Conclusão</tspan>
</text>
<rect id="d0e860" display="none" height="1e3px" width="288" y="7207" x="10"/>
<flowRoot xml:space="preserve" font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e860"/>
</flowRegion>
<flowPara >As ferramentas de formas geométricas do Inkscape são muito poderosas. Aprenda os seus truques e brinque com elas no seu tempo livre — isto dará resultados quando fizer os seus trabalhos gráficos, porque usar formas em vez de caminhos simples é geralmente mais rápido e fácil para alterar. Se tem ideias para melhorar as ferramentas de formas geométricas, por favor entre em contacto com os programadores.</flowPara>
</flowRoot>
<g transform="translate(0 7289)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" style="color-interpolation-filters:sRGB" height="1.2" width="1.2" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
<feFlood id="feFlood58" result="flood" flood-color="rgb(255,255,255)" flood-opacity=".68628"/>
<feComposite id="feComposite60" operator="in" result="composite1" in2="SourceGraphic" in="flood"/>
<feGaussianBlur id="feGaussianBlur62" result="blur" stdDeviation="20" in="composite1"/>
<feOffset id="feOffset64" result="offset" dx="0" dy="0"/>
<feComposite id="feComposite66" operator="over" result="composite2" in2="offset" in="SourceGraphic"/>
</filter>
</defs>
<metadata id="metadata4" xmlns:cc="http://creativecommons.org/ns#">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g id="layer1" xmlns:cc="http://creativecommons.org/ns#" inkscape:label="Layer 1" inkscape:groupmode="layer">
<rect id="rect1494" transform="scale(1,-1)" fill-rule="evenodd" rx="0" ry="6.1828" height="69.248" width="319.99" y="-70.334" x="-.11217" fill="url(#linearGradient2465)"/>
<path id="path1508" d="m80.493 57.976h-4.9567v0.3171h0.14846c0.66805 0 0.74228 0.0338 0.74228 0.3172v3.6033c0 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.7059h0.93196c0.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.3172v3.6033c0 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.1957zm0-0.3172v-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.0256zm-7.1753-2.4832h-0.34639l-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.167c-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.9164h-1.8474zm-5.6907-1.0594h-0.3134l-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.36288zm-8.2557 0.0067h-0.30515l-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.355l0.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.7059v-2.0311c0-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.3172v3.6033c0 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-1.0526l0.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.4858zm-9.2207-2.6654h-1.698v0.3171h0.20618c0.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.1189zm-5.3609 0.8299v-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.3172v3.6033c0 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.1957z" inkscape:connector-curvature="0" stroke-width="1pt" fill="#fff"/>
<path id="path1517" d="m305.97 58.204h1.3557v2.8174c0 0.5319-0.0188 0.8614-0.0565 0.9885-0.12709 0.4849-0.41659 0.8191-0.8685 1.0027-0.31068 0.1271-0.76965 0.1906-1.3769 0.1906-1.4357 0-2.1536-0.4284-2.1536-1.2851l1.4334-0.007c0.0941 0.2683 0.36246 0.4024 0.80495 0.4024 0.32481 0 0.55311-0.1012 0.68492-0.3036 0.0989-0.1553 0.14828-0.4095 0.14828-0.7626v-0.12c-0.42837 0.3436-0.8991 0.5154-1.4122 0.5154-0.55546 0-1.0003-0.1765-1.3345-0.5295-0.33422-0.3578-0.50133-0.8144-0.50133-1.3699 0-0.4848 0.19065-0.8897 0.57194-1.2145 0.35776-0.3012 0.78613-0.4519 1.2851-0.4519 0.64491 0 1.118 0.2095 1.4193 0.6285zm-0.0635 1.6382c0-0.226-0.0894-0.4048-0.26831-0.5367-0.17418-0.1365-0.37894-0.2047-0.61431-0.2047-0.2542 0-0.46367 0.0729-0.62843 0.2189-0.16005 0.1459-0.24007 0.3436-0.24007 0.5931 0 0.2071 0.0824 0.386 0.24713 0.5366 0.08 0.0706 0.16711 0.1248 0.26126 0.1624 0.0941 0.0377 0.19535 0.0565 0.30362 0.0565 0.27303 0 0.49192-0.0682 0.65667-0.2048 0.1883-0.1506 0.28244-0.3577 0.28244-0.6213zm-6.2984-1.6382h1.4122v0.6143c0.24478-0.4519 0.60018-0.6778 1.0662-0.6778l0.42366 0.0423v1.2922c-0.21183-0.0376-0.39777-0.0565-0.55782-0.0565-0.59783 0-0.89675 0.3554-0.89675 1.0662v1.3699h-1.4475zm-2.6691-0.1271c0.62608 0 1.1462 0.1648 1.5605 0.4943 0.43778 0.3531 0.65668 0.8403 0.65668 1.4616 0 0.6073-0.21419 1.0898-0.64256 1.4475-0.40953 0.3295-0.92263 0.4943-1.5393 0.4943-0.68256 0-1.2286-0.153-1.6382-0.459-0.46132-0.3389-0.69198-0.8402-0.69198-1.504 0-0.6213 0.23301-1.1085 0.69904-1.4616 0.42366-0.3154 0.95559-0.4731 1.5958-0.4731zm-0.0353 2.8668c0.24007 0 0.43543-0.0894 0.58606-0.2683 0.15064-0.1789 0.22595-0.3931 0.22595-0.6426s-0.0706-0.4636-0.21183-0.6425c-0.14122-0.1789-0.33422-0.2683-0.579-0.2683-0.25419 0-0.45896 0.087-0.6143 0.2612-0.0753 0.0895-0.13181 0.186-0.16947 0.2895-0.0377 0.0989-0.0565 0.2189-0.0565 0.3601 0 0.2589 0.0706 0.4755 0.21183 0.6496 0.14122 0.1742 0.34364 0.2613 0.60725 0.2613zm-4.046-0.5155h1.4475v1.4264h-1.4475zm-3.5658-0.0141c0.15534 0.3766 0.40248 0.5649 0.7414 0.5649 0.35776 0 0.58371-0.0989 0.67786-0.2966 0.0847 0 0.29656 0.0142 0.63549 0.0424s0.63549 0.0424 0.88968 0.0424c-0.24007 0.466-0.54369 0.7908-0.91087 0.9744-0.33422 0.16-0.7767 0.2401-1.3275 0.2401-0.64491 0-1.1627-0.1671-1.5534-0.5014-0.41895-0.353-0.62843-0.8473-0.62843-1.4828 0-0.6072 0.22831-1.0874 0.68492-1.4404 0.40954-0.3107 0.9344-0.466 1.5746-0.466 0.62607 0 1.1392 0.16 1.5393 0.4801 0.40012 0.3154 0.62842 0.7814 0.68491 1.3981l0.0141 0.4448zm1.5252-0.8614c-0.0565-0.3295-0.2942-0.4943-0.71316-0.4943-0.16005 0-0.32716 0.0447-0.50133 0.1342-0.16946 0.0894-0.26125 0.2094-0.27538 0.3601zm-7.7671-1.3487h1.4404l-0.007 0.459c0.39542-0.3813 0.84262-0.5719 1.3416-0.5719 0.55547 0 0.9956 0.1741 1.3204 0.5225 0.32951 0.3436 0.49427 0.7955 0.49427 1.3557 0 0.579-0.16005 1.0521-0.48015 1.4192-0.33422 0.3907-0.78377 0.5861-1.3486 0.5861-0.30598 0-0.5484-0.0353-0.72728-0.1059-0.17417-0.0706-0.37188-0.2142-0.59313-0.4307v1.6875h-1.4404zm2.2736 2.7468c0.2589 0 0.46838-0.0895 0.62843-0.2684 0.16005-0.1835 0.24007-0.4048 0.24007-0.6637 0-0.2636-0.0753-0.4778-0.22595-0.6425-0.14122-0.1695-0.34363-0.2542-0.60724-0.2542-0.23537 0-0.44014 0.0847-0.61431 0.2542-0.17417 0.1694-0.26126 0.3765-0.26126 0.6213 0 0.2542 0.0777 0.4778 0.23302 0.6708 0.15534 0.1883 0.35775 0.2825 0.60724 0.2825zm-6.8139-1.6453c0.11769-0.4754 0.37894-0.812 0.78377-1.0097 0.29657-0.1412 0.72729-0.2118 1.2922-0.2118 0.52722 0 0.95323 0.1036 1.278 0.3107 0.3907 0.2495 0.58606 0.6237 0.58606 1.1227v1.6876c0 0.1082 0.009 0.2071 0.0282 0.2965 0.0188 0.0895 0.0565 0.2071 0.11298 0.3531h-1.4899l-0.0494-0.4237c-0.34363 0.3531-0.75552 0.5296-1.2357 0.5296-0.39071 0-0.72728-0.0918-1.0097-0.2754-0.31539-0.2165-0.47309-0.5131-0.47309-0.8897 0-0.4095 0.13416-0.7131 0.40248-0.9109 0.193-0.1412 0.50133-0.2447 0.92499-0.3106l1.0238-0.1201c0.22124-0.0376 0.33187-0.0965 0.33187-0.1765 0-0.1836-0.13887-0.2754-0.4166-0.2754-0.16005 0-0.2895 0.0189-0.38836 0.0565-0.0989 0.033-0.17652 0.1153-0.23301 0.2471zm1.271 1.3558c0 0.1977 0.16711 0.2965 0.50133 0.2965 0.20713 0 0.39071-0.0659 0.55076-0.1977 0.16476-0.1318 0.24714-0.2966 0.24714-0.4943l-0.95324 0.1201c-0.0659 0.0047-0.14122 0.0353-0.22595 0.0918-0.08 0.0518-0.12004 0.1129-0.12004 0.1836zm-1.5746-1.038-1.4404 0.0706c-0.0894-0.193-0.17653-0.3319-0.26126-0.4166-0.11297-0.0989-0.26831-0.1483-0.46602-0.1483-0.26361 0-0.46838 0.0942-0.61431 0.2825-0.14122 0.1835-0.21183 0.4119-0.21183 0.6849 0 0.2353 0.08 0.4354 0.24007 0.6002 0.16005 0.16 0.35776 0.24 0.59313 0.24 0.37658 0 0.62137-0.2094 0.73434-0.6284l1.4546 0.0636c-0.24008 1.0685-0.97442 1.6028-2.203 1.6028-0.65432 0-1.1839-0.16-1.5887-0.4801-0.4519-0.3484-0.67785-0.838-0.67785-1.4687 0-0.6402 0.24478-1.1345 0.73434-1.4828 0.43308-0.3107 0.98148-0.4661 1.6452-0.4661 0.52722 0 0.97207 0.1318 1.3345 0.3954 0.36717 0.259 0.6096 0.6426 0.72728 1.151zm-7.407 1.038c0.0989 0.1647 0.22595 0.273 0.38129 0.3248 0.10827 0.0329 0.27538 0.0494 0.50134 0.0494 0.0612 0 0.10591-0.0024 0.13415-0.0071 0.0283-0.0094 0.0659-0.0259 0.11298-0.0494 0.10356-0.0424 0.15534-0.1059 0.15534-0.1906 0-0.1271-0.2236-0.2142-0.67079-0.2613-0.60725-0.0706-1.0215-0.1506-1.2427-0.2401-0.44719-0.1789-0.67079-0.4872-0.67079-0.925 0-0.4754 0.2283-0.8214 0.68491-1.0379 0.34364-0.1648 0.78142-0.2472 1.3134-0.2472 1.1109 0 1.7582 0.379 1.9418 1.1369l-1.3698 0.0917c-0.0706-0.1223-0.16005-0.2118-0.26832-0.2683-0.0988-0.0329-0.22595-0.0494-0.38129-0.0494-0.35776 0-0.53664 0.0847-0.53664 0.2542 0 0.0565 0.0612 0.1059 0.18359 0.1483 0.1271 0.0423 0.44013 0.0941 0.93911 0.1553s0.84497 0.1507 1.038 0.2683c0.29656 0.1695 0.44484 0.4472 0.44484 0.8332 0 0.4425-0.20242 0.7862-0.60725 1.0309-0.33422 0.1977-0.74375 0.2966-1.2286 0.2966-0.60254 0-1.0686-0.0683-1.3981-0.2048-0.46602-0.1883-0.75787-0.5295-0.87556-1.0238zm-5.9242-3.7847h1.4404v2.2807l1.1721-0.9533h1.9983l-1.7511 1.3699 1.7582 2.2877h-1.7017l-1.0803-1.4898-0.39542 0.2895v1.1933h-1.4404zm-4.8509 1.3204h1.4475v0.4801c0.37188-0.386 0.82614-0.579 1.3628-0.579 0.42837 0 0.77436 0.1201 1.038 0.3601 0.26832 0.2354 0.40247 0.5696 0.40247 1.0027v2.4078h-1.4192l-0.0141-2.0548c0-0.1883-0.0588-0.3412-0.17652-0.4589-0.11768-0.1177-0.26832-0.1766-0.45191-0.1766-0.23536 0-0.41895 0.0918-0.55075 0.2754-0.1271 0.1836-0.19065 0.3978-0.19065 0.6426v1.7582h-1.4475zm-1.9841 0.007h1.4404v3.6364h-1.4404zm0.007-1.3345h1.4404v0.9815h-1.4404zm-2.1254 3.5587h1.4475v1.4264h-1.4475zm-5.6982-2.2242 0.61431 2.2737c0.0424-0.2731 0.13651-0.652 0.28244-1.1368 0.0612-0.2166 0.12003-0.4378 0.17652-0.6638 0.0424-0.16 0.08-0.3177 0.11298-0.4731l1.4828 0.0071 0.33186 1.1368c0.10827 0.419 0.1883 0.8073 0.24008 1.1651 0.0282-0.1883 0.0612-0.3672 0.0988-0.5367 0.0377-0.1741 0.0941-0.3836 0.16946-0.6284 0.0565-0.1883 0.11063-0.3672 0.16241-0.5366 0.0518-0.1742 0.11533-0.3766 0.19064-0.6073h1.4758l-1.2851 3.6576h-1.5605l-0.55782-2.0971-0.60018 2.0971h-1.5534l-1.2851-3.6576zm-6.5314 0 0.61431 2.2737c0.0424-0.2731 0.13651-0.652 0.28244-1.1368 0.0612-0.2166 0.12004-0.4378 0.17652-0.6638 0.0424-0.16 0.08-0.3177 0.11298-0.4731l1.4828 0.0071 0.33186 1.1368c0.10827 0.419 0.1883 0.8073 0.24008 1.1651 0.0282-0.1883 0.0612-0.3672 0.0988-0.5367 0.0377-0.1741 0.0942-0.3836 0.16947-0.6284 0.0565-0.1883 0.11062-0.3672 0.1624-0.5366 0.0518-0.1742 0.11533-0.3766 0.19065-0.6073h1.4757l-1.2851 3.6576h-1.5605l-0.55782-2.0971-0.60018 2.0971h-1.5534l-1.2851-3.6576zm-6.5314 0 0.6143 2.2737c0.0424-0.2731 0.13651-0.652 0.28244-1.1368 0.0612-0.2166 0.12004-0.4378 0.17653-0.6638 0.0424-0.16 0.08-0.3177 0.11297-0.4731l1.4828 0.0071 0.33187 1.1368c0.10827 0.419 0.18829 0.8073 0.24007 1.1651 0.0282-0.1883 0.0612-0.3672 0.0988-0.5367 0.0377-0.1741 0.0942-0.3836 0.16947-0.6284 0.0565-0.1883 0.11062-0.3672 0.1624-0.5366 0.0518-0.1742 0.11533-0.3766 0.19065-0.6073h1.4758l-1.2851 3.6576h-1.5605l-0.55782-2.0971-0.60019 2.0971h-1.5534l-1.2851-3.6576z" inkscape:connector-curvature="0" stroke-width="1pt" fill="#fff"/>
<g id="g1515" filter="url(#filter56)" fill-rule="evenodd" transform="matrix(.029418 0 0 .029418 .15691 53.986)">
<path id="path1516" d="m397.64 320.25-117.25-37.73l-29.65-157.68 94.34-95.688 48.518 17.52 90.297 88.949z" inkscape:connector-curvature="0" stroke="#000" stroke-width=".93619pt" fill="#fff"/>
<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" inkscape:connector-curvature="0" stroke-width="1pt"/>
<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" inkscape:connector-curvature="0" stroke-width="1pt"/>
<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" inkscape:connector-curvature="0" stroke-width="1pt"/>
<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.07-4.46-22.12-12.95-30.62l-154.07-154.06c-8.66-8.667-19.99-12.987-31.3-12.987zm-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.745z" inkscape:connector-curvature="0" stroke-width="1pt"/>
</g>
<use id="use1328" style="color:#000000" fill-opacity=".064615" xlink:href="#path1508" transform="matrix(5.1767 0 0 5.1767 -102.7 -256.62)" height="1052.3622" width="744.09448" y="0" x="0" font-family="sans-serif" fill="#ffffff"/>
<text id="text7519" opacity=".5" transform="rotate(-90)" line-height="125%" font-size="6.9693px" y="-6.5672836" x="-70.83046" font-family="sans-serif" sodipodi:linespacing="125%" fill="#000000"><tspan id="tspan7521" sodipodi:role="line" x="-70.83046" style="letter-spacing:.29056" y="-6.5672836">Usar <tspan id="tspan7523" font-weight="bold">Ctrl+seta para cima</tspan> para subir </tspan></text>
<path id="path7527" opacity=".5" style="color:#000000" d="m-12.641-76.168 8.1397 0.02212-4.0438-5.1906z" fill-rule="evenodd" inkscape:connector-curvature="0"/>
</g>
</g>
</svg>
|