Searched refs:rp_dst (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/extension/internal/
H A Dtext_reassemble.h367 int brinfo_overlap(const BR_INFO *bri, int dst, int src, RT_PAD *rp_dst, RT_PAD *rp_src);
H A Dtext_reassemble.c1339 \param rp_dst Pointer to edge padding values for dst.
1342 int brinfo_overlap(const BR_INFO *bri, int dst, int src, RT_PAD *rp_dst, RT_PAD *rp_src){ argument
1346 if(!bri || !rp_dst || !rp_src)return(2);
1353 ((br_dst->xur + rp_dst->right) < (br_src->xll - rp_src->left) ) || /* dst fully to the left */
1354 ((br_dst->xll - rp_dst->left) > (br_src->xur + rp_src->right) ) || /* dst fully to the right */
1355 ((br_dst->yur - rp_dst->up) > (br_src->yll + rp_src->down) ) || /* dst fully below (Y is positive DOWN) */
1356 ((br_dst->yll + rp_dst->down) < (br_src->yur - rp_src->up) ) /* dst fully above (Y is positive DOWN) */
1367 (br_src->xll >= br_dst->xur - rp_dst->right) || /* src overlaps just a little on the right (L->R language) */
1368 (br_src->xur <= br_dst->xll + rp_dst->left) /* src overlaps just a little on the left (R->L language) */
1379 (br_dst->xll - rp_dst
[all...]

Completed in 16 milliseconds