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)
{
let s = scope String;
strBuffer.Set("[ ");
X.ToString(s);
strBuffer.Append(s);
strBuffer.Set("Point [ ");
X.ToString(strBuffer);
strBuffer.Append(", ");
Y.ToString(s);
strBuffer.Append(s);
Y.ToString(strBuffer);
strBuffer.Append(" ]");
}

View File

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

View File

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