fix compile after geometry util namespacing
This commit is contained in:
parent
fd209b2958
commit
a968150f6b
6 changed files with 7 additions and 7 deletions
|
@ -42,7 +42,7 @@ public:
|
|||
{
|
||||
BOOST_FOREACH(geometry_type & geom, feature.paths())
|
||||
{
|
||||
if (hit_test(geom, x_,y_,tol_))
|
||||
if (label::hit_test(geom, x_,y_,tol_))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
|
@ -94,7 +94,7 @@ struct markers_rasterizer_dispatch
|
|||
|
||||
double x,y;
|
||||
path.rewind(0);
|
||||
label_interior_position(path, x, y);
|
||||
label::interior_position(path, x, y);
|
||||
agg::trans_affine matrix = marker_trans_;
|
||||
matrix.translate(x,y);
|
||||
box2d<double> transformed_bbox = bbox_ * matrix;
|
||||
|
|
|
@ -84,7 +84,7 @@ void agg_renderer<T>::process(point_symbolizer const& sym,
|
|||
if (sym.get_point_placement() == CENTROID_POINT_PLACEMENT)
|
||||
label::centroid(geom, x, y);
|
||||
else
|
||||
label_interior_position(geom ,x, y);
|
||||
label::interior_position(geom ,x, y);
|
||||
|
||||
prj_trans.backward(x,y,z);
|
||||
t_.forward(&x,&y);
|
||||
|
|
|
@ -1160,7 +1160,7 @@ void cairo_renderer_base::process(point_symbolizer const& sym,
|
|||
if (sym.get_point_placement() == CENTROID_POINT_PLACEMENT)
|
||||
label::centroid(geom, x, y);
|
||||
else
|
||||
label_interior_position(geom, x, y);
|
||||
label::interior_position(geom, x, y);
|
||||
|
||||
prj_trans.backward(x, y, z);
|
||||
t_.forward(&x, &y);
|
||||
|
@ -1438,7 +1438,7 @@ void cairo_renderer_base::process(markers_symbolizer const& sym,
|
|||
double x;
|
||||
double y;
|
||||
double z=0;
|
||||
label_interior_position(geom, x, y);
|
||||
label::interior_position(geom, x, y);
|
||||
prj_trans.backward(x,y,z);
|
||||
t_.forward(&x,&y);
|
||||
extent.re_center(x,y);
|
||||
|
|
|
@ -128,7 +128,7 @@ void grid_renderer<T>::process(markers_symbolizer const& sym,
|
|||
double x;
|
||||
double y;
|
||||
double z=0;
|
||||
label_interior_position(geom, x, y);
|
||||
label::interior_position(geom, x, y);
|
||||
prj_trans.backward(x,y,z);
|
||||
t_.forward(&x,&y);
|
||||
geom_tr.transform(&x,&y);
|
||||
|
|
|
@ -76,7 +76,7 @@ void grid_renderer<T>::process(point_symbolizer const& sym,
|
|||
if (sym.get_point_placement() == CENTROID_POINT_PLACEMENT)
|
||||
label::centroid(geom, x, y);
|
||||
else
|
||||
label_interior_position(geom, x, y);
|
||||
label::interior_position(geom, x, y);
|
||||
|
||||
prj_trans.backward(x,y,z);
|
||||
t_.forward(&x,&y);
|
||||
|
|
Loading…
Reference in a new issue