Searched defs:optional_point_t (Results 1 – 1 of 1) sorted by relevance
17 struct optional_point_t struct19 optional_point_t () {} in optional_point_t() function20 optional_point_t (float x_, float y_) : has_data (true), x (x_), y (y_) {} in optional_point_t() function21 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()