• Home
  • Raw
  • Download

Lines Matching refs:top_right

35       top_right = pt2;  in TBOX()
39 top_right = ICOORD (pt2.x (), pt1.y ()); in TBOX()
45 top_right = ICOORD (pt1.x (), pt2.y ()); in TBOX()
49 top_right = pt1; in TBOX()
62 : bot_left(left, bottom), top_right(right, top) { in TBOX()
69 ICOORD top_left(bot_left.x(), top_right.y()); in rotate_large()
70 ICOORD bottom_right(top_right.x(), bot_left.y()); in rotate_large()
95 if (box.top_right.x () < top_right.x ()) in intersection()
96 right = box.top_right.x (); in intersection()
98 right = top_right.x (); in intersection()
105 if (box.top_right.y () < top_right.y ()) in intersection()
106 top = box.top_right.y (); in intersection()
108 top = top_right.y (); in intersection()
135 if (box.top_right.x () > top_right.x ()) in bounding_union()
136 tr.set_x (box.top_right.x ()); in bounding_union()
138 tr.set_x (top_right.x ()); in bounding_union()
145 if (box.top_right.y () > top_right.y ()) in bounding_union()
146 tr.set_y (box.top_right.y ()); in bounding_union()
148 tr.set_y (top_right.y ()); in bounding_union()
184 if (op2.top_right.x () > op1.top_right.x ()) in operator +=()
185 op1.top_right.set_x (op2.top_right.x ()); in operator +=()
190 if (op2.top_right.y () > op1.top_right.y ()) in operator +=()
191 op1.top_right.set_y (op2.top_right.y ()); in operator +=()
211 if (op2.top_right.x () < op1.top_right.x ()) in operator -=()
212 op1.top_right.set_x (op2.top_right.x ()); in operator -=()
217 if (op2.top_right.y () < op1.top_right.y ()) in operator -=()
218 op1.top_right.set_y (op2.top_right.y ()); in operator -=()
223 op1.top_right.set_x (-MAX_INT16); in operator -=()
224 op1.top_right.set_y (-MAX_INT16); in operator -=()
239 top_right.serialise_asc (f); in serialise_asc()
252 top_right.de_serialise_asc (f); in de_serialise_asc()