Home
last modified time | relevance | path

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

/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-cff-interp-cs-common.hh95 struct point_t struct
97 void set_int (int _x, int _y) in set_int()
103 void move_x (const number_t &dx) { x += dx; } in move_x()
104 void move_y (const number_t &dy) { y += dy; } in move_y()
105 void move (const number_t &dx, const number_t &dy) { move_x (dx); move_y (dy); } in move()
106 void move (const point_t &d) { move_x (d.x); move_y (d.y); } in move()
108 number_t x;
109 number_t y;