Home
last modified time | relevance | path

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

/aosp_15_r20/external/harfbuzz_ng/src/OT/glyf/
H A Dpath-builder.hh17 struct optional_point_t struct
19 optional_point_t () {} in optional_point_t() function
20 optional_point_t (float x_, float y_) : has_data (true), x (x_), y (y_) {} in optional_point_t() function
21 operator bool () const { return has_data; } in operator bool()
23 bool has_data = false;
24 float x;
25 float y;
27 optional_point_t mid (optional_point_t p) in mid()