Changeset 2011
- Timestamp:
- Nov 17, 2007, 4:02:54 PM (13 years ago)
- Location:
- www/study
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
www/study/fig2-3-2.svg
r1940 r2011 33 33 inkscape:pageshadow="2" 34 34 inkscape:zoom="1.979899" 35 inkscape:cx=" 209.39011"36 inkscape:cy="9 90.72772"35 inkscape:cx="198.78351" 36 inkscape:cy="951.83685" 37 37 inkscape:document-units="px" 38 38 inkscape:current-layer="layer1" … … 103 103 x="93.378632" 104 104 id="tspan3149" 105 sodipodi:role="line"> 9</tspan><tspan105 sodipodi:role="line">13</tspan><tspan 106 106 id="tspan3151" 107 107 y="51.217273" … … 133 133 x="213.37863" 134 134 id="tspan3161" 135 sodipodi:role="line">1 2</tspan><tspan135 sodipodi:role="line">16</tspan><tspan 136 136 id="tspan3163" 137 137 y="51.217273" … … 148 148 x="33.378632" 149 149 id="tspan3167" 150 sodipodi:role="line"> 13</tspan><tspan150 sodipodi:role="line">9</tspan><tspan 151 151 id="tspan3169" 152 152 y="111.21727" … … 178 178 x="153.37863" 179 179 id="tspan3179" 180 sodipodi:role="line">1 6</tspan><tspan180 sodipodi:role="line">12</tspan><tspan 181 181 id="tspan3181" 182 182 y="111.21727" … … 223 223 x="93.378632" 224 224 id="tspan3197" 225 sodipodi:role="line">1 1</tspan><tspan225 sodipodi:role="line">15</tspan><tspan 226 226 id="tspan3199" 227 227 y="171.21727" … … 253 253 x="213.37863" 254 254 id="tspan3209" 255 sodipodi:role="line">1 0</tspan><tspan255 sodipodi:role="line">14</tspan><tspan 256 256 id="tspan3211" 257 257 y="171.21727" … … 268 268 x="33.378632" 269 269 id="tspan3215" 270 sodipodi:role="line">1 5</tspan><tspan270 sodipodi:role="line">11</tspan><tspan 271 271 id="tspan3217" 272 272 y="231.21727" … … 298 298 x="153.37863" 299 299 id="tspan3227" 300 sodipodi:role="line">1 4</tspan><tspan300 sodipodi:role="line">10</tspan><tspan 301 301 id="tspan3229" 302 302 y="231.21727" -
www/study/study.py
r2010 r2011 180 180 # Output 2.3.3: 5x3 line dithering 181 181 DITHER_BAYER44 = \ 182 [[ 0, 8, 3, 11], 183 [ 15, 4, 12, 7], 184 [ 2, 10, 1, 9], 185 [ 13, 6, 14, 5]] 182 [[ 0, 12, 3, 15], 183 [ 8, 4, 11, 7], 184 [ 2, 14, 1, 13], 185 [ 10, 6, 9, 5]] 186 DITHER_BAYER88 = \ 187 [[ 0, 48, 12, 60, 3, 51, 15, 63], 188 [ 32, 16, 44, 28, 35, 19, 47, 31], 189 [ 8, 56, 4, 52, 11, 59, 7, 55], 190 [ 40, 24, 36, 20, 43, 27, 39, 23], 191 [ 2, 50, 14, 62, 1, 49, 13, 61], 192 [ 34, 18, 46, 30, 33, 17, 45, 29], 193 [ 10, 58, 6, 54, 9, 57, 5, 53], 194 [ 42, 26, 38, 22, 41, 25, 37, 21]] 186 195 DITHER_CLUSTER44 = \ 187 196 [[ 12, 5, 6, 13],
Note: See TracChangeset
for help on using the changeset viewer.