fix angle calculation

Conflicts:
	src/text/vertex_cache.cpp
This commit is contained in:
Jiri Drbalek 2014-08-27 13:09:20 +00:00 committed by Dane Springmeyer
parent 21d213a653
commit 67d8f41a1b
2 changed files with 22 additions and 10 deletions

View file

@ -138,6 +138,7 @@ private:
void rewind_subpath();
bool next_segment();
bool previous_segment();
double current_segment_angle();
// Position as calculated by last move/forward/next call.
pixel_position current_position_;
// First pixel of current segment.

View file

@ -29,29 +29,40 @@
namespace mapnik
{
double vertex_cache::current_segment_angle()
{
return std::atan2(-(current_segment_->pos.y - segment_starting_point_.y),
current_segment_->pos.x - segment_starting_point_.x);
}
double vertex_cache::angle(double width)
{
/* IMPORTANT NOTE: See note about coordinate systems in placement_finder::find_point_placement()
* for imformation about why the y axis is inverted! */
// IMPORTANT NOTE: See note about coordinate systems in placement_finder::find_point_placement()
// for imformation about why the y axis is inverted!
double tmp = width + position_in_segment_;
if ((tmp <= current_segment_->length) && (tmp >= 0))
{
//Only calculate angle on request as it is expensive
if (!angle_valid_)
{
angle_ = std::atan2(-(current_segment_->pos.y - segment_starting_point_.y),
current_segment_->pos.x - segment_starting_point_.x);
angle_ = current_segment_angle();
}
return width >= 0 ? angle_ : angle_ + M_PI;
} else
{
scoped_state s(*this);
pixel_position const& old_pos = s.get_state().position();
move(width);
double angle = std::atan2(-(current_position_.y - old_pos.y),
current_position_.x - old_pos.x);
return angle;
if (move(width))
{
pixel_position const& old_pos = s.get_state().position();
return std::atan2(-(current_position_.y - old_pos.y),
current_position_.x - old_pos.x);
}
else
{
s.restore();
angle_ = current_segment_angle();
}
}
return width >= 0 ? angle_ : angle_ + M_PI;
}
bool vertex_cache::next_subpath()