Searched refs:lengths (Results 1 - 12 of 12) sorted by relevance
/inkscape/share/extensions/Barcode/ |
H A D | Ean13.py | 31 lengths = [12] variable in class:Ean13
|
H A D | Ean8.py | 28 lengths = [7] variable in class:Ean8
|
H A D | Upca.py | 28 lengths = [11] variable in class:Upca
|
H A D | BaseEan.py | 38 lengths = None variable in class:EanBarcode 86 """Return a list of acceptable lengths""" 89 return self.lengths[:] 97 lengths = self.get_lengths() + self.checks 100 if len(code) not in lengths: 103 if sep in lengths: 109 if len(code) not in lengths: 111 (len(code), ', '.join([str(length) for length in lengths])))
|
H A D | Upce.py | 33 lengths = [6, 11] variable in class:Upce
|
/inkscape/share/extensions/ |
H A D | pathalongpath.py | 72 We could work with bezier path as well, but bezier arc lengths are (re)computed for each point 78 lengths=[] 91 lengths.append(d) 93 new=[p[i][1] for i in range(0,len(p)-1) if lengths[i]>zero] 95 lengths=[l for l in lengths if l>zero] 96 return(new,lengths) 161 l=l % sum(self.lengths) 163 return 0,l/self.lengths[0] 165 while (i<len(self.lengths)) an [all...] |
H A D | pathscatter.py | 86 We could work with bezier path as well, but bezier arc lengths are (re)computed for each point 92 lengths=[] 105 lengths.append(d) 107 new=[p[i][1] for i in range(0,len(p)-1) if lengths[i]>zero] 109 lengths=[l for l in lengths if l>zero] 110 return(new,lengths) 194 l=l % sum(self.lengths) 196 return 0,l/self.lengths[0] 198 while (i<len(self.lengths)) an [all...] |
H A D | addnodes.py | 49 lengths = [] 51 lengths.append([]) 54 lengths[-1].append(l) 56 return lengths, total
|
H A D | interp.py | 50 lengths = [] 52 lengths.append([]) 55 lengths[-1].append(l) 57 return lengths, total 191 #subdivide both paths into segments of relatively equal lengths 194 lengths = {} 199 lengths.setdefault(t,0) 200 lengths[t] += 1 205 lengths.setdefault(t,0) 206 lengths[ [all...] |
H A D | measure.py | 96 lengths = [] 98 lengths.append([]) 101 lengths[-1].append(l) 103 return lengths, total
|
H A D | gcodetools.py | 784 lengths = [] 788 lengths.append(l) 790 return lengths, total 5252 #The dot product of two vectors gives the product of their lengths
|
/inkscape/src/util/ |
H A D | ziptool.cpp | 222 static const int MAXCODES = 316; // max codes lengths to read 368 (h->count[length[symbol]])++; // assumes lengths are within bounds 375 // check for an over-subscribed or incomplete set of lengths 618 int lengths[FIXLCODES]; local 623 lengths[symbol] = 8; 625 lengths[symbol] = 9; 627 lengths[symbol] = 7; 629 lengths[symbol] = 8; 630 buildHuffman(&lencode, lengths, FIXLCODES); 634 lengths[symbo 648 int lengths[MAXCODES]; // descriptor code lengths local [all...] |
Completed in 391 milliseconds