Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/OT/glyf/
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 = 0.;
25 float y = 0.;
27 optional_point_t lerp (optional_point_t p, float t) in lerp()