init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,26 @@
using System.Drawing;
namespace Zhaizj.Framework.Drawing {
/// <summary>
/// ËõÂÔͼ³ß´ç
/// </summary>
public class ThumbSize {
public Size New { get; set; }
public Size Src { get; set; }
public Point Point { get; set; }
public Rectangle getRect() {
return new Rectangle( this.Point.X, this.Point.Y, this.Src.Width, this.Src.Height );
}
public Rectangle getNewRect() {
return new Rectangle( 0, 0, this.New.Width, this.New.Height );
}
}
}