fix inialization order
This commit is contained in:
parent
7cb907e13f
commit
0b8439c8d2
1 changed files with 2 additions and 1 deletions
|
@ -38,11 +38,12 @@ class markers_line_placement : public markers_point_placement<Locator, Detector>
|
||||||
public:
|
public:
|
||||||
markers_line_placement(Locator &locator, Detector &detector, markers_placement_params const& params)
|
markers_line_placement(Locator &locator, Detector &detector, markers_placement_params const& params)
|
||||||
: markers_point_placement<Locator, Detector>(locator, detector, params),
|
: markers_point_placement<Locator, Detector>(locator, detector, params),
|
||||||
marker_width_((params.size * params.tr).width()),
|
|
||||||
last_x(0.0),
|
last_x(0.0),
|
||||||
last_y(0.0),
|
last_y(0.0),
|
||||||
next_x(0.0),
|
next_x(0.0),
|
||||||
next_y(0.0),
|
next_y(0.0),
|
||||||
|
spacing_(0.0),
|
||||||
|
marker_width_((params.size * params.tr).width()),
|
||||||
error_(0.0),
|
error_(0.0),
|
||||||
spacing_left_(0.0),
|
spacing_left_(0.0),
|
||||||
marker_nr_(0)
|
marker_nr_(0)
|
||||||
|
|
Loading…
Reference in a new issue