mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Rect ToString
This commit is contained in:
parent
623da953c1
commit
cacfba0d82
1 changed files with 5 additions and 0 deletions
|
@ -242,6 +242,11 @@ namespace Beefy.geom
|
||||||
Scale(scaleX, scaleY);
|
Scale(scaleX, scaleY);
|
||||||
Offset(centerX, centerY);
|
Offset(centerX, centerY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override void ToString(String strBuffer)
|
||||||
|
{
|
||||||
|
strBuffer.AppendF($"({mX}, {mY}, {mWidth}, {mHeight})");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
typealias Rect = Rect<float>;
|
typealias Rect = Rect<float>;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue