agg_basics.h | 263 struct point_type { struct in namespace:agg 266 point_type() {} function in struct:agg::point_type 267 point_type(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} function in struct:agg::point_type 269 struct point_type_flag : public point_type { 275 point_type_flag(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {}
|