Searched defs:point_t (Results 1 – 1 of 1) sorted by relevance
95 struct point_t struct97 void init () in init()103 void set_int (int _x, int _y) in set_int()109 void move_x (const number_t &dx) { x += dx; } in move_x()110 void move_y (const number_t &dy) { y += dy; } in move_y()111 void move (const number_t &dx, const number_t &dy) { move_x (dx); move_y (dy); } in move()112 void move (const point_t &d) { move_x (d.x); move_y (d.y); } in move()114 number_t x;115 number_t y;