-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtutorials.htm
More file actions
1182 lines (1096 loc) · 61.5 KB
/
Copy pathtutorials.htm
File metadata and controls
1182 lines (1096 loc) · 61.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matrices.net - Tutorials</title>
<meta content="" name="description">
<meta content="Sara 'Matrices' Howard" name="author">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link href="css/normalize.css" rel="stylesheet">
<link href="css/skeleton.css" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="https://www.Matrices.net/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://www.Matrices.net/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://www.Matrices.net/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://www.Matrices.net/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="https://www.Matrices.net/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="https://www.Matrices.net/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="https://www.Matrices.net/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://www.Matrices.net/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="https://www.Matrices.net/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="https://www.Matrices.net/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="https://www.Matrices.net/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="https://www.Matrices.net/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="https://www.Matrices.net/favicon-128.png" sizes="128x128" />
<meta name="application-name" content="Matrices.net"/>
<meta name="msapplication-TileColor" content="#76E798" />
<meta name="msapplication-TileImage" content="https://www.Matrices.net/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="https://www.Matrices.net/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="https://www.Matrices.net/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="https://www.Matrices.net/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="https://www.Matrices.net/mstile-310x310.png" />
<style type="text/css">
.auto-style1 {
text-align: center;
}
.auto-style2 {
text-align: left;
}
.one-half.column {
width: 48%;
padding-bottom: 30px;
padding-left: 15px;
}
.auto-style3 {
font-size: large;
}
.auto-style5 {
font-size: small;
}
.auto-style6 {
font-size: large;
color: #00B000;
}
</style>
</head>
<body>
<div class="container">
<div align="center">
<a class="button button-primary" href="about.htm">About Me</a>
<a class="button button-primary" href="index.htm">Home</a>
<a class="button button-primary" href="hire.htm">Services</a>
<a class="button button-primary" href="https://matrices.etsy.com">Pattern Shop</a>
<a class="button button-primary" href="https://matrices.bigcartel.com/">Online Store</a>
</div>
<br>
<h1 class="auto-style2">Tutorials</h1>
<p class="auto-style2">Welcome to the creative space! This is where you can find
out how I create the projects that I enjoy and share tips on how you can make
them too! Making things has been a passion of mine for most of my life, so this
section of my site is dedicated to lots of tips, hints, as well as many examples
on how I make my cute costumes and projects! </p>
<p class="auto-style2">One thing to keep in mind while creating your own
projects is to be as resourceful as possible! While I may have used one
particular item, product, or technique in creating a costume or item -- if
you find something similar for less cost, or found a different way -- share
that information with others! You may find something better, or a different
technique, and it will only develop innovation. I highly encourage you to
share your ideas and experiences with others because it fosters further
knowledge and innovation. </p> <p> </p>
<h3>Search</h3>
I have a lot of content
available on my tutorial site! Make good use of it by utilizing the "Search" tool and discover new guides
or info that you maybe haven't noticed before! This search also includes
content that I may have reblogged from other artists, too! Enjoy!<br>
<br>
<center><script>
function process()
{
var url="http://pupdates.matrices.net/search/" + document.getElementById("url").value;
location.href=url;
return false;
}
</script>
<form onSubmit="return process();">
<input type="text" placeholder="Search Matrices.net!" name="url" id="url"> <input class="button-primary" type="submit" value="go">
</form>
</center> <p> </p>
<h3>Fursuit Building</h3> <div class="row">
<div class="three columns" style="text-align: center">
<img src="images/teacher200.png" >
</div>
<div class="nine columns">
<p>Costuming, cosplay, dressing up, fursuiting, whatever you consider it to
be. I think its really cute innocent fun, and I love maskmaking and creating
costume items. It has been my hobby for well over 15 years now and I really
enjoy seeing what others create too!</p>
<p>The process surrounding creating
things such as fursuits is called <em>prototyping</em>, it is a perfectly
natural part of the learning curve to learn to make new items by making
rough versions and refining them as you gain skill and learn new techniques.
Practice new techniques on scraps before applying to your final project, and
most importantly don't stop trying!! Even if something doesn't work out as
you expect, it is still a learning experience! It is for sure more fun to have a
costume than it is to not have a costume, so have fun with what you make! </p>
</div>
</div>
<hr width="80%" noshade color="#000000" align="center">
<h5>Resources</h5>
<p>I have collected lists of many useful things that relate to fursuit and costume building, crafting, including supplies! I sincerely hope these resources help you in your craft endeavors!
In the resources links you will find in this section include faux fur suppliers, foam
suppliers, and links to other tutorials and guides by other artists. </p>
<div class="row">
<div class="one-half column">
<img src="images/supplieslist.png" ><br><a href="http://pupdates.matrices.net/post/163394770088/fursuit-and-crafting-resources">
<span class="auto-style3">Fursuit and Crafting Resources</span></a>
<br><span class="auto-style5">A full list of resources for other
tutorials and supplies, including fur and foam. </span>
</div>
<div class="one-half column">
</div>
</div>
<hr width="80%" noshade color="#000000" align="center">
<h3>Premium Guides and Patterns </h3>
<p>A handful of tutorials that have been made available for sale in a printable format.
Including highly specific and detailed information or patterns that you can
follow. </p>
<p> </p>
<div class="row">
<div class="one-half column">
<img src="images/handpawicon.png"><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/1169809787/pattern-and-tutorial-shaped-5-digit">Shaped 5-digit Handpaw Pattern & Tutorial</a></span>
<br><span class="auto-style5">This shaped and detailed handpaw design is
fantastically fun to wear. Just the right blend of dexterity and shaped
animalistic fingers.The pattern offers two types of finger digits; slim
and puffy, with three sizes of claws to use and includes a 40-page ebook
with over 90 pictures to teach you how to make them!</span></div>
<div class="one-half column">
<img src="images/3digitIcon.png" ><br>
<span class="auto-style3">
<img src="images/new.jpg" ><a href="https://matrices.etsy.com/listing/1706798513/pattern-and-tutorial-3-digit-handpaws">Shaped 3-digit Handpaw
Pattern and Tutorial</a></span>
<br><span class="auto-style5">This is a 3-digit handpaw pattern featuring big chunky claws! This
makes a very fun dinosaur, creature, monster, critter with hooves, or
hybrid animal paw shape. It includes a detailed 39-page ebook on
making and sewing the handpaw pattern with step-by-step instructions and
60+ pictures.</span></div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/TeethIcon.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/1031252614/pattern-and-tutorial-sewn-teeth-for">Sewn Teeth for Fursuits</a></span>
<br><span class="auto-style5">This tutorial goes into a step by step detail on how to create and install sewn teeth, with a few alternate ways to install them as well! The printable sewing pattern features 3 shapes of fangs and 2 sets of lower incisors with fangs as well as details on how to draft your very own tooth patterns.</span>
</div>
<div class="one-half column">
<img src="images/WagIcon.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/985468900/premium-tutorial-prehensile-tail">Prehensile Tail Technique</a></span>
<br><span class="auto-style5">This teaches you how to create the inner
assembly that will give a tail the ability to be puppeted with a cord.
This technique gives lots of fun, lively movement to tails. Its a great feature to add, even on critters that don't normally have prehensile anatomy
since it can make a tail that wags or curls around stuff.</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/nosesicon.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/1177705754/pattern-and-tutorial-all-about-fursuit">All About Fursuit Noses</a></span>
<br><span class="auto-style5">An in-depth tutorial on all kinds of fursuit noses. This guide includes 26 pages of detailed information on sewing noses, sculpting them, covering them in fabric, and also a few tips for installing purchased noses by other artists.
With six nose patterns - 3 for sewing, 2 for foam carving, and 1 for
sculpting.</span>
</div>
<div class="one-half column">
<img src="images/ZiponIcon.png" ><br>
<span class="auto-style3">
<img src="images/new.jpg" ><a href="https://matrices.etsy.com/listing/1695383009/premium-tutorial-how-to-make-a-zip-on">Zip-on Tail Technique</a></span>
<br><span class="auto-style5">The .PDF version of my zip-on tail
technique with additional information. Create a removable yet smooth
transition between body and tail by installing a zipper with this
technique to make the
connection.</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/ToonyEyesIcon.png" ><br>
<span class="auto-style3">
<img src="images/new.jpg" ><a href="https://matrices.etsy.com/listing/1681203022/premium-tutorial-making-toony-eyes-from">Toony Eyes with Upcycled Materials</a></span>
<br><span class="auto-style5">The .PDF version of Making Toony Eyes with
additional information. Teaching you how to make and install eyes using
easily obtainable materials!</span>
</div>
<div class="one-half column">
<img src="images/PaddingIcon.png" ><br>
<span class="auto-style3">
<img src="images/new.jpg" ><a href="https://matrices.etsy.com/listing/1681204954/premium-tutorial-patterning-pillow">Pillow Inserts for Padded Bodies</a></span>
<br><span class="auto-style5">The .PDF version of my fursuit body
padding tutorial with additional information. Learn about making soft
pillow-based body padding and tips on counteracting gravity with this guide.</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/HoodieIcon.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/940718052/premium-tutorial-tailoring-a-hoodie-with">Tailoring a Hoodie with Ear Pockets</a></span>
<br><span class="auto-style5">Learn the steps on how to tailor an existing hoodie to have ear pockets fitted to your fursuit! This tutorial focuses on how to edit an existing garment to feature those ear pockets instead of making one from scratch. Good for beginners to tailoring!</span>
</div>
<div class="one-half column">
<img src="images/SandalIcon.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/875189073/premium-tutorial-deluxe-paw-sandals-for">Deluxe Paw Sandal Tutorial</a></span>
<br><span class="auto-style5">This tutorial is here to guide you through building a pair of fursuit sandals that will be
made to fit a set of existing fursuit footpaws. It will help teach you how to make sandals that not only look good, but are made to be durable to protect your indoor feet on your outdoor
adventures.</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/modelshape.png" ><br>
<a href="https://matrices.etsy.com/listing/653714425/premium-tutorial-prototyping-with-a">
<span class="auto-style3">Prototyping With A Scale Model</span></a>
<br><span class="auto-style5">This guide shows you the process of making a small maquette to prototype a sewing pattern from. This tutorial demonstrates footpaws, but it can literally be anything you dream up! Imagine plush figures, handpaws, tails, bodies, etc.</span>
</div>
<div class="one-half column">
<img src="images/zippershape.png" ><br>
<a href="https://matrices.etsy.com/listing/684815037/premium-tutorial-deluxe-zipper-technique">
<span class="auto-style3">Deluxe Zipper
Technique for Faux Fur</span></a>
<br><span class="auto-style5">Level up your
zipper techniques and create beautifully finished and
well-hidden zippers in faux fur! Utilize large-toothed zippers
that can be hidden completely in the fur with a durable flap
that helps keep the fur out of the zipper track. </span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/freeform.png" ><br>
<a href="https://matrices.etsy.com/listing/777017919/premium-tutorial-free-form-patterning-a">
<span class="auto-style3">Free-form Patterning a Fursuit Head</span></a>
<br><span class="auto-style5">Learn how to make your own repeatable pattern to build foam fursuit heads! The end goal of this technique is to achieve a simple, hollow, fursuit-style head base that can be easily lined. Useful or unique shapes can be saved and repeated for the future.
</span>
</div>
<div class="one-half column">
<img src="images/shaver.png" ><br>
<span class="auto-style6">
<a href="https://matrices.etsy.com/listing/830787996/premium-tutorial-getting-a-close-shave">Getting a Close Shave</a> </span><br><span class="auto-style5">Learn how to shave faux fur like a pro, written for beginner and advanced crafters alike! While some shaving can be avoided by purchasing fur in the length needed, that’s not always possible! This guide also features info on what tools to use and breaks down the shaving process into various steps that line up with the fursuit costume construction process.</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/footpawshape.png" ><br>
<a href="https://matrices.etsy.com/listing/639864906/pattern-and-tutorial-fursuit-plantigrade">
<span class="auto-style3">Plantigrade Footpaw Pattern and Tutorial</span></a>
<br><span class="auto-style5">A pattern for a comfortable set of plantigrade footpaws with a liner. It includes a detailed tutorial for making and sewing the footpaws and liner with step-by-step instructions.
</span>
</div>
<div class="one-half column">
<img src="images/soleshape.png" ><br>
<a href="https://matrices.etsy.com/listing/653709457/premium-tutorial-creating-liners-and">
<span class="auto-style3">Creating Liners & Soles for Stuffed Footpaws</span></a>
<br><span class="auto-style5">
Learn in detail how to make lined and stuffed footpaws with both indoor or outdoor finishing! Includes a tutorial with step-by-step instructions and a pattern for a footpaw liner.
</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/WebbedIcon.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/889213715/premium-tutorial-webbed-fingers-for">How to Make Webbed Fingers</a></span>
<br><span class="auto-style5">This tutorial will show you a cool advanced sewing technique to make webbed fingers for costume projects and fursuit parts. It can also be scaled up for fins, wings, or other features on a costume where a “web” or “membrane” of skin is needed to span from one side to another.</span>
</div>
<div class="one-half column" >
<img src="images/clawshape.png" ><br>
<a href="https://matrices.etsy.com/listing/658888382/pattern-and-tutorial-retractable-claws">
<span class="auto-style3">Retractable Claws</span></a>
<br><span class="auto-style5">A clever way to create claws that retract
like a cat's paw, pushing them out with the wearer's fingers and using
elastic to pull them back in. Pattern for how to sew just the
retractable claw assembly, the rest of the paw is up to you!</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<br>
<img src="images/MuzzleIcon.png" ><br>
<span class="auto-style6">
<a href="https://matrices.etsy.com/listing/990372311/pattern-and-tutorial-fursuit-sized-dog">Fursuit-sized Dog Muzzle Prop</a></span>
<br><span class="auto-style5">Too much barking? Just can't stop talking in fursuit? Might bite? Maybe you or a friend needs a muzzle!
This is a sewing pattern on how to make a fursuit-sized dog muzzle. It includes notes on adjusting the size to fit shorter or broader snouts on fursuit masks as well.</span>
</div>
<div class="one-half column">
<img src="images/bigcollar.png" ><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/691812612/pattern-and-tutorial-big-collars-for">Big Collars!</a>
</span><br><span class="auto-style5">Learn how
to make your very own BIG collar! These are working over-sized
collars intended for a fursuit or cosplay costume accessory or
can even be made for a pet! Lots of step-by-step photos to help
you along!</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/TonguesIcon.png"><br>
<span class="auto-style6">
<a href="https://matrices.etsy.com/listing/1223590856/pattern-and-tutorial-sewn-tongues-for">
Sewn Tongues for Fursuits</a></span>
<br><span class="auto-style5">20-pages of step by step instruction on how to sew and install a flat or 3-dimensional sewn tongue,
With 4 printable pattern designs included..</span>
</div>
<div class="one-half column">
<img src="images/SeamsIcon.png"><br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/listing/1292229384/premium-tutorial-making-tidy-seams-using">
Making tidy seams using tipped and specialty faux furs</a>
</span><br><span class="auto-style5">My guide on making tidy seams using tipped or
specialty faux furs teaches you how to treat the seam allowance when sewing tipped furs or
fur fabrics that easily show a visible seam line. It explains
what's happening and why its happening, with solutions to
correct it before and after sewing!!</span>
</div>
</div>
<div class="row">
<div class="one-half column">
<img src="images/MannequinIcon.png" ><br>
<span class="auto-style3">
<img src="images/new.jpg" ><a href="https://matrices.etsy.com/listing/1695376491/premium-tutorial-making-a-mannequin-head">Making a Mannequin Head to Measurements</a></span>
<br><span class="auto-style5">The .PDF version of making a mannequin
head to measurements. How to make sure a
mannequin is adjusted for use with making a fursuit head project. This is
a tutorial designed to show how to make use of an inexpensive styrofoam
wig head and transform it into something truly useful by using low cost
materials.</span>
</div>
<div class="one-half column">
<br>
<span class="auto-style3">
<a href="https://matrices.etsy.com/"> </a></span>
<br><span class="auto-style5"> </span>
</div>
</div>
<hr width="80%" noshade color="#000000" align="center">
<p> </p>
<h3>Free Tutorials</h3>
<p>I'm very proud to present all of the tutorials I have worked hard to make,
the ones below are made free for the creative
enjoyment of the community! If you enjoy the content I make, share credit that you learned it right here from Matrices.net! That way others can learn how with my guides, too! If
you wish to contribute financially, consider
becoming <a href="sponsors.htm">a sponsor</a> or
<a href="https://www.patreon.com/Matrices">joining my Patreon</a>! </p>
<p> </p>
<h5>Heads<br>
<img src="images/headshape.png" ></h5>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51490538463/tutorial-building-a-fursuit-head-with-foam">
<span class="auto-style3">Building a Fursuit Head with Foam</span></a><br>
<span class="auto-style5">My go-to technique for building the head of a
fursuit costume.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151035616279/furring">
<span class="auto-style3">Furring</span></a><br>
<span class="auto-style5">The process of making a pattern with tape and
applying fur to a foam shape. See also: "How to Pattern Objects with
Tape" below in the detailing & finishing category.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/126763728011/all-about-fursuit-heads">
<span class="auto-style3">All About Fursuit Heads</span></a><br>
<span class="auto-style5">Information about foam vs balaclava based
fursuit heads and the planning process that goes into it.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/152096577988/all-about-fursuit-noses-most-critters-are-going-to">
<span class="auto-style3">About Fursuit Noses</span></a>
<br><span class="auto-style5">A detailed free guide on different ways to make
and attach fursuit noses. If you need a <em>pattern</em> I have it
<a href="https://www.etsy.com/listing/1177705754/pattern-and-tutorial-all-about-fursuit">
available here</a>.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51899557133/tutorial-making-a-neck-for-a-fursuit-head">
<span class="auto-style3">Making a Neck</span></a><br>
<span class="auto-style5">A technique to make the neck cowl to bridge
the gap between your head and shoulders.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/69646514299/patterning-a-neck-and-jaw-on-a-resin-based-fursuit">
<span class="auto-style3">Patterning the Neck and Jaw of a Resin-based
Fursuit Head</span></a><br><span class="auto-style5">Video guide on patterning
a resin-based fursuit head, To allow jaw movement.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151078510153/making-toony-eyes">
<span class="auto-style3">Making Toony Eyes</span></a> <br>
<span class="auto-style5">Tutorial on creating and installing flat
plastic cartoon eyes by being resourceful and utilizing some upcycled
materials!
</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/94554093373/want-to-make-your-character-more-expressive-its">
<span class="auto-style3">Pushing Expression in Toony Eyes</span></a><br><span class="auto-style5">A
tip on pushing expression for your characters.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/55101977107/make-a-stuffed-fursuit-nose-draw-and-cut-your">
<span class="auto-style3">Design for Suffed Nose with Nostrils</span></a><br>
<span class="auto-style5">Need nostrils on your sniffer? This design
will help you create some for a sewn nose.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151038441401/hiding-seams">
<span class="auto-style3">Hiding Fur Edges Against Smooth Surfaces</span></a><br>
<span class="auto-style5">You may need to hide the fur edge against
places like noses, eyes, and lips, here's how to do it.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151864295688/do-you-have-any-tips-on-making-very-longabout">
<span class="auto-style3">Creating Large Ears & Additional Ear Tips</span></a><br>
<span class="auto-style5">Position your ears like a pro, get the curve
and support you need for your ears.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/152304756898/i-have-a-questionmight-be-a-stupid-one-how">
<span class="auto-style3">Fursuit Beaks</span></a><br><span class="auto-style5">Finishing tips for
creating a beak for critters that need one!</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/159292227448/heya-so-i-was-wondering-how-exactly-do-you-finish">
<span class="auto-style3">Lining the Head and Finishing the Mouth</span></a> <br>
<span class="auto-style5">Detailed tutorial on finishing the interior
and the mouth of a foam head with sewn teeth and a soft liner.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/170327735158/video-tutorial-how-to-cut-carve-and-shape">
<span class="auto-style3">How to Cut, Carve and Shape Upholstery Foam</span></a> <br>
<span class="auto-style5">A video guide showing useful techniques for
working with foam demonstrated using a razor, spring scissors, and
normal scissors. </span><br></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/182991530058/an-adhesive-test-for-use-on-a-fursuits-head">
<span class="auto-style3">Adhesive Test for use on a fursuit’s head lining</span></a>
<br><span class="auto-style5">Four adhesives
are tested to discover what will work best to glue a lycra liner to
upholstery foam. My results and thoughts on them each are shared in this
video! If you're unsure of what to use, do a test like this example! You
might be surprised at the results you discover! </span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/183732168113/">
<span class="auto-style3">Creating and patterning tongues!</span></a> <br>
<span class="auto-style5">Some
step-by-step guidance on making tongues!! *slurp!*</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="https://pupdates.matrices.net/post/188195934163/making-a-mannequin-head-to-measurements-this-is-a">
<span class="auto-style3">Making a mannequin head to measurements</span></a> <br><span class="auto-style5">Having a mannequin head to build on is an important component to getting a well-fitted mask.
Having a good solid base is important to work off of when making
fursuits and other costumes! This is an inexpensive way to deal with
that need!</span></div>
<div class="one-half column">
</div> </div>
<p> </p><h5>Bodies<br>
<img src="images/bodyshape.png" ></h5>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/126844191210/making-a-fursuit-body">
<span class="auto-style3">Making a Fursuit Body</span></a> <br>
<span class="auto-style5">Learn to make a body by starting with a
store-bought pattern, edit and fit the "test fabric" custom to yourself,
as well as planning and installing a zipper.
</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/126927632301/body-padding-for-a-fursuit">
<span class="auto-style3">Fursuit Body Padding Tutorial</span></a> <br><span class="auto-style5">Are
digitigrade, unguligrade, or padded plantigrade body features planned in
your costume? Learn how to make a custom shaped padded body in this
guide.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/52153821429/tutorial-how-to-machine-sew-a-fursuit-zipper">
<span class="auto-style3">How to Machine-Sew a Fursuit Zipper</span></a><br>
<span class="auto-style5">A guide on adding a simple zipper that is
compatible with faux fur.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/162855298238/ending-a-zipper-there-are-a-few-different-ways-to">
<span class="auto-style3">Ending a Zipper</span></a> <br>
<span class="auto-style5">Zippers can be used all over the place in your
projects, learn how to make the end neat & tidy with a bit of matching
fabric and no glue.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/126684480883/making-a-tail">
<span class="auto-style3">Making a Tail</span></a><br>
<span class="auto-style5">A great place to get started, plan and execute
a tail with some careful observation and this guide.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/88720376708/how-to-make-a-zip-on-tail-a-tutorial-for">
<span class="auto-style3">How to Make a
Zip-on Tail</span></a> <br><span class="auto-style5">Creating a zip-on tail and
the planning involved for a smooth transition.
</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/130645640543/how-to-make-use-of-a-duct-tape-dummy">
<span class="auto-style3">How to Make Use of a Duct Tape Dummy</span></a><br>
<span class="auto-style5">So you want a body-double for tailoring
yourself or others? Here's how to make use of a DTD in a detailed guide.</span></div>
<div class="one-half column">
<a href="https://pupdates.matrices.net/post/185256314373/patterning-pillow-inserts">
<span class="auto-style3">Patterning Pillow Inserts for Shaped Bodies</span></a> <br><span class="auto-style5">A
step-by-step photo guide on how to pattern the pillows that make a
padded body have filled out shapes!</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/157373919458/i-am-making-a-fur-bodysuit-all-the-jumpsuit">
<span class="auto-style3">Set-in or Raglan Sleeves: What's The Difference?
</span> </a>
<br><span class="auto-style5">A body needs a sleeve, this discusses what
kind of fit you could get for your shoulder and underarms.</span></div>
<div class="one-half column">
</div>
</div>
<p> </p><h5>Paws<br>
<img src="images/handpawshape.png" ></h5>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/178186200444/simple-handpaw-pattern-and-tutorial-want-a-set-of">
<span class="auto-style3">Simple Handpaw Pattern and Tutorial</span></a> <br><span class="auto-style5">
Step-by-step photo guide to make a
set of 5-digit handpaws. Free Letter and A4 patterns included!</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51319102666/tutorial-how-to-build-footpaws">
<span class="auto-style3">How to Build Footpaws</span></a><br>
<span class="auto-style5">Utilizing a shoe as a base, this guides you
through turning shoes into a cute set of footpaws.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/171419824483/how-to-appliqué-paw-pads-this-is-an-updated">
<span class="auto-style3">How to Applique Paw Pads Visual Guide</span></a> <span class="auto-style5"><br>The most up-to-date guide on how to decorate
paws with paw pads using an applique sewing technique.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51738217153/video-tutorial-how-to-sculpt-fursuit-claws-its-a">
<span class="auto-style3">How to Sculpt Claws</span></a><br>
<span class="auto-style5">A video guide on sculpting claws with
oven-bake clay.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="https://pupdates.matrices.net/post/171419824483/how-to-appliqu%C3%A9-paw-pads-this-is-an-updated">
<span class="auto-style3">How to Applique Paw Pads
Video Guide</span></a><br><span class="auto-style5">A video suppliment to the
above visual gudie, some techniques have been updated and are noted in
the visual guide.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151329545763/retractable-fursuit-claws-here-is-my-design-for">
<span class="auto-style3">Retractable Fursuit Claw Design</span></a><br>
<span class="auto-style5">A clever way to create claws that retract
like a cat's paw, pushing them out with the wearer's fingers and using
elastic to pull them back in. This just <em>shows</em> the design, if you need a
<em>pattern</em> I have it
<a href="https://www.etsy.com/listing/658888382/pattern-and-tutorial-retractable-claws">
available here</a>.</span><br> </div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/166050141378/how-to-make-sewn-claws-this-is-a-useful">
<span class="auto-style3">How to Make Sewn Claws</span></a> <br><span class="auto-style5">Video tutorial
on creating sewn claws, but also useful for sewing teeth and spikes,
too! Includes an image-guide for hand sewing in soft
claws!</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/157431238428/paw-sandal-tutorial">
<span class="auto-style3">Paw Sandal Tutorial</span></a>
<br><span class="auto-style5">Protect the bottoms of your detailed paw
pads with a fun accessory that looks like scaled-up sandals.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/169222123108/hi-there-i-was-wondering-if-you-had-any-tips-for">
<span class="auto-style3">Tips for Lining Handpaws</span></a> <br>
<span class="auto-style5">Treating a liner layer as one with the rest of the
pattern when you assemble your handpaws can make a great luxury touch.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/178294487658/troubleshooting-applique-too-close-to-an-edge">
<span class="auto-style3">Troubleshooting Applique Too Close to the Edge</span></a> <br><span class="auto-style5">A
mini-tutorial on how to make edits to applique in case of a mistake.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/179699640528/i-made-a-visual-aid-for-claws-this-will">
<span class="auto-style3">Visual aid for Fabric for Claws</span></a>
<br><span class="auto-style5">There are many
types of fabric available, check out this visual aid i made to help you
choose fabric to use for sewn claws!</span><br></div>
<div class="one-half column"></div>
</div>
<p> </p><h5>Detailing and Finishing<br>
<img src="images/detail.png" ></h5>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/181820870998/pre-shaving-faux-fur">
<span class="auto-style3">Pre-shaving Faux Fur</span></a>
<br><span class="auto-style5">Learn how
to make long fur short in this useful guide!</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151073171249/video-tutorial-how-to-shave-fake-fur">
<span class="auto-style3">How to Shave Faux Fur</span></a><br>
<span class="auto-style5">A video tutorial demonstrated on a small
plush, showing how to shave faux fur on an already shaped piece.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151075802522/simple-battery-operated-fans">
<span class="auto-style3">Battery Operated Fan Tutorial</span></a> <br>
I<span class="auto-style5">s it hot in there? It doesn't have to be with
a fan. Assemble a computer fan and a 9 volt battery or
install a USB cable to use a powerbank.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/139954950913/drybrushing-to-add-details-to-faux-fur">
<span class="auto-style3">Drybrushing to Add Details to Faux Fur</span></a><br>
<span class="auto-style5">Paint and blend markings in fur with this
technique that simulates the look of airbrushing without special tools.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51817690937/guide-adding-whiskers-to-your-fursuit">
<span class="auto-style3">Adding Whiskers to your Fursuit</span></a><br>
<span class="auto-style5">One of my favorite touches! Add whiskers for
the ultimate cute finishing detail.
With an included video guide! </span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/158540964628/sewing-double-fold-bias-tape-to-finish-an-edge">
<span class="auto-style3">Sewing Double Fold
(wide) Bias Tape to Finish an Edge</span></a> <br><span class="auto-style5">
Video guide on sewing wide bias tape. Useful on cuffs, necklines, and
anywhere you don't want an edge to stretch.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/78883111320/how-to-finish-edges-on-your-fursuit-parts-for">
<span class="auto-style3">How to Finish Edges with
Single Fold (narrow) Bias Tape</span></a><br><span class="auto-style5">A visual
+ video guide on utilizing the narrow style, single fold, bias tape.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/139983032668/how-to-sew-bias-tape-in-faux-fur-so-the-edge-is">
<span class="auto-style3">How to Sew Bias Tape so the Edge is Hidden!</span></a> <br>
<span class="auto-style5">Visual guide useful for the kind of fabrics
that may unravel in places you do not want your bias tape to show. </span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/93638706623/lycra-interfacing-my-favorite-combo-this">
<span class="auto-style3">Lycra and Interfacing</span></a><br>
<span class="auto-style5">A premium combination to prepare lycra for use
on areas you want the shine of lycra but need it to be easier to sew.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/52071465448/tutorial-patterning-objects-with-tape-a-very">
<span class="auto-style3">How to Pattern Objects With Tape</span></a><br>
<span class="auto-style5">Video tutorial for how to make a pattern out
of a full-size model using tape and paper. Useful for making dynamic
pattern shapes for <em>anything</em>, costumes, plush, etc.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/52394371389/tutorial-adding-yarn-to-faux-fur-to-change-its">
<span class="auto-style3">Adding Yarn to Faux Fur to Change Its
Appearance</span></a><br><span class="auto-style5">Use brushed out yarn to make
small perminant markings and dots by tying it into the backing of faux
fur, </span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/154223878463/using-a-felting-needle-to-add-markings-i-decided">
<span class="auto-style3">Using a felting needle to add markings</span></a> <br>
<span class="auto-style5">Use a felting needle to install small
perminant markings and dots in faux fur.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/156329586863/hi-im-making-2-fursuits-one-for-me-and-my">
<span class="auto-style3">Shaving Shag Down or Using Short Fur: What's better?</span></a> <br>
<span class="auto-style5">Should I shave? Should I buy short fur? It
depends on these factors.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/154879984098/edge-softening-using-a-slicker-brush-did-you-know">
<span class="auto-style3">Edge Softening Using a Slicker Brush</span></a> <br><span class="auto-style5">
Blend those overlapping edges by brushing them out to reduce a hard line
appearance.
</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/158487348493/hide-shortpile-fur-seams-better-intentional">
<span class="auto-style3">Hide Shortpile Fur Seams Better: Intentional Trapping Technique</span></a> <br>
<span class="auto-style5">Video guide on a different seam style, to
better hide where two pieces of shortpile fur fabric connect to one
another.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/152057674358/hi-there-my-name-is-taylor-i-stumbled-across"><span class="auto-style3">Information on Airbrushing Faux Fur</span></a>
<br><span class="auto-style5">Tips on utilizing an airbrush to paint
color on faux fur.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/169880509053/machine-sewing-small-spots-in-faux-fur-this-is-a">
<span class="auto-style3">Machine Sewing Small Spots into Faux Fur</span></a> <br>
<span class="auto-style5">This is a video demonstration of how to sew a
small spot with a sewing machine.</span>
</div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/52314247436/guide-aligning-markings-in-faux-fur">
<span class="auto-style3">Aligning Markings in Faux Fur</span></a><br>
<span class="auto-style5">Tips on lining up markings across seams to get
good results every time.</span>
</div></div>
<div class="row">
<div class="one-half column"><a href="http://pupdates.matrices.net/post/183482721543">
<span class="auto-style3">Is it common to line fursuit parts?</span></a>
<br>I share some photo examples and explain what fabrics are utilized!
Additionally I also clarify the difference between lining and edge
finishing.</div>
<div class="one-half column">
</div></div>
<p> </p><h5>For Beginners<br>
<img src="images/thread.png" ></h5>
<div class="row">
<div class="one-half column">
<a href="https://pupdates.matrices.net/post/186317265118/hand-sewing">
<span class="auto-style3">Hand-Sewing for Beginners</span></a> <br>
<span class="auto-style5">Step by step photos to teach you how to hand
sew! Beginner-friendly guide. Written for the person who maybe has never
touched a sewing kit</span></div>
<div class="one-half column">
<a href="https://pupdates.matrices.net/post/186195500398/how-much-fur-do-i-need">
<span class="auto-style3">How Much Fur Do I Need?</span></a> <br>
<span class="auto-style5">The #1 question I get, the steps involved with
making your pattern and measuring it to know how much to buy.
</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/tagged/faq">
<span class="auto-style3">Common Fursuit-Related Questions (FAQ)</span></a><br>
<span class="auto-style5">Many questions I have tagged with #faq so they
are in an easy to find place!</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/97789379028/basting-tips-ive-been-doing-a-lot-of-basting">
<span class="auto-style3">Basting Tips</span></a> <br>
<span class="auto-style5">If pinning is cumbersome, try basting. Large
stitches utilized in a similar way as pinning.
</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/123567510343/what-is-safe-for-marking-on-faux-fur-when-fursuit">
<span class="auto-style3">What is Safe For Marking on Faux Fur when
Fursuit Making?</span></a> <span class="auto-style5"><br>An important test to
try yourself before using an untested marking pen.
</span></div>
<div class="one-half column">
<span class="auto-style3">
<a href="https://pupdates.matrices.net/post/186265933378/buying-faux-fur-swatches">
Buying swatches and choosing fur</a> </span><br>
<span class="auto-style5">Fabric swatches are a very important 1st step to
buying fur online. How to examine swatches and fabrics to decide if they will work
on your project!
</span></div>
</div>
<p> </p>
<h3>Fursuit Maintenance<br>
<img src="images/cleaning.png"></h3>
<p>You created or purchased an amazing costume, how do you keep it nice?
Here is some information on that very topic! Testing gives us confidence, so
I encourage everyone to use scraps of fur test these maintenance methods so
you can see the results and compare for yourself! Check out my
<a href="http://pupdates.matrices.net/tagged/fursuit-maintenance">
#fursuit-maintenance</a> tag on tumblr.</p>
<p>There is a lot of hearsay when it comes to maintaining fursuits, you can
find out what works and what doesn't by using<em> scientific
method-style experiments</em> to see results for yourself! Cut up a few
swatches of scrap fur and save one piece aside as a "control" and test the
remaining pieces to your heart's content! What results do you get? Is it
what you expected? Share your results! </p>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51175842862/tutorial-fursuit-washing-and-care">
<span class="auto-style3">Comprehensive Tutorial: Fursuit Washing and Care</span></a> <br>
<span class="auto-style5">Covering spot cleaning, washing, drying,
washing fursuit heads, faux fur care, replacement parts, between-wash
care and a list of supplies.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/126712928788/how-to-straighten-crimped-faux-fur">
<span class="auto-style3">How to Straighten Crimped Faux Fur</span></a><br>
<span class="auto-style5">Learn to use heat in a controlled way to
straighten fur that has been crimped by improper storage or with use.
With an included video guide!</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/135493547738/straightening-mongolian-faux-fur-remember-this">
<span class="auto-style3">Straightening Mongolian Faux Fur</span></a><br>
Perminantly c<span class="auto-style5">hange the texture of Mongolian
type faux fur with this technique.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/147759135513/using-heat-to-repair-faux-fur">
<span class="auto-style3">Using Heat to Repair Faux Fur</span></a><br>
<span class="auto-style5">Controlled heat using a handheld hairdrier can
restore the texture of faux fur that needs repair.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/130841920313/patching-fur">
<span class="auto-style3">Patching Fur</span></a><br>
<span class="auto-style5">Visual guide on making a small patch and
sewing it in place to repair a hole in faux fur.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/132347387201/darning-holes-in-faux-fur">
<span class="auto-style3">Darning Holes in Faux Fur</span></a><br>
<span class="auto-style5">Using darning as a technique to close up holes
in faux fur's backing.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/118130928159/so-many-flat-tails-out-there-can-be-saved-with">
<span class="auto-style3">Fluffing Compacted Stuffing</span></a><br>
<span class="auto-style5">Make the stuffing in flat tails and plushies
soft and fluffy again with this technique, visual &
video guide.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/110421394373/this-is-a-common-thing-but-still-helps-to-see-it">
<span class="auto-style3">Wiping Down Fursuit Parts</span></a><br>
<span class="auto-style5">A good practice after wearing your fursuit
parts, but before putting them away.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/77893054583/a-quick-spot-cleaning-tutorial-for-your-fursuit">
<span class="auto-style3">Spot Cleaning</span></a>
(<a href="http://pupdates.matrices.net/post/151067633473/limpiando-manchas-de-tu-fursuit-traducci%C3%B3n-por">en
español</a>)<br><span class="auto-style5">Got a little spot on
your costume that needs cleaned up? Check out this tutorial in english
or spanish.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/158492503093/hello-i-am-currently-figuring-out-how-to">
<span class="auto-style3">Tips on Refurbishing Heads</span></a> <br><span class="auto-style5">Info on
what tools to use, and other tricks to refurbishing heads.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/167753518253/how-do-you-get-glue-out-of-faux-fur">
<span class="auto-style3">How to get Hot Glue out of Faux Fur</span></a> <br>
<span class="auto-style5">Oh no! A drip!!! You can get it out, don't worry!</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/181660234573/use-cleaning-instructions">
<span class="auto-style3">Use and Cleaning Instructions</span></a> <br><span class="auto-style5">For Vinyl
Decals, Balaclavas, & Fursuit collars that I sell online or at events.
</span></div>
</div>
<p> </p>
<h3>Crafts<br>
<img src="images/origamifox.png" ></h3>
<p>Fursuits aren't the only thing I am a fan of creating, some guides on
making some other goodies to enhance your furry experience!</p>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/51238791970/guide-adding-character-to-your-fursuit-using">
<span class="auto-style3">Props For Your Character</span></a><br>
<span class="auto-style5">What makes a good prop, exploring prop themes,
clothing as a prop, and other aspects of prop creation and use.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151041039403/make-your-own-ears-enjoy-this-simple-pattern-with">
<span class="auto-style3">Make Your Own Ears</span></a><br>
<span class="auto-style5">A pattern and tutorial for making your own
ears with just faux fur and a few extra notions.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151062128965/shrink-plastic-name-tag">
<span class="auto-style3">Shrink Plastic Name Tag</span></a><br>
<span class="auto-style5">Utilize shrink plastic to make a cute prop
nametag for your character.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/80926697243/puff-paint-paw-socks-a-cute-craft-ive-been">
<span class="auto-style3">Puff Paint Paw Socks</span></a><br>
<span class="auto-style5">The ultimate addition to any pair of socks. A
really fun craft for anyone!</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151035196878/paper-fox-army-this-tutorial-will-show-you-how-to">
<span class="auto-style3">Paper Fox Army</span></a><br>
<span class="auto-style5">A step-by-step illustrated guide to fold your
own origami foxes.</span></div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/151064762388/anthropomorphic-plushiestuffed-animal-pattern">
<span class="auto-style3">Anthropomorphic
Stuffed Animal Pattern</span></a><br><span class="auto-style5">A pattern
collaboration with a friend, This pattern will create a 25-inch plushie
with anthropomorphic-style proportions.</span></div>
</div>
<div class="row">
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/153883803173/make-a-simple-custom-carrying-case-this-tutorial">
<span class="auto-style3">Simple Custom Carrying Case Tutorial</span></a><span class="auto-style3">
<br></span><span class="auto-style5">Demonstrates making a case for a head, but
is also suitable for any object (such as footpaws, props, etc.) that you
want to cover for travel or protection. </span> </div>
<div class="one-half column">
<a href="http://pupdates.matrices.net/post/155177179288/how-to-sew-thumb-hole-cuffs-thumb-hole-cuffs-are">