1 //----------------------------------------------------------------------------
2 // Anti-Grain Geometry - Version 2.3
3 // Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
5 // Permission to copy, use, modify, sell and distribute this software
6 // is granted provided this copyright notice appears in all copies.
7 // This software is provided "as is" without express or implied
8 // warranty, and with no claim as to its suitability for any purpose.
10 //----------------------------------------------------------------------------
11 // Contact: mcseem@antigrain.com
12 // mcseemagg@yahoo.com
13 // http://www.antigrain.com
14 //----------------------------------------------------------------------------
16 // Rounded rectangle vertex generator
18 //----------------------------------------------------------------------------
20 #ifndef AGG_ROUNDED_RECT_INCLUDED
21 #define AGG_ROUNDED_RECT_INCLUDED
23 #include "agg_basics.h"
25 #include "agg_vertex_iterator.h"
30 //------------------------------------------------------------rounded_rect
32 // See Implemantation agg_rounded_rect.cpp
38 rounded_rect(double x1
, double y1
, double x2
, double y2
, double r
);
40 void rect(double x1
, double y1
, double x2
, double y2
);
41 void radius(double r
);
42 void radius(double rx
, double ry
);
43 void radius(double rx_bottom
, double ry_bottom
, double rx_top
, double ry_top
);
44 void radius(double rx1
, double ry1
, double rx2
, double ry2
,
45 double rx3
, double ry3
, double rx4
, double ry4
);
46 void normalize_radius();
48 void approximation_scale(double s
) { m_arc
.approximation_scale(s
); }
49 double approximation_scale() const { return m_arc
.approximation_scale(); }
51 void rewind(unsigned);
52 unsigned vertex(double* x
, double* y
);
54 typedef rounded_rect source_type
;
55 typedef vertex_iterator
<source_type
> iterator
;
56 iterator
begin(unsigned id
) { return iterator(*this, id
); }
57 iterator
end() { return iterator(path_cmd_stop
); }