Files
ExportDXF/ExportDXF/Bounds.cs
2019-03-08 07:48:53 -05:00

30 lines
556 B
C#

namespace ExportDXF
{
internal class Bounds
{
public double X { get; set; }
public double Y { get; set; }
public double Width { get; set; }
public double Height { get; set; }
public double Left
{
get { return X; }
}
public double Right
{
get { return X + Width; }
}
public double Bottom
{
get { return Y; }
}
public double Top
{
get { return Y + Height; }
}
}
}