Home
last modified time | relevance | path

Searched defs:point_t (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-cff-interp-cs-common.hh95 struct point_t struct
97 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;