Skip to content

Commit

Permalink
Format the matrix on multiple lines for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Moore committed Jan 4, 2009
1 parent 955bca1 commit 714d898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synfig-core/trunk/src/synfig/matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class Matrix
String
get_string()
{
return etl::strprintf("[%.4f %.4f %.4f][%.4f %.4f %.4f][%.4f %.4f %.4f]", m00, m01, m02, m10, m11, m12, m20, m21, m22);
return etl::strprintf(" [%7.2f %7.2f %7.2f]\n [%7.2f %7.2f %7.2f]\n [%7.2f %7.2f %7.2f]\n", m00, m01, m02, m10, m11, m12, m20, m21, m22);
}
};

Expand Down

0 comments on commit 714d898

Please sign in to comment.