Searched defs:point_t (Results 1 – 1 of 1) sorted by relevance
96 struct point_t struct98 void set_int (int _x, int _y) in set_int()104 void move_x (const number_t &dx) { x += dx; } in move_x()105 void move_y (const number_t &dy) { y += dy; } in move_y()106 void move (const number_t &dx, const number_t &dy) { move_x (dx); move_y (dy); } in move()107 void move (const point_t &d) { move_x (d.x); move_y (d.y); } in move()109 number_t x;110 number_t y;