可识别VertexSource中的曲线信息 构造参数为VertexSource,conv_smooth_poly1_curve就是基于它实现的。例程里的顶点没有曲线的信息,在文字输出时会用到她的。
agg::bezier_arc a(100,100, 50,50, 0.0, agg::pi/2);
agg::conv_curve<agg::bezier_arc> c(a);
agg::conv_stroke<agg::conv_curve<agg::bezier_arc> > s(c);
agg::conv_stroke<agg::bezier_arc> stroke(a);
ras.add_path(s);
//ras.add_path(stroke);//对比查看
时间: 2024-12-24 22:03:05