1 //----------------------------------------------------------------------------
2 // Anti-Grain Geometry - Version 2.4
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"
28 //------------------------------------------------------------rounded_rect
30 // See Implemantation agg_rounded_rect.cpp
36 rounded_rect(double x1
, double y1
, double x2
, double y2
, double r
);
38 void rect(double x1
, double y1
, double x2
, double y2
);
39 void radius(double r
);
40 void radius(double rx
, double ry
);
41 void radius(double rx_bottom
, double ry_bottom
, double rx_top
, double ry_top
);
42 void radius(double rx1
, double ry1
, double rx2
, double ry2
,
43 double rx3
, double ry3
, double rx4
, double ry4
);
44 void normalize_radius();
46 void approximation_scale(double s
) { m_arc
.approximation_scale(s
); }
47 double approximation_scale() const { return m_arc
.approximation_scale(); }
49 void rewind(unsigned);
50 unsigned vertex(double* x
, double* y
);