頭文件:#include
創(chuàng)新互聯(lián)專注于鳳慶企業(yè)網(wǎng)站建設,響應式網(wǎng)站開發(fā),商城系統(tǒng)網(wǎng)站開發(fā)。鳳慶網(wǎng)站建設公司,為鳳慶等地區(qū)提供建站服務。全流程按需網(wǎng)站開發(fā),專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務
類構造器:rounded_rect(double x1, double y1, doublex2, double y2, double r)
矩形對角點的坐標(左上角和右下角的坐標)和圓角半徑
圓角半徑如果指定是0,繪制的是一個正規(guī)的矩形??!
agg/examples/rounded_rect.cpp是一個圓角矩形的例子。其中不理解的地方就是subpixel offset,亞像素偏移
I'm tring to get bounding rectangle of object and trind below code
// Round Rect
agg::rounded_rect r(0,0,width,height,0);
r.normalize_radius();
ras.add_path(r);
agg::render_scanlines_aa(ras, sl, renb,grad_alloc, grad_gen);
but I cann't call r.bound_rect()
for what kinds of objects bound_rectfunction can be called ??