Lines Matching refs:right
70 * Return the right edge of an RArea.
230 // left- and right-most x coords, which define the maximum width
355 const RArea *left, *right;
358 right = other;
362 right = self;
365 // [--left--] or [right] or [right] or [left]
366 // [right] [--left--] [left] [right]
368 // Room to the left before right starts? That's one stripe.
369 if(right->x != left->x) {
372 right->x - left->x, left->height));
377 RAreaNewStatic(right->x, min_y,
378 min(RAreaX2(left), RAreaX2(right)) - max(left->x, right->x) + 1,
382 // of a piece to the right of one or the other.
383 if(RAreaX2(left) != RAreaX2(right)) {
384 if(RAreaX2(right) < RAreaX2(left)) {
385 // [--left--] or [right]
386 // [right] [--left--]
388 RAreaNewStatic(RAreaX2(right) + 1, left->y,
389 RAreaX2(left) - RAreaX2(right), left->height));
392 // [right] or [left]
393 // [left] [right]
395 RAreaNewStatic(RAreaX2(left) + 1, right->y,
396 RAreaX2(right) - RAreaX2(left), right->height));