Skip to content

Commit

Permalink
+ remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
artemp committed Jul 19, 2012
1 parent ab0722e commit 8e2774f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/agg/process_markers_symbolizer.cpp
Expand Up @@ -88,15 +88,13 @@ struct markers_rasterizer_dispatch
void add_path(T & path)
{
marker_placement_e placement_method = sym_.get_marker_placement();
// std::cout << "add_path called -> " << placement_method << std::endl;
// std::cout << typeid(path).name() << std::endl;

if (placement_method == MARKER_POINT_PLACEMENT)
{

double x,y;
path.rewind(0);
label_interior_position(path, x, y);
// std::cout << "pos -> " << x << "," << y << std::endl;
agg::trans_affine matrix = marker_trans_;
matrix.translate(x,y);
box2d<double> transformed_bbox = bbox_ * matrix;
Expand Down

0 comments on commit 8e2774f

Please sign in to comment.