-
Notifications
You must be signed in to change notification settings - Fork 3
/
extensions.html
101 lines (92 loc) · 2.96 KB
/
extensions.html
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
<!DOCTYPE html>
<html>
<head>
<title>Extensions for "Knitout" (.k)</title>
</head>
<style>
body {
padding: 0% 8%;
margin: 0px auto;
max-width: 50em;
}
ul.extensions {
display:flex;
flex-flow: column;
margin:0;
padding:0;
}
ul.extensions > li {
display:flex;
flex-flow: row;
align-items: flex-start;
margin: 0 0 1em 0;
}
ul.extensions > li > pre.tokens {
display:block;
background:#eee;
margin:0;
padding:3px 5px;
border-radius:5px;
}
ul.extensions > li > div.description {
margin:0 0 0 25px;
padding:0;
}
ul.extensions > li > div.description > span.title {
margin-left:-10px;
font-weight:bold;
}
ul.extensions > li > div.description > span.author {
color:#888;
}
ul.extensions > li > div.description > span.where {
color:#888;
}
</style>
<body>
<h1>Extensions for the "Knitout" (.k) File Format</h1>
<p>
This file contains a summary of the known extensions for the knitting output file format ("Knitout" / .k).
If you have developed an extension and would like it to be included, please use the <a href="https://github.com/textiles-lab/knitout/issues">Issues</a> page,
or send e-mail to the <a href="mailto:knitout-feedback@cs.cmu.edu">knitout-feedback@cs.cmu.edu</a> alias.
</p>
<ul class="extensions">
<li>
<pre class="tokens"><code>x-stitch-number 5
</code></pre>
<div class="description">
<span class="title">Stitch Number</span> <span class="author">CMU Textiles Lab</span> / <span class="where">SWG*N2 Backend</span>.
The 'x-stitch-number' command sets the stitch number (an abstract index into a machine table of stitch and leading values).
</div>
</li>
<li>
<pre class="tokens"><code>x-speed-number 10
</code></pre>
<div class="description">
<span class="title">Speed Number</span> <span class="author">CMU Textiles Lab</span> / <span class="where">SWG*N2 Backend</span>.
The 'x-speed-number' command sets the speed number (an abstract index into a machine table of speed values).
Sets speed for both knitting and transfer passes. Valid speeds are 0 (default) or 1-15.</br>
</div>
</li>
<li>
<pre class="tokens"><code>x-sub-roller-number 3
</code></pre>
<div class="description">
<span class="title">Sub-Roller Number</span> <span class="author">CMU Textiles Lab</span> / <span class="where">SWG*N2 Backend</span>.
The 'x-sub-roller-number' command sets the sub roller table number (an index into a machine table of sub roller settings).
Sets speed for only knitting passes. Valid speeds are 0 (default) or 1-31.</br>
</div>
</li>
<li>
<pre class="tokens"><code>x-presser-mode auto
</code></pre>
<div class="description">
<span class="title">Fabric Presser Mode</span> <span class="author">CMU Textiles Lab</span> / <span class="where">SWG*N2 Backend</span>.
The 'x-presser-mode' command sets the fabric presser mode to 'off' (no fabric presser), 'auto' (fabric presser on passes with only front or only back stitches), or 'on' (break passes so that fabric presser can always be used).
The default mode is 'off'.
</br>
</div>
</li>
</ul>
</body>
</html>