Skip to content

Commit

Permalink
+ update python bindings for markers_symbolizer
Browse files Browse the repository at this point in the history
  • Loading branch information
artemp committed Jul 5, 2012
1 parent 847f284 commit ebf1ef6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bindings/python/mapnik_markers_symbolizer.cpp
Expand Up @@ -123,21 +123,21 @@ void export_markers_symbolizer()
&mapnik::get_svg_transform<markers_symbolizer>, &mapnik::get_svg_transform<markers_symbolizer>,
&mapnik::set_svg_transform<markers_symbolizer>) &mapnik::set_svg_transform<markers_symbolizer>)
.add_property("width", .add_property("width",
&markers_symbolizer::get_width, make_function(&markers_symbolizer::get_width,
return_value_policy<copy_const_reference>()),
&markers_symbolizer::set_width, &markers_symbolizer::set_width,
"Set/get the marker width") "Set/get the marker width")
.add_property("height", .add_property("height",
&markers_symbolizer::get_height, make_function(&markers_symbolizer::get_height,
return_value_policy<copy_const_reference>()),
&markers_symbolizer::set_height, &markers_symbolizer::set_height,
"Set/get the marker height") "Set/get the marker height")
.add_property("fill", .add_property("fill",
make_function(&markers_symbolizer::get_fill, &markers_symbolizer::get_fill,
return_value_policy<copy_const_reference>()),
&markers_symbolizer::set_fill, &markers_symbolizer::set_fill,
"Set/get the marker fill color") "Set/get the marker fill color")
.add_property("stroke", .add_property("stroke",
make_function(&markers_symbolizer::get_stroke, &markers_symbolizer::get_stroke,
return_value_policy<copy_const_reference>()),
&markers_symbolizer::set_stroke, &markers_symbolizer::set_stroke,
"Set/get the marker stroke (outline)") "Set/get the marker stroke (outline)")
.add_property("placement", .add_property("placement",
Expand Down

0 comments on commit ebf1ef6

Please sign in to comment.