diff --git a/Perspex.SceneGraph/Matrix.cs b/Perspex.SceneGraph/Matrix.cs index 6d055918fa..4a510cf2c7 100644 --- a/Perspex.SceneGraph/Matrix.cs +++ b/Perspex.SceneGraph/Matrix.cs @@ -171,6 +171,18 @@ namespace Perspex throw new NotImplementedException(); } + public override string ToString() + { + return string.Format( + "{0},{1} {2},{3} {4},{5}", + this.m11, + this.m12, + this.m21, + this.m22, + this.offsetX, + this.offsetY); + } + public Matrix Invert() { if (!this.HasInverse)