Morphs, Mallards, and Montages
eBook - ePub

Morphs, Mallards, and Montages

Computer-Aided Imagination

Andrew Glassner

  1. 360 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Morphs, Mallards, and Montages

Computer-Aided Imagination

Andrew Glassner

Book details
Book preview
Table of contents
Citations

About This Book

This book is for everyone who's interested in computer graphics and how it can take us on exciting journeys powered by imagination and a love of discovery and invention. Each chapter investigates a unique topic and gives you the tools to continue that exploration on your own. Examine the possibilities of: - Pop-up books and cards - Reconstructing shredded documents - Crop circles - Weaves and Tartans - Morphing images and much more! Browse and enjoy the array of visual ideas or roll up your sleeves and write your own code.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on ā€œCancel Subscriptionā€ - itā€™s as simple as that. After you cancel, your membership will stay active for the remainder of the time youā€™ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlegoā€™s features. The only differences are the price and subscription period: With the annual plan youā€™ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, weā€™ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Morphs, Mallards, and Montages an online PDF/ePUB?
Yes, you can access Morphs, Mallards, and Montages by Andrew Glassner in PDF and/or ePUB format, as well as other popular books in Informatica & Grafica per computer. We have over one million books available in our catalogue for you to explore.

Information

Year
2021
ISBN
9780429527074
images

5

five

Woven cloth is so common these days that many of us take it for granted. But even a momentā€™s examination of an everyday cloth like denim reveals some beautiful patterns.
Weavers create cloth on a mechanical device called a loom. In terms of their complexity, looms are similar to old sailing ships: the basic ideas are pretty simple, but the actual implementation can be very complex.
One reason for this complexity is the quest for simple creature comforts: weavers often spend many continuous hours working at a loom, so a lot of effort has gone into the creation of comfortable and labor-saving mechanisms to make the job as pleasant as possible. So although you can build a simple loom with almost no moving parts, most modern looms are formidable machines.
In this chapter Iā€™ll describe enough of the basics of weaving so that we can write a loom simulator. Of course, nothing can beat actually going out and creating real, woven fabrics. My goal isnā€™t to replace weaving, but to use the ideas of weaving to create software tools for making patterns.
People have already brought together computers and weaving in different ways. In the Further Reading section, Iā€™ve identified several commercial programs on todayā€™s market that that are designed to help weavers. They are often complex and reward advanced knowledge of the craft of weaving. Thereā€™s also a very interesting weaving language built into the art program Painter, which Iā€™ll talk about later. In fact, my wish for an interactive editor for that language was the original inspiration for this chapter.
Letā€™s start with the basics of weaving.

THE FIRST THREAD

A loom is typically a large wooden device with lots and lots of moving parts. In this section, Iā€™ll simplify and abstract the structure of a loom so that we can ultimately capture its essence in a computer program.
Iā€™ll speak of ā€œthreadsā€ and ā€œfabricsā€ in this discussion, though modern looms can weave all sorts of things, from thick, fuzzy yarns to thin, wide ribbons of satin and everything in between.
At its heart, a loom is a machine designed to interleave two sets of perpendicular threads. In one common format, one set of threads extends directly away from your body, and the others run left-to-right.
Figure 5.1 shows a simplified loom. The red fibers that go out away from us are called the warp threads, and they are fed from mechanical devices called shafts. The blue horizontal fibers are called the weft threads and are fed from devices called treadles.
Figure 5.1
A schematic version of a simple loom. The shafts along the bottom deliver the red, vertical warp threads. The treadles on the right deliver the blue, horizontal weft threads.
There is a substantial body of language associated with weaving, but I wonā€™t go any further into that lingo here. Check the Further Reading section for glossaries and introductions.
Setting up a loom is not unlike writing a program, and indeed some people cite the task of setting up a Jacquard loom as the birth of programming. Jacquard looms were able to produce extremely intricate designs by reading weaving instructions from a deck of punched cards, which embodied the weaverā€™s design. Simply by loading up the loom with a different type of thread, the loom could produce many very different fabrics from the same basic pattern.
There are three fundamental types of basic weaves, which give rise to endless variations and combinations.
The most common is the plain weave, illustrated in Figure 5.2(a). In this pattern, each weft thread goes over and under each warp thread, in perfect alternation. Plain weaves are often used for clothing. An interesting variation is oxford cloth, which is often used for work shirts. Here each weft thread is actually doubled up, so although the pattern is still square, thereā€™s double-frequency in the weft direction. This technique produces a durable yet attractive finish. You may also recognize the plain weave as the central element, or plait, of a classic Celtic knotwork panel, as I discussed in Chapter 3 of Andrew Glassnerā€™s Other Notebook.
Figure 5.2
(a) A plain weave. (b) A satin weave. (c) A twill weave.
Another common pattern is the satin weave. In this style, the weft threads pass over several warp threads before they pass under one, as shown in Figure 5.2(b). The interlaces are staggered so that no two overlaps are adjacent to each other. Typically the warp threads are thin and strong, and the weft threads are wide, smooth, shiny, and very closely packed. This gives the fabric a smooth and luxurious look and feel.
The third common pattern is the twill weave, shown in Figure 5.2(c). Twills are like satins, but differ in three respects: they often donā€™t exaggerate the difference between wide and narrow threads like a satin, threads donā€™t usually pass over as many threads before they pass under again, and sometimes the warp threads pass over several weft threads as well. Twills are easy to spot because of their distinctive diagonal component. As opposed to a satin weave, where the interlaces are not adjacent, in most twills each thread starts one step to the left or right of the one above it, creating the diagonal. Perhaps the most common twill used today is denim: if you look closely at your favorite blue jeans, youā€™ll see the diagonals formed by the blue and white threads.
Now that we have some basics under our belts, letā€™s look at how to describe a weave.

A ROUGH DRAFT

The basic pen-and-paper schematic for setting up a loom is called a draft. A draft has three parts: the setup of the warp threads, the setup of the weft threads, and something called the tie-up, which weā€™ll get to in a moment.
The ability to read a draft is essential to understanding existing patterns and creating new ones. Happily, itā€™s a pretty straightforward process.
A basic draft is no more than four simple black-and-white grids. This technique was originally developed for hand-drawing and hand-copying drafts since itā€™s easy and fast to draw. Itā€™s also great for black-and-white photocopying. Although color and computer tools are both becoming more common, the black-and-white draft remains popular for many weavers.
Although a black-and-white draft is very convenient for doodling out a new design, I f...

Table of contents

Citation styles for Morphs, Mallards, and Montages

APA 6 Citation

Glassner, A. (2020). Morphs, Mallards, and Montages (1st ed.). CRC Press. Retrieved from https://www.perlego.com/book/1512291/morphs-mallards-and-montages-computeraided-imagination-pdf (Original work published 2020)

Chicago Citation

Glassner, Andrew. (2020) 2020. Morphs, Mallards, and Montages. 1st ed. CRC Press. https://www.perlego.com/book/1512291/morphs-mallards-and-montages-computeraided-imagination-pdf.

Harvard Citation

Glassner, A. (2020) Morphs, Mallards, and Montages. 1st edn. CRC Press. Available at: https://www.perlego.com/book/1512291/morphs-mallards-and-montages-computeraided-imagination-pdf (Accessed: 14 October 2022).

MLA 7 Citation

Glassner, Andrew. Morphs, Mallards, and Montages. 1st ed. CRC Press, 2020. Web. 14 Oct. 2022.