Skip to content

Commit

Permalink
Improvements?
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Moore committed Jan 4, 2009
1 parent 9aeee2b commit 879effc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion synfig-core/trunk/src/synfig/bone.cpp
Expand Up @@ -145,7 +145,13 @@ Bone::get_animated_matrix() const
synfig::String
Bone::get_string()
{
return strprintf("N=%s O=%.4f O0=%.4f a=%.4f a0=%.4f s=%.4f l=%.4f S=%.4f P=%p", name_, origin_, origin0_, angle_, angle0_, scale_, length_, strength_, parent_);
return strprintf("N=%s O=(%.4f %.4f) O0=(%.4f %.4f) a=%.4f a0=%.4f s=%.4f l=%.4f S=%.4f P=%p",
name_.c_str(),
origin_[0], origin_[1],
origin0_[0], origin0_[1],
Angle::deg(angle_).get(),
Angle::deg(angle0_).get(),
scale_, length_, strength_, parent_);
}
/* === M E T H O D S ======================================================= */

Expand Down

0 comments on commit 879effc

Please sign in to comment.