Searched refs:poly (Results 1 - 9 of 9) sorted by relevance
/ast/src/lib/libtk/generic/ |
H A D | tkCanvLine.c | 821 double poly[10]; 888 linePtr->capStyle == CapProjecting, poly, poly+2); 890 poly[0] = poly[6]; 891 poly[1] = poly[7]; 892 poly[2] = poly[4]; 893 poly[ 814 double poly[10]; local 1326 double *poly, *coordPtr; local [all...] |
H A D | tkTrig.c | 306 double radius, poly[10]; 344 poly[0] = coordPtr[0] - radius; 345 poly[1] = coordPtr[1] - radius; 346 poly[2] = coordPtr[0] + radius; 347 poly[3] = coordPtr[1] + radius; 348 if (TkOvalToArea(poly, rectPtr) != inside) { 361 capStyle == CapProjecting, poly, poly+2); 363 poly[0] = poly[ 303 double radius, poly[10]; local [all...] |
H A D | tk3d.c | 761 XPoint poly[4], b1, b2, newB1, newB2; 805 * poly[1] / 808 * b1 * poly[0] (pointPtr[i-1]) 822 * pointPtr[i]) and put it in poly[2]. As part of 825 * (b) Put pointPtr[i] into poly[3]. 826 * (c) Draw the polygon given by poly[0..3]. 827 * (d) Advance poly[0], poly[1], b1, and b2 for the 857 poly[3] = *p1Ptr; 860 parallel = Intersect(&newB1, &newB2, &b1, &b2, &poly[ 749 XPoint poly[4], b1, b2, newB1, newB2; local [all...] |
H A D | tkCanvArc.c | 761 double poly[8], polyDist, width, t1, t2; 862 poly[0] = poly[6] = vertex[0]; 863 poly[1] = poly[7] = vertex[1]; 864 poly[2] = arcPtr->center1[0]; 865 poly[3] = arcPtr->center1[1]; 866 poly[4] = arcPtr->center2[0]; 867 poly[5] = arcPtr->center2[1]; 868 polyDist = TkPolygonToPoint(poly, 754 double poly[8], polyDist, width, t1, t2; local [all...] |
/ast/src/lib/libtk/library/demos/ |
H A D | hscale.tcl | 27 $w.frame.canvas create polygon 0 0 1 1 2 2 -fill DeepSkyBlue3 -tags poly 41 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
|
H A D | vscale.tcl | 29 $w.frame.canvas create polygon 0 0 1 1 2 2 -fill SeaGreen3 -tags poly 42 $w coords poly 15 20 35 20 35 $y2 45 $y2 25 $height 5 $y2 15 $y2 15 20
|
H A D | floor.tcl | 113 $w create poly 347 80 349 82 351 84 353 85 363 92 375 99 386 104 \ 238 $w create poly 559 129 484 129 484 162 398 162 398 129 315 129 \ 293 $w create poly 159 300 107 300 107 248 159 248 159 129 96 129 96 \ 296 $w create poly 258 370 258 329 350 329 350 311 399 311 399 129 \
|
/ast/src/lib/libz/ |
H A D | crc32.c | 110 unsigned long poly; /* polynomial exclusive-or pattern */ local 122 poly = 0UL; 124 poly |= 1UL << (31 - p[n]); 130 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
|
/ast/src/lib/libvcodex/ |
H A D | vclzparse.c | 47 ssize_t poly; /* number of polynomial terms */ member in struct:_hash_s 78 hs->poly = (mmin = mmin >= HMIN ? mmin : HMIN); 97 for(k = 1; k < hs->poly; ++k) 116 ky = cm ? cm[ks[hs->poly - 1]] : ks[hs->poly - 1]; 117 for(k = hs->poly-2; k >= 0; --k) 221 mmin = hs->poly; 224 if(vcpa->nsrc >= hs->poly) /* add source data into hash table */
|
Completed in 22 milliseconds