Missed files

This commit is contained in:
Matt Thorson 2020-05-07 20:35:32 -07:00
parent e6194573d5
commit 80e1935b15
3 changed files with 11 additions and 41 deletions

View File

@ -29,18 +29,10 @@ namespace Strawberry
public override void ToString(String strBuffer) public override void ToString(String strBuffer)
{ {
let s = scope String; strBuffer.Set("Point [ ");
X.ToString(strBuffer);
strBuffer.Set("[ ");
X.ToString(s);
strBuffer.Append(s);
strBuffer.Append(", "); strBuffer.Append(", ");
Y.ToString(strBuffer);
Y.ToString(s);
strBuffer.Append(s);
strBuffer.Append(" ]"); strBuffer.Append(" ]");
} }

View File

@ -113,28 +113,14 @@ namespace Strawberry
public override void ToString(String strBuffer) public override void ToString(String strBuffer)
{ {
let s = scope String; strBuffer.Set("Rect [ ");
X.ToString(strBuffer);
strBuffer.Set("[ ");
X.ToString(s);
strBuffer.Append(s);
strBuffer.Append(", "); strBuffer.Append(", ");
Y.ToString(strBuffer);
Y.ToString(s);
strBuffer.Append(s);
strBuffer.Append(", "); strBuffer.Append(", ");
Width.ToString(strBuffer);
Width.ToString(s);
strBuffer.Append(s);
strBuffer.Append(", "); strBuffer.Append(", ");
Height.ToString(strBuffer);
Height.ToString(s);
strBuffer.Append(s);
strBuffer.Append(" ]"); strBuffer.Append(" ]");
} }

View File

@ -53,18 +53,10 @@ namespace Strawberry
public override void ToString(String strBuffer) public override void ToString(String strBuffer)
{ {
let s = scope String; strBuffer.Set("Vector [ ");
X.ToString(strBuffer);
strBuffer.Set("[ ");
X.ToString(s);
strBuffer.Append(s);
strBuffer.Append(", "); strBuffer.Append(", ");
Y.ToString(strBuffer);
Y.ToString(s);
strBuffer.Append(s);
strBuffer.Append(" ]"); strBuffer.Append(" ]");
} }