@@ -29,5 +29,10 @@ namespace Crown
this.z = axis.z * sa;
this.w = ca;
}
+
+ public override string ToString()
+ {
+ return string.Format("{0}, {1}, {2}, {3}", x, y, z, w);
+ }
@@ -36,5 +36,10 @@ namespace Crown
{
return a * k;
+ return string.Format("{0}, {1}", x, y);
@@ -37,5 +37,10 @@ namespace Crown
+ return string.Format("{0}, {1}, {2}", x, y, z);