The term "zigzag", in graphic design, describes a line composed of small lines in which any pattern of two small lines have the same length and form equal angles relative to any other patterns in the zigzag. The term also is the name of an encoding system for integers.

learn more… | top users | synonyms

43
votes
8answers
1k views

Zig-zag scan an N x N array

I have a simple array. The array length always has a square root of an integer. So 16, 25, 36 etc. $array = array('1', '2', '3', '4' ... '25'); What I do, is arrange the array with HTML so that it ...
-2
votes
1answer
1k views

How can I do Zigzag border in photoshop

I just want to know how can I do this triangles effect (also with that shadow) in Photoshop. Btw I am using Photoshop CS6. The image
0
votes
2answers
95 views

counting zigzag sequences

Zigzag sequence is a sequence where every element is less or more than it's neighbours. 1 3 2 and 2 1 2 are zigzags, 1 2 3 and 1 2 2 are not. With two numbers given n, k find out how many sequences ...
3
votes
2answers
4k views

CSS Zigzag Border with a Textured Background

I've been working on a header with a zigzag border. One way to do this is to use images to make the zigzag effect. (1) Is there any way to create a practical cross-browser zigzag border in CSS ...
-2
votes
1answer
734 views

zig zag html css

I have a problem regarding HTML and CSS. Design include zig zag "border". Those zig-zag comes at the top and bottom of the page. Between those borders is white paper. Paper must be under zig-zag ...
8
votes
1answer
1k views

Google Protocol Buffers: ZigZag Encoding

From "Signed Types" on Encoding - Protocol Buffers - Google Code: ZigZag encoding maps signed integers to unsigned integers so that numbers with a small absolute value (for instance, -1) have a ...
11
votes
5answers
2k views

Zig Zag Decoding

In the google protocol buffers encoding overview, they introduce something called "Zig Zag Encoding", this takes signed numbers, which have a small magnitude, and creates a series of unsigned numbers ...